VintaSoft Imaging .NET SDK 14.0: Документация для .NET разработчика
Vintasoft.Imaging.FormsProcessing.TemplateMatching Namespace / KeyMarkRecognizerCommand Class
    Класс KeyMarkRecognizerCommand
    В этом разделе
    Ищет угловые метки изображения.
    Объектная модель
    ProcessingCommandBase RegionOfInterest ProcessingCommandResults KeyMarkRecognizerCommand
    Синтаксис
    'Declaration
    
    Public Class KeyMarkRecognizerCommand
       Inherits KeyZoneRecognizerCommand
    
    
    public class KeyMarkRecognizerCommand : KeyZoneRecognizerCommand
    
    
    public __gc class KeyMarkRecognizerCommand : public KeyZoneRecognizerCommand*
    
    
    public ref class KeyMarkRecognizerCommand : public KeyZoneRecognizerCommand^
    
    
    Ремарки

    Угловой знак представляет собой шаблон поиска (образец "L"), который состоит из двух линий одинаковой длины, исходящих из одной точки под прямым углом.

    Пример

    Вот C#/VB.NET код, который демонстрирует, как идентифицировать изображение документа с помощью алгоритма, который создает след изображения на основе L шаблонов поиска.

    
    ''' <summary>
    ''' Identifies the image using key marks.
    ''' </summary>
    ''' <param name="templateImages">The template images.</param>
    ''' <param name="testImage">The test image.</param>
    ''' <returns>Result of template matching.</returns>
    Public Shared Function IdentifyUsingMarks(templateImages As Vintasoft.Imaging.VintasoftImage(), testImage As Vintasoft.Imaging.VintasoftImage) As Vintasoft.Imaging.FormsProcessing.TemplateMatching.TemplateMatchingResult
        ' create a recognizer
        Dim markRecognizerCommand As New Vintasoft.Imaging.FormsProcessing.TemplateMatching.KeyMarkRecognizerCommand()
        ' set units of measure
        markRecognizerCommand.UnitOfMeasure = Vintasoft.Imaging.UnitOfMeasure.Pixels
        ' set max size of mark
        markRecognizerCommand.MaxMarkSize = 300
        ' set min size of mark
        markRecognizerCommand.MinMarkSize = 50
        ' create a template matching command
        Dim templateMatchingCommand As New Vintasoft.Imaging.FormsProcessing.TemplateMatching.TemplateMatchingCommand()
        ' set imprint generator based on recognizer
        templateMatchingCommand.ImageImprintGenerator = New Vintasoft.Imaging.FormsProcessing.TemplateMatching.ImageImprintGeneratorCommand(markRecognizerCommand)
        ' add template images
        templateMatchingCommand.TemplateImages.AddRange(templateImages)
        ' execute template matching
        templateMatchingCommand.ExecuteInPlace(testImage)
        ' return result
        Return templateMatchingCommand.Result
    End Function
    
    
    
    /// <summary>
    /// Identifies the image using key marks.
    /// </summary>
    /// <param name="templateImages">The template images.</param>
    /// <param name="testImage">The test image.</param>
    /// <returns>Result of template matching.</returns>
    public static Vintasoft.Imaging.FormsProcessing.TemplateMatching.TemplateMatchingResult IdentifyUsingMarks(
        Vintasoft.Imaging.VintasoftImage[] templateImages, 
        Vintasoft.Imaging.VintasoftImage testImage)
    {
        // create a recognizer
        Vintasoft.Imaging.FormsProcessing.TemplateMatching.KeyMarkRecognizerCommand markRecognizerCommand = 
            new Vintasoft.Imaging.FormsProcessing.TemplateMatching.KeyMarkRecognizerCommand();
        // set units of measure
        markRecognizerCommand.UnitOfMeasure = Vintasoft.Imaging.UnitOfMeasure.Pixels;
        // set max size of mark
        markRecognizerCommand.MaxMarkSize = 300;
        // set min size of mark
        markRecognizerCommand.MinMarkSize = 50;
        // create a template matching command
        Vintasoft.Imaging.FormsProcessing.TemplateMatching.TemplateMatchingCommand templateMatchingCommand = 
            new Vintasoft.Imaging.FormsProcessing.TemplateMatching.TemplateMatchingCommand();
        // set imprint generator based on recognizer
        templateMatchingCommand.ImageImprintGenerator =
            new Vintasoft.Imaging.FormsProcessing.TemplateMatching.ImageImprintGeneratorCommand(markRecognizerCommand);
        // add template images
        templateMatchingCommand.TemplateImages.AddRange(templateImages);
        // execute template matching
        templateMatchingCommand.ExecuteInPlace(testImage);
        // return result
        return templateMatchingCommand.Result;
    }
    
    

    Иерархия наследования

    System.Object
       Vintasoft.Imaging.ImageProcessing.ProcessingCommandBase
          Vintasoft.Imaging.ImageProcessing.ProcessingCommandWithRegion
             Vintasoft.Imaging.FormsProcessing.TemplateMatching.KeyZoneRecognizerCommand
                Vintasoft.Imaging.FormsProcessing.TemplateMatching.KeyMarkRecognizerCommand

    Требования

    Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    Смотрите также