how to calculate vertical and horizontal projection histogram for an image
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (4)
Rujal
el 20 de En. de 2016
1 voto
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 comentario
Image Analyst
el 20 de En. de 2016
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
el 17 de Abr. de 2012
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
el 8 de Oct. de 2015
0 votos
to Jyoti : did you get it?
Paramesh
el 16 de Oct. de 2015
0 votos
I got it.Nice.
2 comentarios
si sam
el 21 de Oct. de 2015
i would be thankful if can you please show me how you drew vertical and horizontal histograms?
Walter Roberson
el 22 de Oct. de 2015
Use histogram() or hist(), or use bar()
Categorías
Más información sobre Histograms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!