強度付きのボリュームデータをregionprops3に引数としてあたえると、自動的にバイナリ化されて、領域解析にかけられます。 強度付きボリューム全体の重心を求める際には、バイナリのマスクと強度ボリュームを別々に与えることで実現できます。
load mri;
D = squeeze(D);
BW =true(size(D));
regionprops3(BW,D,'WeightedCentroid')
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!