I have downloaded a sample code of Java OpenCV. In few lines of the code there is FeatureDetectore()
method that the compiler says it's deprecated.
FeatureDetector detector = FeatureDetector.create(FeatureDetector.MSER);
detector.detect(mGrey, keypoint);
listpoint = keypoint.toList();
So, How should I replace this part of code? Are there any new alternative for this? or can I continue use of the deprecated function?