C# 클래스 Accord.Imaging.Filters.BaseRotateFilter

Base class for image rotation filters.
The abstract class is the base class for all filters, which implement rotating algorithms.
상속: BaseTransformationFilter
파일 보기 프로젝트 열기: accord-net/framework

보호된 프로퍼티들

프로퍼티 타입 설명
angle double
fillColor Color
keepSize bool

보호된 메소드들

메소드 설명
BaseRotateFilter ( double angle ) : System

Initializes a new instance of the BaseRotateFilter class.

This constructor sets KeepSize property to false.

BaseRotateFilter ( double angle, bool keepSize ) : System

Initializes a new instance of the BaseRotateFilter class.

CalculateNewImageSize ( UnmanagedImage sourceData ) : Size

Calculates new image size.

메소드 상세

BaseRotateFilter() 보호된 메소드

Initializes a new instance of the BaseRotateFilter class.

This constructor sets KeepSize property to false.

protected BaseRotateFilter ( double angle ) : System
angle double Rotation angle.
리턴 System

BaseRotateFilter() 보호된 메소드

Initializes a new instance of the BaseRotateFilter class.
protected BaseRotateFilter ( double angle, bool keepSize ) : System
angle double Rotation angle.
keepSize bool Keep image size or not.
리턴 System

CalculateNewImageSize() 보호된 메소드

Calculates new image size.
protected CalculateNewImageSize ( UnmanagedImage sourceData ) : Size
sourceData UnmanagedImage Source image data.
리턴 System.Drawing.Size

프로퍼티 상세

angle 보호되어 있는 프로퍼티

Rotation angle.
protected double angle
리턴 double

fillColor 보호되어 있는 프로퍼티

Fill color.
protected Color fillColor
리턴 Color

keepSize 보호되어 있는 프로퍼티

Keep image size or not.
protected bool keepSize
리턴 bool