Ask Your Question

Maxim Galushka's profile - activity

2014-11-28 07:11:55 -0600 received badge  Student (source)
2014-06-18 12:33:50 -0600 commented question BackgroundSubtractorMOG2 no getBackgroundImage method

Thanks a lot, this helps, please, post as answer, probably will be useful for somebody else.

2014-06-17 15:00:41 -0600 commented question BackgroundSubtractorMOG2 no getBackgroundImage method

just for debugging purposes of ny algorithm. I can assume I need to rebuild whole opencv to have this method?

2014-06-17 07:18:03 -0600 asked a question BackgroundSubtractorMOG2 no getBackgroundImage method

Hi,

I cannot find getBackgroundImage() method for BackgroundSubtractorMOG2 in java library. Am I mising something?

May be there is alternative way how to get background in java?

Thanks.

2014-05-07 16:03:19 -0600 received badge  Critic (source)
2014-05-07 11:10:09 -0600 received badge  Supporter (source)
2013-10-06 07:29:21 -0600 answered a question problems in setting example project in java

Have a look here, described all possibilities configuring with SBT:

http://stackoverflow.com/questions/10761166/integrating-native-system-libraries-with-sbt

2013-10-04 16:26:50 -0600 received badge  Autobiographer
2013-10-04 12:00:03 -0600 commented question full body detection with c+

Unfortunatelly haar classifier is far from ideal. Try to combine object tracking algorithms, like camshift with haar recognition, use haar to capture object and then track it with other algorithm.

What do you want to achieve btw?

2013-10-04 11:03:22 -0600 answered a question Recognize play card

Hi,

You can try to train Haar classifiers to recognize the suit for cards, here is article with detailed explanations how this can be done: http://coding-robin.de/2013/07/22/train-your-own-opencv-haar-classifier.html

However this is not simple task as you will require a lot of positive/negative samples for this.

To recognize the numbers - I think there should be existing solutions, here is good source on OCR: http://blog.damiles.com/2008/11/basic-ocr-in-opencv/

Also you can use findContours to separate cards from each other.

This is not a simple task, if you are really interested - post here your findings and code and I can help to get you tight direction.