How to resize an image into size 256*256

조회 수: 3 (최근 30일)
Anushka
Anushka 2015년 5월 27일
답변: Image Analyst 2015년 5월 27일
I used the following code
J = J(1:256,1:256,:)
[r c]=size(J);
display(r); display(c);
But the value of c is displayed as 768.But the resized size is 256.What would be the error.And I cant use the command imresize since I need the third coordinate also.

답변 (2개)

Image Analyst
Image Analyst 2015년 5월 27일
Never use size like that for a color image. Use
[rows, columns, numberOfColorChannels] = size(J);

Thorsten
Thorsten 2015년 5월 27일
편집: Thorsten 2015년 5월 27일
Use
r = size(J, 1); c = size(J, 2);

카테고리

Help CenterFile Exchange에서 MATLAB Coder에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by