필터 지우기
필터 지우기

volumetri estimation on 3D binary matrix

조회 수: 1 (최근 30일)
Emanuele Gandola
Emanuele Gandola 2017년 2월 20일
편집: Emanuele Gandola 2017년 2월 22일
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?

채택된 답변

Emanuele Gandola
Emanuele Gandola 2017년 2월 22일
편집: Emanuele Gandola 2017년 2월 22일
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.

추가 답변 (1개)

Abel Babu
Abel Babu 2017년 2월 21일
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

카테고리

Help CenterFile Exchange에서 Biomedical Imaging에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by