필터 지우기
필터 지우기

How to get 1% of the image?

조회 수: 2 (최근 30일)
Jason
Jason 2016년 3월 30일
댓글: Jason 2016년 3월 30일
After I load a image, how do we get the 1% of the image?

채택된 답변

Stalin Samuel
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)
  댓글 수: 5
Jason
Jason 2016년 3월 30일
Could you write some code about that.
I am going to produce some percentage of a image, then insert this percentage of a image to the original image, using LSB.
Jason
Jason 2016년 3월 30일
I think randperm(n) could not work since how can we know the n. If we know n is 200. but pixel is not from 1-200? for example, pixel is 1, 3, 4, 200. But randperm(n) will produce like [3, 1, 2, 4, ...., 200, 199]

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by