if statement: Having one image as a condition and adjusting another image is condition is met.
Mostra commenti meno recenti
Hi,
I'm dividing two images (C=A/B). Now my if the pixelintensity in B <= threshold, then the pixel in C should be changed to zero. This is my code so far:
if (B <= threshold)
C = 0;
end
However, this does not seem to work. I also thought of first finding the indices in B which are below the threshold and then set these indices to zero, but I couldn't get that right either.
Could someone help me further with this?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Images in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!