Clear Filters
Clear Filters

find the coordinates of an image

1 view (last 30 days)
how to get the xy coordinates of palm from the image
  3 Comments
RAMESH MUNIRATHINAM
RAMESH MUNIRATHINAM on 20 Dec 2014
thank you, consider only the right image, i want to get the x-y coordinates of entire structure of palm alone, i know that if we have the coordinates we can get the image, but i have image and i want to know the coordinates is it possible?
Mohammed Qusay
Mohammed Qusay on 7 Mar 2017
Edited: Mohammed Qusay on 7 Mar 2017
@John ... i want to the The bottom-left-most pixel of the palm, The bottom-right-most pixel of the palm,The top-left-most and the top-right-most of the binary image how to get it ?

Sign in to comment.

Accepted Answer

Geoff Hayes
Geoff Hayes on 20 Dec 2014
Ramesh - if the right-hand image is a binary image of 0's and 1's, then can't you get the rows and columns (y and x coordinates respectively) using the following
[rows,cols] = find(binaryImg==1);
where binaryImg is your binary image and 1 corresponds to the white pixels?
  5 Comments
Image Analyst
Image Analyst on 20 Dec 2014
If, by chance, you want just the outline of the palm, you can use
boundaries = bwboundaries(binaryImage);
Or (not as efficiently)
[rows, columns] = find(bwperim(binaryImage));
Geoff's code can skip the unnecessary step of comparing every pixel in the entire image to 1 by simply just doing:
[rows,cols] = find(binaryImg);
RAMESH MUNIRATHINAM
RAMESH MUNIRATHINAM on 20 Dec 2014
@image analyst
thank you will inform you after trying it

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!