how to crop an image
조회 수: 7(최근 30일)
표시 이전 댓글
Hallo , im new here and i would like to know, how to crop an image on all sides by 10 percent ???
- a=imread('image1.jpg');
- ....
댓글 수: 0
답변(2개)
Doug Hull
2014년 3월 12일
im = imread('pout.tif')
[r,c] = size(im)
per = 0.1
left = round(per*c);
right = c-left;
top = round(per*r);
bottom = r-top
newIM = im(top:bottom, left:right);
imshow(newIM)
댓글 수: 0
Dishant Arora
2014년 3월 12일
[rows cols planes] = size(imageArray);
rect = [fix(cols*0.10) , fix(row*0.10) , fix(cols*0.80) , fix(rows*0.80)];
croppedImage = imcrop(imageArray , rect);
댓글 수: 0
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!