Image use for further processing in project.
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
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 个评论
Youssef Khmou
2014-4-6
further processing as what operation exactly ?
回答(2 个)
Image Analyst
2014-4-6
0 个投票
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 个评论
Tahir
2014-4-6
Image Analyst
2014-4-6
Gaussian what? Blur? Use fspecial() and imfilter() or conv2().
Tahir
2014-4-7
Dishant Arora
2014-4-7
编辑:Dishant Arora
2014-4-7
Youssef Khmou
2014-4-6
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);%....
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!