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
Youssef Khmou 2014 年 4 月 6 日
further processing as what operation exactly ?

回答 (2 件)

Image Analyst
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
Tahir 2014 年 4 月 6 日
OK thats fine.. My question is how to apply Guassian on this image.which i got by "imshow(BR , []);"
Image Analyst
Image Analyst 2014 年 4 月 6 日
Gaussian what? Blur? Use fspecial() and imfilter() or conv2().
Tahir
Tahir 2014 年 4 月 7 日
how to use this "imshow(BR , []); image in fspcial function.
Dishant Arora
Dishant Arora 2014 年 4 月 7 日
編集済み: Dishant Arora 2014 年 4 月 7 日
Youssef  Khmou
Youssef Khmou 2014 年 4 月 6 日

0 投票

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 件のコメント

Tahir
Tahir 2014 年 4 月 6 日
編集済み: Tahir 2014 年 4 月 6 日
yes sir i already did that......But after this i got the result image......which i displayed by this "imshow(BR , []);"..now i want to apply Guassian filter on it....so i will give this as a input to function.
Youssef  Khmou
Youssef Khmou 2014 年 4 月 6 日
ok

この質問は閉じられています。

タグ

質問済み:

2014 年 4 月 6 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by