(OpenCV) cannot find Core.line in Android Studio

The problem with Core.line (OpenCV) cannot be recognized in android studio, but I used Opencv in one application, but it seems that only Core.line is missing, how can I add it to the library. I am using Android Studio 1.3.2 and Opencv SDK v3 .

+5
source share
1 answer

In Opencv SDK v3 you should use Imgproc.line instead of Core.line, Core.line no longer exists.

+15
source

All Articles