Uses of Class
org.opencv.aruco.Dictionary
-
Packages that use Dictionary Package Description org.opencv.aruco -
-
Uses of Dictionary in org.opencv.aruco
Methods in org.opencv.aruco that return Dictionary Modifier and Type Method Description static Dictionary
Dictionary. __fromPtr__(long addr)
static Dictionary
Dictionary. create(int nMarkers, int markerSize)
SEE: generateCustomDictionarystatic Dictionary
Dictionary. create(int nMarkers, int markerSize, int randomSeed)
SEE: generateCustomDictionarystatic Dictionary
Dictionary. create_from(int nMarkers, int markerSize, Dictionary baseDictionary)
SEE: generateCustomDictionarystatic Dictionary
Dictionary. create_from(int nMarkers, int markerSize, Dictionary baseDictionary, int randomSeed)
SEE: generateCustomDictionarystatic Dictionary
Aruco. custom_dictionary(int nMarkers, int markerSize)
SEE: generateCustomDictionarystatic Dictionary
Aruco. custom_dictionary(int nMarkers, int markerSize, int randomSeed)
SEE: generateCustomDictionarystatic Dictionary
Aruco. custom_dictionary_from(int nMarkers, int markerSize, Dictionary baseDictionary)
Generates a new customizable marker dictionarystatic Dictionary
Aruco. custom_dictionary_from(int nMarkers, int markerSize, Dictionary baseDictionary, int randomSeed)
Generates a new customizable marker dictionarystatic Dictionary
Dictionary. get(int dict)
SEE: getPredefinedDictionaryDictionary
Board. get_dictionary()
static Dictionary
Aruco. getPredefinedDictionary(int dict)
Returns one of the predefined dictionaries referenced by DICT_*.Methods in org.opencv.aruco with parameters of type Dictionary Modifier and Type Method Description static Board
Board. create(List<Mat> objPoints, Dictionary dictionary, Mat ids)
Provide way to create Board by passing necessary data.static CharucoBoard
CharucoBoard. create(int squaresX, int squaresY, float squareLength, float markerLength, Dictionary dictionary)
Create a CharucoBoard objectstatic GridBoard
GridBoard. create(int markersX, int markersY, float markerLength, float markerSeparation, Dictionary dictionary)
Create a GridBoard objectstatic GridBoard
GridBoard. create(int markersX, int markersY, float markerLength, float markerSeparation, Dictionary dictionary, int firstMarker)
Create a GridBoard objectstatic Dictionary
Dictionary. create_from(int nMarkers, int markerSize, Dictionary baseDictionary)
SEE: generateCustomDictionarystatic Dictionary
Dictionary. create_from(int nMarkers, int markerSize, Dictionary baseDictionary, int randomSeed)
SEE: generateCustomDictionarystatic Dictionary
Aruco. custom_dictionary_from(int nMarkers, int markerSize, Dictionary baseDictionary)
Generates a new customizable marker dictionarystatic Dictionary
Aruco. custom_dictionary_from(int nMarkers, int markerSize, Dictionary baseDictionary, int randomSeed)
Generates a new customizable marker dictionarystatic void
Aruco. detectMarkers(Mat image, Dictionary dictionary, List<Mat> corners, Mat ids)
Basic marker detectionstatic void
Aruco. detectMarkers(Mat image, Dictionary dictionary, List<Mat> corners, Mat ids, DetectorParameters parameters)
Basic marker detectionstatic void
Aruco. detectMarkers(Mat image, Dictionary dictionary, List<Mat> corners, Mat ids, DetectorParameters parameters, List<Mat> rejectedImgPoints)
Basic marker detectionstatic void
Aruco. detectMarkers(Mat image, Dictionary dictionary, List<Mat> corners, Mat ids, DetectorParameters parameters, List<Mat> rejectedImgPoints, Mat cameraMatrix)
Basic marker detectionstatic void
Aruco. detectMarkers(Mat image, Dictionary dictionary, List<Mat> corners, Mat ids, DetectorParameters parameters, List<Mat> rejectedImgPoints, Mat cameraMatrix, Mat distCoeff)
Basic marker detectionstatic void
Aruco. drawMarker(Dictionary dictionary, int id, int sidePixels, Mat img)
Draw a canonical marker imagestatic void
Aruco. drawMarker(Dictionary dictionary, int id, int sidePixels, Mat img, int borderBits)
Draw a canonical marker image
-