Class ALIKED
java.lang.Object
org.opencv.core.Algorithm
org.opencv.features.Feature2D
org.opencv.features.ALIKED
ALIKED feature detector and descriptor extractor.
ALIKED (A Lightweight Image KEYpoint Detector) is a CNN-based feature detector and descriptor
extractor, as described in CITE: Zhao23 . It produces 128-dimensional float descriptors and
keypoints with sub-pixel accuracy.
The model expects RGB input [1,3,H,W] and internally converts BGR images to RGB.
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ALIKED__fromPtr__(long addr) static ALIKEDCreates ALIKED from a model file path.static ALIKEDcreate(String modelPath, ALIKED_Params params) Creates ALIKED from a model file path.Methods inherited from class Feature2D
compute, compute, defaultNorm, descriptorSize, descriptorType, detect, detect, detect, detect, detectAndCompute, detectAndCompute, empty, getDefaultName, read, writeMethods inherited from class Algorithm
clear, getNativeObjAddr, save
-
Constructor Details
-
ALIKED
protected ALIKED(long addr)
-
-
Method Details
-
__fromPtr__
-
create
Creates ALIKED from a model file path.- Parameters:
modelPath- Path to the ONNX model file.params- ALIKED parameters.- Returns:
- automatically generated
-
create
-