Image use for further processing in project.
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
Hello
i had some issue with my code...that was solved by applying " imshow(image , [])".now i want to use this image for further processing..how i will do this in matlab.
1 Commento
Youssef Khmou
il 6 Apr 2014
further processing as what operation exactly ?
Risposte (2)
Image Analyst
il 6 Apr 2014
0 voti
Well for one thing, you're going to have to change the name of your image variable from "image" to something else because image is the name of a built in function. Other than that, just go ahead and start using it (not sure what the difficulty is).
4 Commenti
Tahir
il 6 Apr 2014
Image Analyst
il 6 Apr 2014
Gaussian what? Blur? Use fspecial() and imfilter() or conv2().
Tahir
il 7 Apr 2014
Dishant Arora
il 7 Apr 2014
Modificato: Dishant Arora
il 7 Apr 2014
Youssef Khmou
il 6 Apr 2014
Change the name of the image to X as example, and execute the steps you described, the only operation you need is to separate channels :
R=X(:,:,1);
G=X(:,:,2);
B=X(:,:,3);%....
2 Commenti
Youssef Khmou
il 6 Apr 2014
ok
Questa domanda è chiusa.
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!