to obtain uniform and zero average background intensity values
20 ビュー (過去 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.
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!