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

Color filtering.

The filter filters pixels inside/outside of specified RGB color range - it keeps pixels with colors inside/outside of specified range and fills the rest with specified color.

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

Sample usage:

// create filter ColorFiltering filter = new ColorFiltering( ); // set color ranges to keep filter.Red = new IntRange( 100, 255 ); filter.Green = new IntRange( 0, 75 ); filter.Blue = new IntRange( 0, 75 ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

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

공개 메소드들

메소드 설명
ColorFiltering ( ) : System

Initializes a new instance of the ColorFiltering class.

ColorFiltering ( IntRange red, IntRange green, IntRange blue ) : System

Initializes a new instance of the ColorFiltering class.

보호된 메소드들

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

Process the filter on the specified image.

메소드 상세

ColorFiltering() 공개 메소드

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

ColorFiltering() 공개 메소드

Initializes a new instance of the ColorFiltering class.
public ColorFiltering ( IntRange red, IntRange green, IntRange blue ) : System
red AForge.IntRange Red components filtering range.
green AForge.IntRange Green components filtering range.
blue AForge.IntRange Blue components filtering range.
리턴 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