CvArrCornerHarris Method (CvArr, Int32) OpenCvSharp Class Library
Runs the Harris edge detector on image. Similarly to cvCornerMinEigenVal and cvCornerEigenValsAndVecs, for each pixel it calculates 2x2 gradient covariation matrix M over block_size×block_size neighborhood.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public void CornerHarris(
	CvArr harrisResponce,
	int blockSize
)

Parameters

harrisResponce
Type: OpenCvSharpCvArr
Image to store the Harris detector responces. Should have the same size as image.
blockSize
Type: SystemInt32
Neighborhood size.
See Also

Reference