hello,how can i convert a gray level image to a binary image?
조회 수: 1 (최근 30일)
이전 댓글 표시
converting grau image to bainary
댓글 수: 0
채택된 답변
추가 답변 (1개)
Image Analyst
2016년 4월 3일
You can threshold at some gray level, like 154 or whatever
binaryImage = grayScaleImage > 154;
Take a look at my Image Segmentation Tutorial. It goes through the whole image segmentation process. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!