C# 클래스 AForge.Imaging.YCbCr

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

공개 프로퍼티들

프로퍼티 타입 설명
Cb float
Cr float
Y float

공개 메소드들

메소드 설명
FromRGB ( RGB rgb ) : YCbCr

Convert from RGB to YCbCr color space (Rec 601-1 specification).

FromRGB ( RGB rgb, YCbCr ycbcr ) : void

Convert from RGB to YCbCr color space (Rec 601-1 specification).

ToRGB ( ) : RGB

Convert the color to RGB color space.

ToRGB ( YCbCr ycbcr, RGB rgb ) : void

Convert from YCbCr to RGB color space.

YCbCr ( ) : System

Initializes a new instance of the YCbCr class.

YCbCr ( float y, float cb, float cr ) : System

Initializes a new instance of the YCbCr class.

메소드 상세

FromRGB() 공개 정적인 메소드

Convert from RGB to YCbCr color space (Rec 601-1 specification).
public static FromRGB ( RGB rgb ) : YCbCr
rgb RGB Source color in RGB color space.
리턴 YCbCr

FromRGB() 공개 정적인 메소드

Convert from RGB to YCbCr color space (Rec 601-1 specification).
public static FromRGB ( RGB rgb, YCbCr ycbcr ) : void
rgb RGB Source color in RGB color space.
ycbcr YCbCr Destination color in YCbCr color space.
리턴 void

ToRGB() 공개 메소드

Convert the color to RGB color space.
public ToRGB ( ) : RGB
리턴 RGB

ToRGB() 공개 정적인 메소드

Convert from YCbCr to RGB color space.
public static ToRGB ( YCbCr ycbcr, RGB rgb ) : void
ycbcr YCbCr Source color in YCbCr color space.
rgb RGB Destination color in RGB color spacs.
리턴 void

YCbCr() 공개 메소드

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

YCbCr() 공개 메소드

Initializes a new instance of the YCbCr class.
public YCbCr ( float y, float cb, float cr ) : System
y float Y component.
cb float Cb component.
cr float Cr component.
리턴 System

프로퍼티 상세

Cb 공개적으로 프로퍼티

Cb component.
public float Cb
리턴 float

Cr 공개적으로 프로퍼티

Cr component.
public float Cr
리턴 float

Y 공개적으로 프로퍼티

Y component.
public float Y
리턴 float