How to increase the contrast of a colour image?
21 ビュー (過去 30 日間)
古いコメントを表示
How to increase the contrast of a colour image?
0 件のコメント
採用された回答
Varun Pai
2015 年 8 月 25 日
Hi Kiruthika,
Please find the below method. It is the most easiest way. You can set the maximum and minimum values and adjust the image to that region.
low = 0.3;
high = 0.7;
K = imadjust(I,[low high],[]); % I is double
Another way of contrast enhancing is by doing histogram stretching. you can use histeq (see doc histeq for more details), or you can stretch it manually.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Filtering and Enhancement についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!