Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Image use for further processing in project.

조회 수: 1 (최근 30일)
Tahir
Tahir 2014년 4월 6일
마감: MATLAB Answer Bot 2021년 8월 20일
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일
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월 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일
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

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by