Complement of an Image using loop
Ältere Kommentare anzeigen
how can I complement an Image by loop like this:

Antworten (1)
darova
am 8 Nov. 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 Kommentare
Sadeq Ebrahimi
am 8 Nov. 2019
darova
am 8 Nov. 2019
Can'b believe. HOw is this possible?
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!.png)
