フィルターのクリア

problem in cropping image by using imcrop function.

3 ビュー (過去 30 日間)
fred bnm
fred bnm 2016 年 7 月 6 日
回答済み: Image Analyst 2016 年 7 月 6 日
Hi, i have an image in size of [960 1440]. i want cropping rectangle in the center of image. my desire output after cropping = image in size [960 960] in the center of original image.please guide me. my code :
a = ones(960 1440);
[m,n] = size(a);
%center of image = [m/2 n/2]
cropped = imcrop(a,[480 480 m/2 n/2);

採用された回答

Image Analyst
Image Analyst 2016 年 7 月 6 日
Try this:
croppedImage = a(:, 240:(240+959));

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by