Ask Your Question

IlVerz's profile - activity

2015-09-06 09:51:58 -0600 received badge  Enthusiast
2015-09-06 09:51:58 -0600 received badge  Enthusiast
2015-08-27 09:59:40 -0600 asked a question How to set CV_CAP_PROP_FORMAT in OpenCV 3.0 and JAVA?

The first question is in the title,and the second one is: how can I set also the property CV_CAP_PROP_MODE? I tried but seems do not work..

2015-08-27 08:08:39 -0600 asked a question Lowest Latency with java and OpenCV

I'm using opencv 3.0 on Java, and I want the lowest LATENCY possible. I'm grabbing images from DirectShow of Windows 8 (connected to a BlackMagic Intensity Pro USB 3.0).

How can I do it? What improvement should I have to make?

To capture new frames I just use:

import org.opencv.videoio.VideoCapture;
...

VideoCapture sorgente = new VideoCapture(0);
sorgente.grab();
sorgente.retrieve(mat);
2015-07-21 10:15:37 -0600 asked a question Capture, Display and Save a video using Java

Hi to everyone, I'm trying, in Java, to saving a video captured with the class

VideoCapture

and I don't know how to do it... If i use JavaCV to save it, i don't know how to convert grabbed BufferedImage to IplImage...

Also a similar example will help me a lot.. Thanks

2015-07-21 09:39:25 -0600 answered a question how to write video captured from webcam to file in java using opencv

I'm looking for the same problem.. Have you finded something? Thank you

2015-07-21 09:39:24 -0600 asked a question Capture, Display and Save a video using Java

Hi to everyone, I'm trying, in Java, to saving a video captured with the class

VideoCapture

and I don't know how to do it... If i use JavaCV to save it, i don't know how to convert grabbed BufferedImage to IplImage...

Also a similar example will help me a lot.. Thanks