Complement of an Image using loop

Answers (1)

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 Comments

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
Can'b believe. HOw is this possible?

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Asked:

on 8 Nov 2019

Commented:

on 8 Nov 2019

Community Treasure Hunt

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

Start Hunting!