imfreehand or imrect -- snap to pixels while drawing

8 views (last 30 days)
Rafael J.
Rafael J. on 3 May 2013
Edited: Pieter on 26 Oct 2016
Is there a way to force the drawing of the shape to snap to the pixels of the image? Currently I have to use imshow with 'InitialMagnification', 100 in order to avoid non-integer pixel values for the position of the imrect.
Also, is there a way to easily acquire the area inside imfreehand? I can do it easily with imrect but with non-rectangular objects it is significantly more difficult.
Thanks in advance

Answers (2)

Sean de Wolski
Sean de Wolski on 3 May 2013
You can do this using the setConstrainedPosition() method of the object.
How are you getting the area for the rectangle? For a freehand there are two things you could do:
  1. Ccreate a mask (using the creatMask method) and get the area of this using bwarea
  2. Use the polyarea function to get the area given the vertices.
  3 Comments
Image Analyst
Image Analyst on 3 May 2013
That's after it's been drawn. I know of no way to have it "go around the edges of pixels" of a highly magnified image while you're drawing, so you're stuck with having to round the returned coordinates afterwards.

Sign in to comment.


Pieter
Pieter on 26 Oct 2016
Edited: Pieter on 26 Oct 2016
I know this is an old thread but very relevant to me. I would like to have a dragged imrect snap to pixels but have no clue on how to do it? Another solution would be to have the snapping when the mouse button is released after dragging the ROI. Has someone some could he/she would like to share? Thx

Community Treasure Hunt

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

Start Hunting!