C# Class Accord.Imaging.BlockMatch

Block match class keeps information about found block match. The class is used with block matching algorithms implementing IBlockMatching interface.
ファイルを表示 Open project: accord-net/framework

Public Methods

Method Description
BlockMatch ( IntPoint sourcePoint, IntPoint matchPoint, float similarity ) : System

Initializes a new instance of the BlockMatch class.

Method Details

BlockMatch() public method

Initializes a new instance of the BlockMatch class.
public BlockMatch ( IntPoint sourcePoint, IntPoint matchPoint, float similarity ) : System
sourcePoint IntPoint Reference point in source image.
matchPoint IntPoint Match point in search image (point of a found match).
similarity float Similarity between blocks in source and search images, [0..1].
return System