OpenCV for Android - does NativeCameraView exist?

I am an experienced OpenCV user trying to speed up work with OpenCV for Android. I found several references to the "NativeCameraView" class, for example:

Difference between NativeCameraView and JavaCameraView in OpenCV

What is the difference between `opencv.android.JavaCameraView` and` opencv.android.NativeCameraView`

http://docs.opencv.org/java/2.4.8/org/opencv/android/NativeCameraView.html

https://github.com/Tinker-S/OpenCVSamples/blob/master/OpenCV%20Library%20-%202.4.3/src/org/opencv/android/NativeCameraView.java

But that’s all, at least a few years ago. When I go to:

https://github.com/opencv/opencv

and put “NativeCameraView” in the “This repository”, “Search” box at the top, I don't get any results. If I search for "JavaCameraView", I get 11 results.

Also, if I go to

http://docs.opencv.org/java/3.1.0/

JavaCameraView is specified, but NativeCameraView is not working.

Have NativeCameraView been uninstalled with OpenCV 3 ?? Is there a change log or something similar that covers the current state of JavaCameraView vs NativeCameraView? Please inform.

+4
source share
1 answer

NativeCameraView was reset in OpenCV 3, according to ChangeLog :

, , - nativecamera Android. API .

+2

Source: https://habr.com/ru/post/1648929/


All Articles