how to smooth projection histogram of binary image?
-
dear all how to smooth projection histogram of binary image? thanks a lot in advance.
gentleguy
:confused:
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
dear all how to smooth projection histogram of binary image? thanks a lot in advance.
gentleguy
What's a "projection histogram of binary image" ? google tells me it's related to "image registration" (alignment of two or more images) but what are you wanting to smooth ?
This signature was proudly tested on animals.
-
What's a "projection histogram of binary image" ? google tells me it's related to "image registration" (alignment of two or more images) but what are you wanting to smooth ?
This signature was proudly tested on animals.
i have read one journal paper, they said, first get projection histogram which are obtained by counting the number of black pixels on the binary image, then smoothing is performed to the histogram. so i want to know how to smooth this histogram?thanks
gentleguy
-
i have read one journal paper, they said, first get projection histogram which are obtained by counting the number of black pixels on the binary image, then smoothing is performed to the histogram. so i want to know how to smooth this histogram?thanks
gentleguy
Make little steps my friend: start with a good
C++
tutorial. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
dear all how to smooth projection histogram of binary image? thanks a lot in advance.
gentleguy
There are several smoothing/convolution algorithms that you can use to smooth the projection histogram. You can begin your research by using a gaussian smoothing filter. http://www.codeproject.com/info/search.aspx?artkw=Gaussian[^] http://en.wikipedia.org/wiki/Numerical_smoothing_and_differentiation[^] The lesser known polynomial filter (Savitsky-Golay) may produce a more accurate result depending on your area of research. http://en.wikipedia.org/wiki/Savitzky%E2%80%93Golay_smoothing_filter[^] http://research.microsoft.com/users/jckrumm/SavGol/SavGol.htm[^] Best Wishes, -David Delaune
-
There are several smoothing/convolution algorithms that you can use to smooth the projection histogram. You can begin your research by using a gaussian smoothing filter. http://www.codeproject.com/info/search.aspx?artkw=Gaussian[^] http://en.wikipedia.org/wiki/Numerical_smoothing_and_differentiation[^] The lesser known polynomial filter (Savitsky-Golay) may produce a more accurate result depending on your area of research. http://en.wikipedia.org/wiki/Savitzky%E2%80%93Golay_smoothing_filter[^] http://research.microsoft.com/users/jckrumm/SavGol/SavGol.htm[^] Best Wishes, -David Delaune
If I had voting-buttons I will would give you a good mark for the good links.
Regards. -------- M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you “The First Rule of Program Optimization: Don't do it. The Second Rule of Program Optimization (for experts only!): Don't do it yet.” - Michael A. Jackson Rating helpfull answers is nice, but saying thanks can be even nicer.