Accord.Imaging.BlockMatch.BlockMatch C# (CSharp) Method

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
        public BlockMatch(IntPoint sourcePoint, IntPoint matchPoint, float similarity)
        {
            this.sourcePoint = sourcePoint;
            this.matchPoint = matchPoint;
            this.similarity = similarity;
        }
    }
BlockMatch