Is there a way to get a list of all marked points in an image?
X/Y pixel coordinate will be fine.
x/y coordinates of marked points
Re: x/y coordinates of marked points
Yes, using a script:
Image.Points.Count
returns how many points are selected.
and:
x,y = Image.Points.Get(i)
returns the coordinates of the #i point.
See in the Guide: Scripts / Function(Images) , "Points and Rectangles" near the end of the page.
Fabio.
Image.Points.Count
returns how many points are selected.
and:
x,y = Image.Points.Get(i)
returns the coordinates of the #i point.
See in the Guide: Scripts / Function(Images) , "Points and Rectangles" near the end of the page.
Fabio.