Filling a part of binary image with zeros
    10 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
How to fill a part of binary image using zeros
i used
BW2(2:202,112:339)= zeros(201,268);
But the result gives me a larger image than the input image and not filled properly with 0's
0 Commenti
Risposte (1)
  Image Analyst
      
      
 il 7 Apr 2013
        Don't use a double array, just use a logical:
BW2(2:202,112:339)= false;
0 Commenti
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

