Java Code Examples for org.opencv.features2d.DescriptorMatcher#__fromPtr__

The following examples show how to use org.opencv.features2d.DescriptorMatcher#__fromPtr__ . 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: DescriptorMatcher.java    From LicensePlateDiscern with MIT License 3 votes vote down vote up
public static DescriptorMatcher create(String descriptorMatcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_0(descriptorMatcherType));
    
    return retVal;
}
 
Example 2
Source File: DescriptorMatcher.java    From OpenCvFaceDetect with Apache License 2.0 3 votes vote down vote up
public static DescriptorMatcher create(int matcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_1(matcherType));
    
    return retVal;
}
 
Example 3
Source File: DescriptorMatcher.java    From OpenCvFaceDetect with Apache License 2.0 3 votes vote down vote up
public static DescriptorMatcher create(String descriptorMatcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_0(descriptorMatcherType));
    
    return retVal;
}
 
Example 4
Source File: DescriptorMatcher.java    From OpenCvFaceDetect with Apache License 2.0 3 votes vote down vote up
public  DescriptorMatcher clone()
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_1(nativeObj));
    
    return retVal;
}
 
Example 5
Source File: DescriptorMatcher.java    From OpenCvFaceDetect with Apache License 2.0 3 votes vote down vote up
public  DescriptorMatcher clone(boolean emptyTrainData)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_0(nativeObj, emptyTrainData));
    
    return retVal;
}
 
Example 6
Source File: DescriptorMatcher.java    From pasm-yolov3-Android with GNU General Public License v3.0 3 votes vote down vote up
public static DescriptorMatcher create(int matcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_1(matcherType));
    
    return retVal;
}
 
Example 7
Source File: DescriptorMatcher.java    From pasm-yolov3-Android with GNU General Public License v3.0 3 votes vote down vote up
public static DescriptorMatcher create(String descriptorMatcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_0(descriptorMatcherType));
    
    return retVal;
}
 
Example 8
Source File: DescriptorMatcher.java    From pasm-yolov3-Android with GNU General Public License v3.0 3 votes vote down vote up
public  DescriptorMatcher clone()
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_1(nativeObj));
    
    return retVal;
}
 
Example 9
Source File: DescriptorMatcher.java    From pasm-yolov3-Android with GNU General Public License v3.0 3 votes vote down vote up
public  DescriptorMatcher clone(boolean emptyTrainData)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_0(nativeObj, emptyTrainData));
    
    return retVal;
}
 
Example 10
Source File: DescriptorMatcher.java    From LicensePlateDiscern with MIT License 3 votes vote down vote up
public static DescriptorMatcher create(int matcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_1(matcherType));
    
    return retVal;
}
 
Example 11
Source File: DescriptorMatcher.java    From VIA-AI with MIT License 3 votes vote down vote up
public  DescriptorMatcher clone(boolean emptyTrainData)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_0(nativeObj, emptyTrainData));
    
    return retVal;
}
 
Example 12
Source File: DescriptorMatcher.java    From LicensePlateDiscern with MIT License 3 votes vote down vote up
public  DescriptorMatcher clone()
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_1(nativeObj));
    
    return retVal;
}
 
Example 13
Source File: DescriptorMatcher.java    From LicensePlateDiscern with MIT License 3 votes vote down vote up
public  DescriptorMatcher clone(boolean emptyTrainData)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_0(nativeObj, emptyTrainData));
    
    return retVal;
}
 
Example 14
Source File: DescriptorMatcher.java    From LPR with Apache License 2.0 3 votes vote down vote up
public static DescriptorMatcher create(int matcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_1(matcherType));
    
    return retVal;
}
 
Example 15
Source File: DescriptorMatcher.java    From LPR with Apache License 2.0 3 votes vote down vote up
public static DescriptorMatcher create(String descriptorMatcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_0(descriptorMatcherType));
    
    return retVal;
}
 
Example 16
Source File: DescriptorMatcher.java    From LPR with Apache License 2.0 3 votes vote down vote up
public  DescriptorMatcher clone()
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_1(nativeObj));
    
    return retVal;
}
 
Example 17
Source File: DescriptorMatcher.java    From LPR with Apache License 2.0 3 votes vote down vote up
public  DescriptorMatcher clone(boolean emptyTrainData)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_0(nativeObj, emptyTrainData));
    
    return retVal;
}
 
Example 18
Source File: DescriptorMatcher.java    From VIA-AI with MIT License 3 votes vote down vote up
public static DescriptorMatcher create(int matcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_1(matcherType));
    
    return retVal;
}
 
Example 19
Source File: DescriptorMatcher.java    From VIA-AI with MIT License 3 votes vote down vote up
public static DescriptorMatcher create(String descriptorMatcherType)
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(create_0(descriptorMatcherType));
    
    return retVal;
}
 
Example 20
Source File: DescriptorMatcher.java    From VIA-AI with MIT License 3 votes vote down vote up
public  DescriptorMatcher clone()
{
    
    DescriptorMatcher retVal = DescriptorMatcher.__fromPtr__(clone_1(nativeObj));
    
    return retVal;
}