Monday, 30 April 2012

Matlab Image Crop Example code

Here we sea how to crop the image from matlab figure window. Its very simple. Just use imcrop function to crop the image from figure window.This function return the crop area of the Image. code as below

>> input = imread('vivekananda.jpg');
>> figure;imshow(input);
>> crop_area = imcrop; % return the crop position
>> figure;imshow(crop_area);%shows the
crop area from Input Image

output as below
Related Search : Matlab Image Crop Example code,Matlab Image Cropping code,Image crop Matlab examples,image crop from matlab figure window

Kindly Bookmark and Share it:

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...