Problem regarding the input parameters for 'imrect'
2 views (last 30 days)
Show older comments
I am using the command 'imrect' in my program... The following is the example which I referred from mathworks.
figure, imshow('pout.tif');
h = imrect;
position = wait(h);
Similar to the above code, mine goes something like this:
[q,r,z]=size(s);
h = imrect;
position = wait(h);
where 's' corresponds to my image.
My problem is when I first run the code on R2007b, there was no error. But now when I run it, it asks for input parameters for imrect. Even the code given as an example is not working. Is there a problem with the code or the matlab version? Can anybody help me with this?
2 Comments
Geoff Hayes
on 16 Nov 2014
Nagaveni - please post the full error message and code that is leading to this error. I notice that you haven't called imshow(s) for your image. Have you called that code and just not copied it here?
Answers (0)
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!