C# Class Emgu.CV.StructuringElementEx

A wrapper for the CvStructuringElementEx structure in opencv
Inheritance: Emgu.Util.UnmanagedObject
显示文件 Open project: fajoy/RTSPExample Class Usage Examples

Public Methods

Method Description
StructuringElementEx ( int values, int anchorX, int anchorY ) : System

Create a custome shape Structuring Element

StructuringElementEx ( int cols, int rows, int anchorX, int anchorY, CvEnum shape ) : System

Create a structuring element of the specific type

Protected Methods

Method Description
DisposeObject ( ) : void

Release the unmanaged memory associated to this object

Method Details

DisposeObject() protected method

Release the unmanaged memory associated to this object
protected DisposeObject ( ) : void
return void

StructuringElementEx() public method

Create a custome shape Structuring Element
public StructuringElementEx ( int values, int anchorX, int anchorY ) : System
values int The structuring element data, a plane array, representing row-by-row scanning of the element matrix. Non-zero values indicate points that belong to the element.
anchorX int Relative horizontal offset of the anchor point
anchorY int Relative vertical offset of the anchor point
return System

StructuringElementEx() public method

Create a structuring element of the specific type
public StructuringElementEx ( int cols, int rows, int anchorX, int anchorY, CvEnum shape ) : System
cols int Number of columns in the structuring element
rows int Number of rows in the structuring element
anchorX int Relative horizontal offset of the anchor point
anchorY int Relative vertical offset of the anchor point
shape CvEnum Shape of the structuring element
return System