Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
reading and viewing image "Image Hiding"
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi every one,
I'm working on image steganography and it works very well but later i noticed when i first read image (512x512x8) even before doing anything concerning image hiding the displayed image look like attached one,
bw = double (imread('barbara512.bmp'));
imshow(bw,[])
any ideas why?
thanks in advance.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/201560/image.bmp)
1 Commento
Walter Roberson
il 26 Gen 2019
Do not use double(imread()) for this purpose. Use im2double(imread()) . And try imshow() without the []
The variable you are using hints you are expecting black and white, but it looks to me as if you probably are using grayscale.
Risposte (0)
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!