Ask Your Question

novinjaiswal's profile - activity

2016-03-05 19:55:40 -0600 commented question OpenCV 3.1 overlay an image on a pre recorded video frame by frame

Hi I am able to follow.

I am able to grab one frame at a time and in that frame able to identify the face.

Now i need help to overwrite the identified face with the provided cartoon face.

2016-03-05 05:21:30 -0600 commented question opencv 3.1 java video file not opening

Hi thanks that solved the problem.

2016-03-04 22:12:25 -0600 received badge  Editor (source)
2016-03-04 22:11:23 -0600 commented question Java opencv Can not open a .mp4 video file by VideoCapture

were you able to fix this issue I am facing the same on windows8 64 bit machine

2016-03-04 22:04:17 -0600 commented question opencv 3.1 java video file not opening

it didn't work. It a windows8 64bit machine

2016-03-04 07:45:02 -0600 asked a question opencv 3.1 java video file not opening

Hi

my following code is not working when i try to open a local video file using opencv 3.1 in java. but when i try to read web cam its works. It a windows8 64bit machine

VideoCapture      capture =  new VideoCapture();

capture.open("C:\\Test\\SampleVideo_1280x720_1mb.mp4");

System.out.println("\nopen :"+ capture.isOpened()); // it print false

Thanks Novin

2016-03-04 05:48:47 -0600 asked a question OpenCV 3.1 overlay an image on a pre recorded video frame by frame

Hi EveryOne,

I am new to openCV. I have a following problem.

I have a image which I want to overlay to prerecorded video 's detected faces in java.

I got the code to detect the face in a image. What I want is read the prerecorded video frame by frame and detect any face in that frame and then overlay/overwrite the an cartoon image face on it.

Please guide me I am struggling to code it in java

Thanks Novin