Paul Lammertsma

Results 14 comments of Paul Lammertsma

The reason this is happening, is that ScalableVideoView doesn't update the scale factor when `onMeasure()` is called. I think this is a larger issue as it also affects any other...

Thanks for reporting an issue. Could you please point to the location where this link is published?

I'm still going through the review, but one curiosity: why have some of the tests in CastHelperTest been removed?

I don't quite understand what you mean with "using the internal camera to process the frames", but here is a snippet to modify `SocketCamera.java:69-79` to use a image file as...

I don't know about the first error, but concerning a new project, you're probably getting a JNI linking error because you haven't provided the OpenCV library. Make sure that the...

After some debugging, I've confirmed that the native method `getSourceImage()` in `cvjni.cpp:134` is actually called; the JNI WARNING above is raised immediately after the function returns, and has the following...

If I change the type declaration in `OpenCV.java:38` from: ``` public native byte[] getSourceImage(); ``` To: ``` public native boolean[] getSourceImage(); ``` The application no longer crashes, but then of...

I resolved the problem, but needed to make changes to `cvjni.h` and `cvjni.cpp`: 1. The datatype of `Java_org_siprop_opencv_OpenCV_getSourceImage()` should be `jbyteArray`, not `jbooleanArray`. 2. With all subsequent modifications within that...

I took a brief look at the source libraries, and they are modified versions of OpenCV 2.0. I only looked at `cvhaar.cpp` (as this is relevant to my thesis) and...