필터 지우기
필터 지우기

Binarize image with threshold

조회 수: 3 (최근 30일)
Syed Islam
Syed Islam 2013년 9월 9일
Hi,
Using Mathematica I was able to binarize a image with the following command
a1=Binarize[a,0.7]
Does anyone know how i would apply the same threshold of 0.7 using Matlab?
Thanks in advance,
Syed

채택된 답변

Image Analyst
Image Analyst 2013년 9월 9일
You can use graythresh() and bwthresh() which use 0-1, but I think it's simpler to just do
binaryImage = grayImage < grayLevelThreshold;
where grayLevelThreshold is just the regular threshold (0-255 or 0-65535) rather than anormalized number in the range 0-1.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by