Filter löschen
Filter löschen

find the coordinates of an image

1 Ansicht (letzte 30 Tage)
RAMESH MUNIRATHINAM
RAMESH MUNIRATHINAM am 20 Dez. 2014
Bearbeitet: Mohammed Qusay am 7 Mär. 2017
how to get the xy coordinates of palm from the image
  3 Kommentare
RAMESH MUNIRATHINAM
RAMESH MUNIRATHINAM am 20 Dez. 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 am 7 Mär. 2017
Bearbeitet: Mohammed Qusay am 7 Mär. 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 ?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Geoff Hayes
Geoff Hayes am 20 Dez. 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 Kommentare
Image Analyst
Image Analyst am 20 Dez. 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 am 20 Dez. 2014
@image analyst
thank you will inform you after trying it

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Geometric Transformation and Image Registration finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by