Ask Your Question

paulgfrey's profile - activity

2015-03-10 13:00:35 -0600 commented question Can anyone help me with the java code to extract frames from a video stream using ip camera.

You need to supply the format for the video stream. Is it MJPEG?

2015-03-10 12:31:52 -0600 asked a question Does OpenCV 3.0 beta Java bindings now support input from an IP Camera's HTTP interface?

I read that the C++ version of the OpenCV supported a string in the constructor which could be an IP Camera's MJPEG stream. But the constructor was not exposed to Java applications. I saw better support for Java listed in the OpenCV 3.0 beta changes and wondered if this constructor was now supported? Thanks.

2014-03-24 00:26:28 -0600 received badge  Student (source)
2014-03-23 22:06:01 -0600 asked a question Is there a danger with using the same Mat object for both source and destination?

I'm using the OpenCV library for a Java project. Although this question probably really isn't specific to Java. Many of the OpenCV methods I'm using in my application like Imgproc.threshold() and Imgproc.equalize() all have a source and destination Mat as their parameters. I'm using the same object for both the source and destination and the application is working properly. Is there a danger to using the same object for both the source and destination Mat?