How can I find saturated pixels in an image?
古いコメントを表示
How can I find saturated pixels in an image?
1 件のコメント
Sean de Wolski
2011 年 3 月 3 日
Define: "saturated"
回答 (2 件)
Matt Tearle
2011 年 3 月 3 日
2 投票
idx = all(A==255,3); would give you a logical array that is true at all white pixels (in a uint8 representation).
Otherwise, as Sean asks, what do you mean by "saturated"?
1 件のコメント
Jan
2011 年 3 月 3 日
Or for a [W x H x 3] DOUBLE array as RBG image: idx = all(A == 1, 3);
Tim Zaman
2011 年 4 月 6 日
0 投票
convert to LAB with the RGB2LAB function.. that splits into three components; the dimensions will be [L;A;B]instaed of [R;G;B]... then you could state something like saturation=sqrt(A_component^+B_component^); which will be your level of saturation, then you just set a threshold. more matlab code on that is on http://www.timzaman.nl/?category_name=gen_matlab&lang=en
カテゴリ
ヘルプ センター および File Exchange で Image Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!