Clear Filters
Clear Filters

how to get the cooridinate of the lowest point on the circumference of an area in image processing?

1 view (last 30 days)
I have to find the lowest point on the circumference of the droplet in the attached image. The droplet shape can be circular/oblate/prolate. So how can I find the coordinate of the lowest point on the drop circumference?

Accepted Answer

Ameer Hamza
Ameer Hamza on 1 May 2020
Try this code
im = imread('droplet.png');
im_gray = rgb2gray(im);
im_bin = imbinarize(im_gray);
regions = bwconncomp(im_bin);
PxlList = regions.PixelIdxList{2}; % first list is for white region on edges
[r,c] = ind2sub(size(im_bin), PxlList);
[lowest_y, idx] = max(r);
lowest_x = c(idx);
imshow(im_bin)
hold on;
plot(lowest_x, lowest_y, 'r+', 'LineWidth', 2, 'MarkerSize', 10);

More Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!