C# 클래스 Accord.Imaging.UnsafeTools

Static tool functions for imaging.
파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
Mean ( byte src, int width, int height, int stride ) : double

Computes the mean pixel value within a given image region.

Scatter ( byte src, int width, int height, int stride, double mean ) : double

Computes the pixel scatter within a given image region.

Sum ( byte src, int width, int height, int stride ) : int

Computes the sum of all pixels within a given image region.

Variance ( byte src, int width, int height, int stride, double mean ) : double

Computes the pixel variance within a given image region.

메소드 상세

Mean() 공개 정적인 메소드

Computes the mean pixel value within a given image region.
public static Mean ( byte src, int width, int height, int stride ) : double
src byte The image region.
width int The region width.
height int The region height.
stride int The image stride.
리턴 double

Scatter() 공개 정적인 메소드

Computes the pixel scatter within a given image region.
public static Scatter ( byte src, int width, int height, int stride, double mean ) : double
src byte The image region.
width int The region width.
height int The region height.
stride int The image stride.
mean double The region pixel mean.
리턴 double

Sum() 공개 정적인 메소드

Computes the sum of all pixels within a given image region.
public static Sum ( byte src, int width, int height, int stride ) : int
src byte The image region.
width int The region width.
height int The region height.
stride int The image stride.
리턴 int

Variance() 공개 정적인 메소드

Computes the pixel variance within a given image region.
public static Variance ( byte src, int width, int height, int stride, double mean ) : double
src byte The image region.
width int The region width.
height int The region height.
stride int The image stride.
mean double The region pixel mean.
리턴 double