Error using Imread with 'PixelRegion' option

Hello,
I am having problems using imread.
Following code causes an error, imgName is full file address '/.../name.jpeg'
>> imread(imgName, 'PixelRegion',{[10, 20],[10, 20]})
Error using imagesci/private/readjpg
Too many input arguments.
Error in imread (line 438)
[X, map] = feval(fmt_s.read, filename, extraArgs{:});
I have tried to modify the input arguments according to few tutorials but I still receive this error. I am usnig Matlab R2011b.
Thanks for answer.

 채택된 답변

Image Analyst
Image Analyst 2013년 11월 14일

0 개 추천

That only works for JPEG 2000 format images. Are you sure your image is of that format? Otherwise read in the whole thing and extract:
grayImage = imread(fullFileName);
subImage = grayImage(10:20, 10:20);

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Images에 대해 자세히 알아보기

질문:

Jan
2013년 11월 14일

답변:

2013년 11월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by