Click or drag to resize
Accord.NET (logo)

ICornersDetector Interface

Corners detector's interface.

Namespace:  Accord.Imaging
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public interface ICornersDetector : ICloneable
Request Example View Source

The ICornersDetector type exposes the following members.

Properties
  NameDescription
Public propertySupportedFormats
Gets the list of image pixel formats that are supported by this extractor. The extractor will check whether the pixel format of any provided images are in this list to determine whether the image can be processed or not.
Top
Methods
  NameDescription
Public methodClone
Creates a new object that is a copy of the current instance.
(Inherited from ICloneable.)
Public methodProcessImage(Bitmap)
Process image looking for corners.
Public methodProcessImage(BitmapData)
Process image looking for corners.
Public methodProcessImage(UnmanagedImage)
Process image looking for corners.
Top
Remarks

The interface specifies set of methods, which should be implemented by different corners detection algorithms.

See Also