Ask Your Question

Andrey Kamaev's profile - activity

2016-01-27 18:44:44 -0600 received badge  Nice Answer (source)
2015-09-19 12:26:24 -0600 received badge  Enlightened (source)
2015-09-19 12:26:24 -0600 received badge  Good Answer (source)
2012-10-06 16:37:28 -0600 commented answer Are they any lbpcascade other then lbpcascade_frontalface.xml any where?

It might be possible to convert from different xml format, but most probably there are no any ready-to-use converters. And I don't think that you will succeed with LBP for body detection. LBP works on well textured objects which body is not.

2012-10-06 12:59:06 -0600 answered a question Are they any lbpcascade other then lbpcascade_frontalface.xml any where?

There are already two more in OpenCV repository - lbpcascade_profileface.xml and lbpcascade_silverware.xml.

2012-10-05 08:19:41 -0600 commented question Does the latest OpenCV handle PNG files *properly*??

OpenCV 2.1 is not the latest.

2012-09-20 14:05:04 -0600 received badge  Critic (source)
2012-09-19 18:00:10 -0600 answered a question About OpenCV 2.4.2 built failed with Android NDK r8b

OpenCV 2.4.2 was released before NDK r8b. So there is no surprise that it does not compile.

You either can build OpenCV 2.4.2 with NDK r8 or fetch OpenCV master from repository and continue with NDK r8b.

2012-08-27 05:55:09 -0600 commented question Camera Not working

/proc/self/smaps does exist on Android. What device are you using?

2012-07-04 08:53:46 -0600 answered a question shadow removal in image

Here is a computer vision course about shadow removal: http://cs.haifa.ac.il/hagit/courses/seminars/shadowRemoval/shadowRemovalPapers.html

Hope you find it useful.

2012-06-27 04:14:05 -0600 received badge  Supporter (source)
2012-06-27 03:41:59 -0600 received badge  Nice Answer (source)
2012-06-09 08:38:08 -0600 received badge  Citizen Patrol (source)
2012-06-09 01:31:05 -0600 received badge  Teacher (source)
2012-06-08 11:01:41 -0600 answered a question How to read/write video with OpenCV in Python?

Here is a minimal example:

import cv2
capture = cv2.VideoCapture("video.avi")
while True:
    ret, img = capture.read()

    result = processFrame(img)

    cv2.imshow('some', result)
    if 0xFF & cv2.waitKey(5) == 27:
        break
cv2.destroyAllWindows()