How to do a binarization of this image?
4 ビュー (過去 30 日間)
古いコメントを表示
Dear all,
Please, can anybody tell me, how to do a binarization of this image?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/156212/image.jpeg)
Step by step please, I´m new in this section.
Thank you for your answers.
0 件のコメント
採用された回答
Image Analyst
2016 年 9 月 9 日
You can threshold, like
grayImage = rgb2gray(yourRGBImage);
binaryImage = grayImage > someThresholdValue;
imshow(binaryImage);
Or see my interactive thresholding app: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
3 件のコメント
Image Analyst
2016 年 9 月 9 日
You need to pass it a numerical array, not a character array (the filename string). imshow() can work like that but not rgb2gray. Try
grayImage = imread('thorax-mdl.jpg');
% Get the dimensions of the image.
% numberOfColorBands should be = 1.
[rows, columns, numberOfColorChannels] = size(grayImage);
if numberOfColorChannels > 1
% It's not really gray scale like we expected - it's color.
% Convert it to gray scale by taking only the green channel.
grayImage = grayImage(:, :, 2); % Take green channel.
end
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!