The error using imwrite. how can I fix this?

Hi, I want to crop an image and save it using imwrite. I get the following error, how can I fix this:
Error using imwrite
Too many output arguments.
Error in cropping (line 7)
B=imwrite(A,'modified.jpg')
clc;clear all;close all
I=imread('frame1.jpg');
imshow(I)
A=imcrop(I,[14 244 1245 180]);
B=imwrite(A,'modified.jpg')
C=imshow(B)

 採用された回答

KSSV
KSSV 2016 年 10 月 20 日
編集済み: KSSV 2016 年 10 月 20 日

1 投票

Dont' take output for imwrite...
clc;clear all;close all
I=imread('frame1.jpg');
imshow(I)
A=imcrop(I,[14 244 1245 180]);
imwrite(A,'modified.jpg')
imshow(A)

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by