to obtain uniform and zero average background intensity values
조회 수: 2 (최근 30일)
이전 댓글 표시
which process is to be performed to obtain uniform and zero average background intensity values for an image
댓글 수: 0
답변 (1개)
Image Analyst
2014년 6월 28일
Thresholding? Or image segmentation? Can't really tell from your extraordinarily brief question.
댓글 수: 2
Image Analyst
2014년 6월 28일
background = grayImage < someThreshold; % Detect dark background.
grayImage(background) = 0; % Set those pixels to 0.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!