ITemplateMatcher

Interface class to implement for custom template matchers

Types

Link copied to clipboard
data class FindResult(val rectangle: Rectangle, val score: Double)

Represents the results of a matching operation

Link copied to clipboard
open class Settings(var defaultThreshold: Double = 0.9)

Functions

Link copied to clipboard
abstract fun findBest(template: ITemplate, image: BufferedImage, count: Int): List<ITemplateMatcher.FindResult>

Finds the best match for the given template inside the given image

Link copied to clipboard

This method removes any overlapping FindResult, giving priority to the FindResult with the highest score.

Properties

Link copied to clipboard

Inheritors

Link copied to clipboard