How to convert 8 Binary images of size 256 x 256 into a Grayscale image of same size, i.e., 256 x 256?
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Suppose, I have 8 Binary images of same size. Then, I want to combine binary bits of all 8 images pixel-wise to form 'a' 8-bit depth Grayscale image of size, same as Binary images.
The images are attached herewith in 'zip folder'.
2 Commenti
Risposte (2)
  KSSV
      
      
 il 17 Gen 2021
        images = dir('*.tiff'); 
N = length(images) ; 
iwant = cell(N,1) ; 
for i = 1:N
    iwant{i} = imread(images(i).name) ;    
end
I = cat(3,iwant{:}) ;
0 Commenti
  Image Analyst
      
      
 il 17 Gen 2021
        Use bitset().  If you can't figure it out, write back.  Some demos to help are attached.
0 Commenti
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


