Complement of an Image using loop

1 visualización (últimos 30 días)
Sadeq Ebrahimi
Sadeq Ebrahimi el 8 de Nov. de 2019
Comentada: darova el 8 de Nov. de 2019
how can I complement an Image by loop like this:
Untitled.png

Respuestas (1)

darova
darova el 8 de Nov. de 2019
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 comentarios
Sadeq Ebrahimi
Sadeq Ebrahimi el 8 de Nov. de 2019
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 el 8 de Nov. de 2019
Can'b believe. HOw is this possible?

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by