How to find the distance of a object from centre line of the image.
조회 수: 1 (최근 30일)
이전 댓글 표시
Sir, I have a binary image with one object. Is it possible to find the distance of the centroid of the object from the center line of the image by using 'regionprop' function? I want to know how can I find 'a' and 'b' in the image. I have attached the image. Thank You.
댓글 수: 0
채택된 답변
Image Analyst
2015년 10월 8일
Just get the centroid and then get the distances
labeledImage = bwlabel(binaryImage);
[rows, columns] = size(binaryImage);
measurements = regionprops(labeledImage, 'Centroid');
b = abs(rows/2 - measurements.Centroid(2));
deltaX = measurements.Centroid(1) - columns/2;
a = sqrt(b^2 + deltaX^2)
댓글 수: 2
Image Analyst
2017년 3월 1일
regionprops() can give both Centroid which is the centroid based on the shape alone (ignoring the gray levels), and WeightedCentroid which is the centroid taking into account the gray levels at each pixel in the shape.
Image Analyst
2017년 3월 2일
Simply white out the bottom black thing, then threshold to find dark stuff, then get the centroid in pixels, Then convert pixels to mm and divide by the frame time. If you still have questions then see my Image Segmentation Tutorial http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 If you still have questions after adapting my tutorial to your images, then post in a brand new question.
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!