C# 클래스 AForge.Imaging.Filters.HSLLinear

Luminance and saturation linear correction.

The filter operates in HSL color space and provides with the facility of luminance and saturation linear correction - mapping specified channels' input ranges to specified output ranges.

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

Sample usage:

// create filter HSLLinear filter = new HSLLinear( ); // configure the filter filter.InLuminance = new DoubleRange( 0, 0.85 ); filter.OutSaturation = new DoubleRange( 0.25, 1 ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

상속: BaseInPlacePartialFilter
파일 보기 프로젝트 열기: holisticware-admin/MonoVersal.AForgeNET 1 사용 예제들

공개 메소드들

메소드 설명
HSLLinear ( ) : System

Initializes a new instance of the HSLLinear class.

보호된 메소드들

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

Process the filter on the specified image.

메소드 상세

HSLLinear() 공개 메소드

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

ProcessFilter() 보호된 메소드

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