Returns the Confidence of the closest template obtained during the last operation of documents recognition.
public Double ADRGetLastConfidence();
Public Function ADRGetLastConfidence() As Double
Last Confidence. Value between 0 and 100 (identical document).
How to create document templates and identify the one which has the closer similar content than an image file.
Dim TemplateID1 As Integer, TemplateID2 As Integer Dim nCloserTemplate As Integer 'We create the first template from an image TemplateID1 = oGdPictureImaging.ADRCreateTemplateFromFile("template1.tif") If TemplateID1 = 0 Then MsgBox "Can't create TemplateID1 " + "Error number: " + str(oGdPictureImaging.GetStat) End If 'We create the second template from an other kind of image TemplateID2 = oGdPictureImaging.ADRCreateTemplateFromFile("template2.tif") If TemplateID2 = 0 Then MsgBox "Can't create TemplateID2 " + "Error number: " + str(oGdPictureImaging.GetStat) End If 'Now, we will try to identify an image. nCloserTemplate = oGdPictureImaging.ADRGetCloserTemplateForFile("document.tif") Select Case nCloserTemplate Case TemplateID1 MsgBox "This image seems to get best similar content as TemplateID1. Confidence is: " + str(oGdPictureImaging.ADRGetLastConfidence) + " %" Case TemplateID2 MsgBox "This image seems to get best similar content as TemplateID2. Confidence is: " + str(oGdPictureImaging.ADRGetLastConfidence) + " %" End Select 'Release created templates from memory oGdPictureImaging.ADRDeleteTemplate (TemplateID1) oGdPictureImaging.ADRDeleteTemplate (TemplateID2)
|
What do you think about this topic? Send feedback!
|
|
Copyright (c) 2009-2011 www.gdpicture.com. All rights reserved.
|