volumetri estimation on 3D binary matrix

1 Ansicht (letzte 30 Tage)
Emanuele Gandola
Emanuele Gandola am 20 Feb. 2017
Bearbeitet: Emanuele Gandola am 22 Feb. 2017
Thanks in advance, I have a 3D binary space derived by a microscopy confocal image. I have to estimate the number of connected object and the volume of each one. The classical 2D function bwboundarties bwarea and regiorprops doesn't work. Any suggestion?

Akzeptierte Antwort

Emanuele Gandola
Emanuele Gandola am 22 Feb. 2017
Bearbeitet: Emanuele Gandola am 22 Feb. 2017
Thanks Abel! Probably I don't need these functions because I solved in this way
% Calculation of volume
CC = bwconncomp(F);
N = CC.NumObjects;
S = regionprops(CC, 'Area');
allVolume = [S.Area];
where F is the 3D binary matrix.

Weitere Antworten (1)

Abel Babu
Abel Babu am 21 Feb. 2017
Hi Emanuele,
Take a look at these functions from the Image Processing Toolbox:
These include functions that let you do filtering, segmenting, and perform other image processing operations on 3D volumetric data.
Abel

Kategorien

Mehr zu Biomedical Imaging finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by