Choosing the centroid of an specific shape

1 view (last 30 days)
I am trying to get the centre of a metallic cylinder ( see picture) using "regionprops" function. However, I get 100+ results. How can I choose the point closest to the centre? . Is there any way to focus on the metallic shape only ?
  3 Comments
Danny Guana
Danny Guana on 7 Feb 2023
Sure, this is my code:
I = imread('Test 3.jpg');
imshow(I)
A= rgb2gray (I)
imshow (A)
J = imadjust(A,stretchlim(A),[]);
imshow(J)
stat2 = regionprops(J,'centroid');
imshow(I); hold on;
for x = 1: numel(stat2)
plot(stat2(x).Centroid(1),stat2(x).Centroid(2),'ro');
end

Sign in to comment.

Accepted Answer

DGM
DGM on 7 Feb 2023
Edited: DGM on 7 Feb 2023
Here. I tried to clean up the screenshot so that it's at least usable for a demo. Instead of using imadjust(), and trying to isolate the object by gray level alone, use the available color information to make the selection. You can try using the Color Thresholder App to get an idea of where to set the thresholds.
inpict = imread('clean.png');
% create simple mask in HSV
hsvpict = rgb2hsv(inpict);
mask = hsvpict(:,:,2)>0.375;
% clean up mask
mask = bwareafilt(mask,1); % select largest object
mask = bwconvhull(mask); % fill the blob by taking the convex hull
imshow(mask)
S = regionprops(mask,'centroid')
S = struct with fields:
Centroid: [711.5535 400.6236]
Note that the poor subject-background contrast and the uneven illumination are causing a lot of the problems here. If the script needs to handle many images, the variations are likely to require adjusting the thresholds unless you improve the physical setup.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!