How to get 1% of the image?
조회 수: 1 (최근 30일)
이전 댓글 표시
After I load a image, how do we get the 1% of the image?
댓글 수: 0
채택된 답변
Stalin Samuel
2016년 3월 30일
A = imread('ngc6543a.jpg');
n =size(A,2)
Im_1per = A(:,1:round(n*0.01))%here 0.01 states that 1 % and it can be varied from 0.01 to 1.0
imshow(Im_1per)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!