필터 지우기
필터 지우기

dividing binary image using GUI

조회 수: 4 (최근 30일)
Varian Adisuryo
Varian Adisuryo 2016년 7월 28일
댓글: Varian Adisuryo 2016년 8월 6일
Hello, So I have a footprint in binary image and I have to divide it into 3 area with the same length but without the fingers. I have to do it using GUI.Is there any way how to do it? If it help, I give the picture about how to divide it above. Thank's a lot.

채택된 답변

Image Analyst
Image Analyst 2016년 7월 28일
Just figure out the row numbers, for example
[rows, columns, numberOfColorChannels] = size(binaryImage);
row1 = round(rows/3);
row2 = round(2*rows/2);
topThird = binaryImage(1:row1, :);
middleThird = binaryImage((row1+1):row2, :);
bottomThird = binaryImage((row2+1):end, :);
  댓글 수: 13
Image Analyst
Image Analyst 2016년 8월 6일
Make sure your slider goes from 0 to 255, then get its value and don't use im2bw, just threshold it.
In the slider callback:
sliderValue = get(handles.slider1, 'Value');
thresholdValue = uint8(sliderValue);
% Now apply the threshold to make a binary image.
a_bw = a_gray > thresholdValue;
Varian Adisuryo
Varian Adisuryo 2016년 8월 6일
wow it work perfectly. thank you, thank you, thank you so much sir for your help.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Biomedical Imaging에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by