Effacer les filtres
Effacer les filtres

How to calculate the maximum intensity projection of a stack of images?

18 vues (au cours des 30 derniers jours)
Penny
Penny le 5 Mai 2017
Commenté : Image Analyst le 10 Mai 2017
I know we can use the A= max(image,[],3) to get the maximum intensity. But I wonder to know how I can calculate the 3D volume by using the maximum intensity projection. And then I can rotate the 3D volume. Thank you.

Réponses (1)

Image Analyst
Image Analyst le 5 Mai 2017
Hopefully "image" is not the actual name of your image, but you can just use sum:
volume = sum(image(:));
  7 commentaires
Penny
Penny le 9 Mai 2017
Thank you Image Analyst. But I want to show the volume by using the MIP algorithm. Do you know how to implement?
Image Analyst
Image Analyst le 10 Mai 2017
Scan each pixel column in the image extracting the Z vector and sending it into max().
[rows, columns, numSlices] = size(Img);
outputImage = zeros(rows, columns, class(Img)); % Or whatever class you want.
for col = 1 : columns
for row = 1 : rows
thisZVector = Img(row, col, :);
maxValue = max(thisZVector);
outputImage(row, col) = maxValue;
end
end

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by