Image processing - calculate center mass and its initial moment
조회 수: 3 (최근 30일)
이전 댓글 표시
I have video which contains a 1000 frames, in spesific frame I did segmentation and the image become white and black as it attched. how I can find the center mass for this segmented white part.
댓글 수: 0
채택된 답변
Image Analyst
2021년 2월 15일
Call regionprops(binaryImage, 'Centroid')
binaryImage = bwareafilt(binaryImage, 1); % Take largest only.
props = regionprops(binaryImage, 'Centroid') % Find centroid.
xCentroid = props.Centroid(1);
yCentroid = props.Centroid(2);
See the Image Segmentation Tutorial in my file Exchange for a full demo:
댓글 수: 6
Image Analyst
2021년 2월 23일
Just crop out each blob one at a time and compute the central moments one at a time.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!