C# 클래스 Accord.Vision.Detection.HaarCascade

상속: ICloneable
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
Clone ( ) : object

Creates a new object that is a copy of the current instance.

FromXml ( Stream stream ) : HaarCascade

Loads a HaarCascade from a OpenCV-compatible XML file.

FromXml ( TextReader stringReader ) : HaarCascade

Loads a HaarCascade from a OpenCV-compatible XML file.

FromXml ( string path ) : HaarCascade

Loads a HaarCascade from a OpenCV-compatible XML file.

HaarCascade ( int baseWidth, int baseHeight, HaarCascadeStage stages ) : System

Constructs a new Haar Cascade.

ToCode ( TextWriter textWriter, string className ) : void

Saves a HaarCascade to C# code.

ToCode ( string path, string className ) : void

Saves a HaarCascade to C# code.

보호된 메소드들

메소드 설명
HaarCascade ( int baseWidth, int baseHeight ) : System

Constructs a new Haar Cascade.

비공개 메소드들

메소드 설명
checkTiltedFeatures ( HaarCascadeStage stages ) : bool

Checks if the classifier contains tilted (rotated) features

메소드 상세

Clone() 공개 메소드

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
리턴 object

FromXml() 공개 정적인 메소드

Loads a HaarCascade from a OpenCV-compatible XML file.
public static FromXml ( Stream stream ) : HaarCascade
stream Stream /// A containing the file stream /// for the xml definition of the classifier to be loaded.
리턴 HaarCascade

FromXml() 공개 정적인 메소드

Loads a HaarCascade from a OpenCV-compatible XML file.
public static FromXml ( TextReader stringReader ) : HaarCascade
stringReader System.IO.TextReader /// A containing the file stream /// for the xml definition of the classifier to be loaded.
리턴 HaarCascade

FromXml() 공개 정적인 메소드

Loads a HaarCascade from a OpenCV-compatible XML file.
public static FromXml ( string path ) : HaarCascade
path string /// The file path for the xml definition of the classifier to be loaded.
리턴 HaarCascade

HaarCascade() 보호된 메소드

Constructs a new Haar Cascade.
protected HaarCascade ( int baseWidth, int baseHeight ) : System
baseWidth int Base feature width.
baseHeight int Base feature height.
리턴 System

HaarCascade() 공개 메소드

Constructs a new Haar Cascade.
public HaarCascade ( int baseWidth, int baseHeight, HaarCascadeStage stages ) : System
baseWidth int Base feature width.
baseHeight int Base feature height.
stages HaarCascadeStage Haar-like features classification stages.
리턴 System

ToCode() 공개 메소드

Saves a HaarCascade to C# code.
public ToCode ( TextWriter textWriter, string className ) : void
textWriter System.IO.TextWriter
className string
리턴 void

ToCode() 공개 메소드

Saves a HaarCascade to C# code.
public ToCode ( string path, string className ) : void
path string
className string
리턴 void