Please explain the following line

조회 수: 1 (최근 30일)
Sahil khandelwal
Sahil khandelwal 2022년 5월 22일
댓글: DGM 2022년 5월 22일
Its about threshold segmentation.
th=t0+((max(inp(:))+min(inp(:)))./2);

답변 (2개)

DGM
DGM 2022년 5월 22일
Without any context, all anyone can give is an answer without context.
min(inp(:)) % this is the global minimum of inp
max(inp(:)) % this is the global maximum of inp
((max(inp(:)) + min(inp(:)))./2 % this is the average of the extrema of inp
So then this is the average of the extrema of inp, plus t0 -- whatever that means
th = t0 + ((max(inp(:)) + min(inp(:)))./2);

Image Analyst
Image Analyst 2022년 5월 22일
The stuff between the parentheses is the midpoint of the histogram. My guess is that they have an image with a narrow histogram and they're trying to threshold it a certain number of gray levels above the mean or peak gray level. It might be better to use a triangle threshold, like the attached utility.

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by