how to calculate vertical and horizontal projection histogram for an image
古いコメントを表示
Hi guys I am doing a project on offline signature recognition and verification. I hove done till thining process of an image. Now i need to calculate vertical and horizontal projection histogram for this image. Can any body suggest me some code for this. Thanks.
採用された回答
その他の回答 (4 件)
Rujal
2016 年 1 月 20 日
1 投票
can anyone please help me to create feature vector of vertical and horizontal projection histogram. please give me a matlab code on rujubhandari007@gmail.com . . . Thanks in advance
1 件のコメント
Image Analyst
2016 年 1 月 20 日
Not sure what that means. A projection of data along a dimension, and a histogram (frequency distribution) are different things. Start your own question and attach your data and what you'd like to get from it.
Walter Roberson
2012 年 4 月 17 日
sum(YourImage,1) %vertical projection
sum(YourImage,2) %horizontal projection
This assumes YourImage is binary. If it isn't, you need to define what you mean by "projection" of multiple colors.
si sam
2015 年 10 月 8 日
0 投票
to Jyoti : did you get it?
Paramesh
2015 年 10 月 16 日
0 投票
I got it.Nice.
2 件のコメント
si sam
2015 年 10 月 21 日
i would be thankful if can you please show me how you drew vertical and horizontal histograms?
Walter Roberson
2015 年 10 月 22 日
Use histogram() or hist(), or use bar()
カテゴリ
ヘルプ センター および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!