anand varma
Newbie level 2
Hi,
what si the differenc between imcrop and resize in MATLAB?
Regards,
ananad
what si the differenc between imcrop and resize in MATLAB?
Regards,
ananad
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Please refer MATLAB help, Here i am giving some differences.
B = imresize(A, scale) returns image B that is scale times the size of A. The input image A can be a grayscale, RGB, or binary image. If scale is between 0 and 1.0, B is smaller than A. If scale is greater than 1.0, B is larger than A.
where as I = imcrop creates an interactive Crop Image tool associated with the image displayed. The Crop Image tool is a moveable, resizable rectangle that you can position interactively using the mouse.
Regards,
peterjmichigan