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

Brightness adjusting using luminance value of HSL color space
상속: IFilter, IInPlaceFilter
파일 보기 프로젝트 열기: noxryan/Claro-Shader 1 사용 예제들

공개 메소드들

메소드 설명
BrightnessCorrection ( ) : System

Initializes a new instance of the BrightnessCorrection class.

BrightnessCorrection ( double adjustValue ) : System

Initializes a new instance of the BrightnessCorrection class.

BrightnessCorrection ( double adjustValue, bool keepBW, bool keepGray, int grayTolerance ) : System

Initializes a new instance of the BrightnessCorrection class.

보호된 메소드들

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

Process the filter on the specified image.

메소드 상세

BrightnessCorrection() 공개 메소드

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

BrightnessCorrection() 공개 메소드

Initializes a new instance of the BrightnessCorrection class.
public BrightnessCorrection ( double adjustValue ) : System
adjustValue double Brightness adjust value.
리턴 System

BrightnessCorrection() 공개 메소드

Initializes a new instance of the BrightnessCorrection class.
public BrightnessCorrection ( double adjustValue, bool keepBW, bool keepGray, int grayTolerance ) : System
adjustValue double Brightness adjust value.
keepBW bool Keep blacks and whites alone.
keepGray bool Keep grays alone.
grayTolerance int Gray Tolerance range to leave untouched.
리턴 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