Complement of an Image using loop

조회 수: 1 (최근 30일)
Sadeq Ebrahimi
Sadeq Ebrahimi 2019년 11월 8일
댓글: darova 2019년 11월 8일
how can I complement an Image by loop like this:
Untitled.png

답변 (1개)

darova
darova 2019년 11월 8일
Use this trick
for i = 1:m % rows
for j = 1: round(n/m*(m-i+1)) % columns
I(i,j) = original;
end
for j = round(n/m*(m-i+1)):n % columns
I(i,j) = modificated;
end
end
  댓글 수: 2
Sadeq Ebrahimi
Sadeq Ebrahimi 2019년 11월 8일
Thanks for for the answer!
I used your trick:
I=imread('4.jpg');
[m,n]=size(I)
for i = 1:m % rows
for j = 1: round(n/m*(m-i+1)) % columns
I(i,j) = original;
%I = I(i,j);
end
for j = round(n/m*(m-i+1)):n % columns
I(i,j) = modificated;
% imcomplement(I) = I(i,j);
end
end
figure(1),imshow(I);
but the output is like this:
Screenshot (13).png
darova
darova 2019년 11월 8일
Can'b believe. HOw is this possible?

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by