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

Hue modifier.

The filter operates in HSL color space and updates pixels' hue values setting it to the specified value (luminance and saturation are kept unchanged). The result of the filter looks like the image is observed through a glass of the given color.

The filter accepts 24 and 32 bpp color images for processing.

Sample usage:

// create filter HueModifier filter = new HueModifier( 180 ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

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

공개 메소드들

메소드 설명
HueModifier ( ) : System

Initializes a new instance of the HueModifier class.

HueModifier ( int hue ) : System

Initializes a new instance of the HueModifier class.

보호된 메소드들

메소드 설명
ProcessFilter ( UnmanagedImage image, Rectangle rect ) : void

Process the filter on the specified image.

메소드 상세

HueModifier() 공개 메소드

Initializes a new instance of the HueModifier class.
public HueModifier ( ) : System
리턴 System

HueModifier() 공개 메소드

Initializes a new instance of the HueModifier class.
public HueModifier ( int hue ) : System
hue int Hue value to set.
리턴 System

ProcessFilter() 보호된 메소드

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage image, Rectangle rect ) : void
image UnmanagedImage Source image data.
rect System.Drawing.Rectangle Image rectangle for processing by the filter.
리턴 void