how to convert some binary data to image in matlab
조회 수: 4 (최근 30일)
이전 댓글 표시
hai iam doing my M.Tech prjct in matlab. i dont know hoe to give an image as input. so plz clarify my doubt
댓글 수: 1
Oleg Komarov
2011년 5월 31일
http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
채택된 답변
추가 답변 (2개)
KIRAN kumar
2013년 1월 17일
uigetfile can also be to read image from any directory
댓글 수: 1
Walter Roberson
2013년 1월 17일
No, uigetfile() only returns the file name (and path). It does not read the file. You need imread() for that.
Vijan Kaush
2017년 1월 17일
편집: Walter Roberson
2017년 1월 17일
I = imread('image.jpg'); % read jpg image
Igray = rgb2gray(I); % convert rgb image to gray scale image
Ibinary = im2bw(Igray,graythresh(Igray)); % convert gray image to binary image
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!