org.opencv.features2d.BRISK Java Examples

The following examples show how to use org.opencv.features2d.BRISK. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BRISK.java    From LicensePlateDiscern with MIT License 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    Mat indexChange_mat = indexChange;
    BRISK retVal = BRISK.__fromPtr__(create_0(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin, indexChange_mat.nativeObj));
    
    return retVal;
}
 
Example #2
Source File: BRISK.java    From OpenCvFaceDetect with Apache License 2.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_11(radiusList_mat.nativeObj, numberList_mat.nativeObj));
    
    return retVal;
}
 
Example #3
Source File: BRISK.java    From VIA-AI with MIT License 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_1(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin));
    
    return retVal;
}
 
Example #4
Source File: BRISK.java    From OpenCvFaceDetect with Apache License 2.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_10(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax));
    
    return retVal;
}
 
Example #5
Source File: BRISK.java    From OpenCvFaceDetect with Apache License 2.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_9(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin));
    
    return retVal;
}
 
Example #6
Source File: BRISK.java    From OpenCvFaceDetect with Apache License 2.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    Mat indexChange_mat = indexChange;
    BRISK retVal = BRISK.__fromPtr__(create_8(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin, indexChange_mat.nativeObj));
    
    return retVal;
}
 
Example #7
Source File: BRISK.java    From OpenCvFaceDetect with Apache License 2.0 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_2(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax));
    
    return retVal;
}
 
Example #8
Source File: BRISK.java    From VIA-AI with MIT License 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_9(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin));
    
    return retVal;
}
 
Example #9
Source File: BRISK.java    From VIA-AI with MIT License 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_3(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj));
    
    return retVal;
}
 
Example #10
Source File: BRISK.java    From OpenCvFaceDetect with Apache License 2.0 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_1(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin));
    
    return retVal;
}
 
Example #11
Source File: BRISK.java    From LPR with Apache License 2.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_9(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin));
    
    return retVal;
}
 
Example #12
Source File: BRISK.java    From LPR with Apache License 2.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_10(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax));
    
    return retVal;
}
 
Example #13
Source File: BRISK.java    From LPR with Apache License 2.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_11(radiusList_mat.nativeObj, numberList_mat.nativeObj));
    
    return retVal;
}
 
Example #14
Source File: BRISK.java    From OpenCvFaceDetect with Apache License 2.0 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    Mat indexChange_mat = indexChange;
    BRISK retVal = BRISK.__fromPtr__(create_0(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin, indexChange_mat.nativeObj));
    
    return retVal;
}
 
Example #15
Source File: BRISK.java    From pasm-yolov3-Android with GNU General Public License v3.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_11(radiusList_mat.nativeObj, numberList_mat.nativeObj));
    
    return retVal;
}
 
Example #16
Source File: BRISK.java    From LPR with Apache License 2.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    Mat indexChange_mat = indexChange;
    BRISK retVal = BRISK.__fromPtr__(create_8(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin, indexChange_mat.nativeObj));
    
    return retVal;
}
 
Example #17
Source File: BRISK.java    From LicensePlateDiscern with MIT License 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_1(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin));
    
    return retVal;
}
 
Example #18
Source File: BRISK.java    From LicensePlateDiscern with MIT License 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_2(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax));
    
    return retVal;
}
 
Example #19
Source File: BRISK.java    From LicensePlateDiscern with MIT License 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_3(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj));
    
    return retVal;
}
 
Example #20
Source File: BRISK.java    From pasm-yolov3-Android with GNU General Public License v3.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_10(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax));
    
    return retVal;
}
 
Example #21
Source File: BRISK.java    From pasm-yolov3-Android with GNU General Public License v3.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_9(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin));
    
    return retVal;
}
 
Example #22
Source File: BRISK.java    From pasm-yolov3-Android with GNU General Public License v3.0 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    Mat indexChange_mat = indexChange;
    BRISK retVal = BRISK.__fromPtr__(create_8(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin, indexChange_mat.nativeObj));
    
    return retVal;
}
 
Example #23
Source File: BRISK.java    From LicensePlateDiscern with MIT License 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    Mat indexChange_mat = indexChange;
    BRISK retVal = BRISK.__fromPtr__(create_8(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin, indexChange_mat.nativeObj));
    
    return retVal;
}
 
Example #24
Source File: BRISK.java    From LicensePlateDiscern with MIT License 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_9(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin));
    
    return retVal;
}
 
Example #25
Source File: BRISK.java    From LicensePlateDiscern with MIT License 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_10(radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax));
    
    return retVal;
}
 
Example #26
Source File: BRISK.java    From LicensePlateDiscern with MIT License 5 votes vote down vote up
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_11(radiusList_mat.nativeObj, numberList_mat.nativeObj));
    
    return retVal;
}
 
Example #27
Source File: BRISK.java    From pasm-yolov3-Android with GNU General Public License v3.0 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    Mat indexChange_mat = indexChange;
    BRISK retVal = BRISK.__fromPtr__(create_0(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin, indexChange_mat.nativeObj));
    
    return retVal;
}
 
Example #28
Source File: BRISK.java    From pasm-yolov3-Android with GNU General Public License v3.0 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_1(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax, dMin));
    
    return retVal;
}
 
Example #29
Source File: BRISK.java    From pasm-yolov3-Android with GNU General Public License v3.0 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_2(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj, dMax));
    
    return retVal;
}
 
Example #30
Source File: BRISK.java    From pasm-yolov3-Android with GNU General Public License v3.0 5 votes vote down vote up
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList)
{
    Mat radiusList_mat = radiusList;
    Mat numberList_mat = numberList;
    BRISK retVal = BRISK.__fromPtr__(create_3(thresh, octaves, radiusList_mat.nativeObj, numberList_mat.nativeObj));
    
    return retVal;
}