필터 지우기
필터 지우기

how to scan the image and convert it from binary to decimal using matlab

조회 수: 2 (최근 30일)
sonam s
sonam s 2013년 12월 24일
편집: Walter Roberson 2013년 12월 24일
for(i=1:length(pv))
a=pv(i);
a=find(chars==a);
a=pattern(0,1);
num(8)=bin2dec(a);
end

답변 (1개)

Image Analyst
Image Analyst 2013년 12월 24일
I have no idea what you're doing. It looks like just a bunch of random lines of code - total nonsense. Explain what you want to do better. Do you have a gray scale image (uint8 or uint16) or a binary image (logical, true or false)? A gray scale image is already in decimal - that's that the gray levels are. And of course gray scale numbers. even though they are in the range 0-255 decimal, can be considered as binary just like any number can be considered as binary - not as true/false but as if you wrote the number out in 0s and 1 like you get by calling dec2bin(). A binary (true/false) image could be converted to a decimal image of values 0 and 1 if you want. I'm not sure what else to say until you explain better.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by