C# Class Emgu.CV.StructuringElementEx

A wrapper for the CvStructuringElementEx structure in opencv
Inheritance: Emgu.Util.UnmanagedObject
Afficher le fichier Open project: fajoy/RTSPExample Class Usage Examples

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode Description
DisposeObject ( ) : void

Release the unmanaged memory associated to this object

Method Details

DisposeObject() protected méthode

Release the unmanaged memory associated to this object
protected DisposeObject ( ) : void
Résultat void

StructuringElementEx() public méthode

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
Résultat System

StructuringElementEx() public méthode

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
Résultat System