How to histogram equilize an image?
3 ビュー (過去 30 日間)
古いコメントを表示
Suppose i have a set of face images I1,I2, ,IM ,size of each image being LxL,in the training set.Now how to histogram equalize all the images and represent them as row vectors of size L^2 (i mean L to the power 2)each...
0 件のコメント
回答 (1 件)
Sean de Wolski
2012 年 2 月 24 日
doc histeq
doc reshape
2 件のコメント
Jurgen
2012 年 11 月 15 日
編集済み: Jurgen
2012 年 11 月 15 日
Your error is because the matrix you want to equalize is not 2D. Im assuming its an RGB image. Either equalize all color channels separately (dangerous) or convert to a difference colorspace.
If you convert to e.g. L*a*b* or YCbCr you only need to equalize the luma channel, and then convert back again to RGB.
Note you can not represent an LxL RGB image as a vector of length L^2 without resorting to:
- throwing away data (e.g. color)
- indexing or some other form of encoding.This is because your RGB image contains LxLx3 elements.
Suppose you convert to grayscale then it is possible by using reshape or just J(:). To avoid columnwise dumping transpose first (permute for N-Dim.) e.g. (J = J').
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!