C# 클래스 Pinta.ImageManipulation.Effects.MedianEffect

상속: LocalHistogramEffect
파일 보기 프로젝트 열기: PintaProject/Pinta.ImageManipulation 1 사용 예제들

공개 메소드들

메소드 설명
Apply ( ColorBgra src, int area, int hb, int hg, int hr, int ha ) : ColorBgra
MedianEffect ( int radius = 10, int percentile = 50 ) : System

Creates a new effect that will apply a median effect to the image.

보호된 메소드들

메소드 설명
RenderLine ( ISurface src, ISurface dest, Rectangle rect ) : void

메소드 상세

Apply() 공개 메소드

public Apply ( ColorBgra src, int area, int hb, int hg, int hr, int ha ) : ColorBgra
src ColorBgra
area int
hb int
hg int
hr int
ha int
리턴 ColorBgra

MedianEffect() 공개 메소드

Creates a new effect that will apply a median effect to the image.
public MedianEffect ( int radius = 10, int percentile = 50 ) : System
radius int Radius to consider for median. Valid range is 1 - 200.
percentile int Percentile to use for median. Valid range is 0 - 100.
리턴 System

RenderLine() 보호된 메소드

protected RenderLine ( ISurface src, ISurface dest, Rectangle rect ) : void
src ISurface
dest ISurface
rect Rectangle
리턴 void