Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
imfreehand cursor doesn't match selection
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm using imfreehand as a freehand user input of sorts - however, the cursor seems to be seperated from where it actually draws the freehand region which makes it unusable. Is this a known bug/am I doing something wrong? I've attached an example image below:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/165952/image.jpeg)
The relevant line of code is simply:
coords = getPosition(imfreehand('Closed',0));
0 Kommentare
Antworten (1)
Don Zheng
am 19 Jul. 2017
Try putting a 'drawnow' command before the 'imfreehand' call:
drawnow
coords = getPosition(imfreehand('Closed',0));
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!