How to calculate Average Intensity (Z) Projection of a time laps image sequence?

조회 수: 9 (최근 30일)
Marko Usaj
Marko Usaj 2018년 12월 10일
답변: Akshat 2024년 11월 5일 6:01
Hej!
I wonder if here exits any function to convenely calculate Average Intensity Projection (e.g. ImageJ Z Project function with average intensity as projection type) of a time laps image sequence, similar to Matlab funciton for maximal projection MIP=max(image,[],dim).
Thank you for any info!

답변 (1개)

Akshat
Akshat 2024년 11월 5일 6:01
The function you are using for maximal projection is "max", this function is generally used to find a maximum element. By specifying the "dim" that is the dimension along which you want to find the maximum element.
Similar to this "max" function, we have "mean" function which calculates the average along a dimension. More information about this function can be found here:
This boilerplate code can be used to find the Average Intensity Projection:
imageSequence = rand(256, 256, 50); % 50 frames of 256x256 images
AIP = mean(imageSequence, 3);
imshow(AIP, []);
title('Average Intensity Projection');
Hope this helps you out to find out the Average Intensity Projection.

제품


릴리스

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by