C# 클래스 Accord.Imaging.Moments.CentralMoments

Central image moments.
상속: IMoments
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
CentralMoments ( Bitmap image, Rectangle area, int order = DefaultOrder ) : System

Initializes a new instance of the CentralMoments class.

CentralMoments ( Bitmap image, int order = DefaultOrder ) : System

Initializes a new instance of the CentralMoments class.

CentralMoments ( RawMoments moments ) : System

Initializes a new instance of the CentralMoments class.

CentralMoments ( UnmanagedImage image, Rectangle area, int order = DefaultOrder ) : System

Initializes a new instance of the CentralMoments class.

CentralMoments ( float image, Rectangle area, int order = DefaultOrder ) : System

Initializes a new instance of the CentralMoments class.

CentralMoments ( float image, int order = DefaultOrder ) : System

Initializes a new instance of the CentralMoments class.

CentralMoments ( int order = DefaultOrder ) : System

Initializes a new instance of the CentralMoments class.

Compute ( RawMoments moments ) : void

Computes the center moments from the specified raw moments.

Compute ( UnmanagedImage image, Rectangle area ) : void

Computes the center moments for the specified image.

Compute ( float image, Rectangle area ) : void

Computes the center moments for the specified image.

GetOrientation ( ) : float

Gets the orientation of the ellipse containing the image.

GetSize ( ) : SizeF

Gets the size of the ellipse containing the image.

GetSizeAndOrientation ( float &angle ) : SizeF

Gets both size and orientation of the ellipse containing the image.

메소드 상세

CentralMoments() 공개 메소드

Initializes a new instance of the CentralMoments class.
public CentralMoments ( Bitmap image, Rectangle area, int order = DefaultOrder ) : System
image System.Drawing.Bitmap The image whose moments should be computed.
area System.Drawing.Rectangle The region of interest in the image to compute moments for.
order int The maximum order for the moments.
리턴 System

CentralMoments() 공개 메소드

Initializes a new instance of the CentralMoments class.
public CentralMoments ( Bitmap image, int order = DefaultOrder ) : System
image System.Drawing.Bitmap The image whose moments should be computed.
order int The maximum order for the moments.
리턴 System

CentralMoments() 공개 메소드

Initializes a new instance of the CentralMoments class.
public CentralMoments ( RawMoments moments ) : System
moments RawMoments The raw moments to construct central moments.
리턴 System

CentralMoments() 공개 메소드

Initializes a new instance of the CentralMoments class.
public CentralMoments ( UnmanagedImage image, Rectangle area, int order = DefaultOrder ) : System
image AForge.Imaging.UnmanagedImage The image whose moments should be computed.
area System.Drawing.Rectangle The region of interest in the image to compute moments for.
order int The maximum order for the moments.
리턴 System

CentralMoments() 공개 메소드

Initializes a new instance of the CentralMoments class.
public CentralMoments ( float image, Rectangle area, int order = DefaultOrder ) : System
image float The image whose moments should be computed.
area System.Drawing.Rectangle The region of interest in the image to compute moments for.
order int The maximum order for the moments.
리턴 System

CentralMoments() 공개 메소드

Initializes a new instance of the CentralMoments class.
public CentralMoments ( float image, int order = DefaultOrder ) : System
image float The image whose moments should be computed.
order int The maximum order for the moments.
리턴 System

CentralMoments() 공개 메소드

Initializes a new instance of the CentralMoments class.
public CentralMoments ( int order = DefaultOrder ) : System
order int
리턴 System

Compute() 공개 메소드

Computes the center moments from the specified raw moments.
public Compute ( RawMoments moments ) : void
moments RawMoments The raw moments to use as base of calculations.
리턴 void

Compute() 공개 메소드

Computes the center moments for the specified image.
public Compute ( UnmanagedImage image, Rectangle area ) : void
image AForge.Imaging.UnmanagedImage The image whose moments should be computed.
area System.Drawing.Rectangle The region of interest in the image to compute moments for.
리턴 void

Compute() 공개 메소드

Computes the center moments for the specified image.
public Compute ( float image, Rectangle area ) : void
image float The image.
area System.Drawing.Rectangle The region of interest in the image to compute moments for.
리턴 void

GetOrientation() 공개 메소드

Gets the orientation of the ellipse containing the image.
public GetOrientation ( ) : float
리턴 float

GetSize() 공개 메소드

Gets the size of the ellipse containing the image.
public GetSize ( ) : SizeF
리턴 System.Drawing.SizeF

GetSizeAndOrientation() 공개 메소드

Gets both size and orientation of the ellipse containing the image.
public GetSizeAndOrientation ( float &angle ) : SizeF
angle float The angle of orientation of the ellipse, in radians.
리턴 System.Drawing.SizeF