how to remove padarray from image?

adding padarray makes the image from 256x256 image to 258x258. how to make image back to 256x256 ?

답변 (2개)

Jos (10584)
Jos (10584) 2016년 2월 8일

1 개 추천

A = magic(4)
n = 2
B = padarray(A,[n n]) % pad
A2 = B(n+1:end-n,n+1:end-n) % unpad
or directly:
A2 = A
Image Analyst
Image Analyst 2016년 2월 8일

0 개 추천

Simply don't call it. Why did you call it if you don't want what it does?

댓글 수: 2

kashika sharma
kashika sharma 2016년 2월 8일
i an new to matlab. just learning how things work.
Like Jos says, you can just extract the central part with indexing:
out = yourArray(2:end-1, 2:end-1);

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

질문:

2016년 2월 8일

댓글:

2016년 2월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by