C# 클래스 CNTK.CntkBitmapExtensions

파일 보기 프로젝트 열기: Microsoft/CNTK

공개 메소드들

메소드 설명
ExtractCHW ( this image ) : List

Extracts image pixels in CHW

ExtractHWC ( this image ) : List

Extracts image pixels in HWC

ParallelExtractCHW ( this image ) : List

Extracts image pixels in CHW using parallelization

ParallelExtractHWC ( this image ) : List

Extracts image pixels in HWC using multiple threads

Resize ( this image, int width, int height, bool useHighQuality ) : Bitmap

Resizes an image

비공개 메소드들

메소드 설명
GetPixelMapper ( PixelFormat pixelFormat, int heightStride ) : Func

Returns a function for extracting the R-G-B values properly from an image based on its pixel format

메소드 상세

ExtractCHW() 공개 정적인 메소드

Extracts image pixels in CHW
public static ExtractCHW ( this image ) : List
image this The bitmap image to extract features from
리턴 List

ExtractHWC() 공개 정적인 메소드

Extracts image pixels in HWC
public static ExtractHWC ( this image ) : List
image this The bitmap image to extract features from
리턴 List

ParallelExtractCHW() 공개 정적인 메소드

Extracts image pixels in CHW using parallelization
public static ParallelExtractCHW ( this image ) : List
image this The bitmap image to extract features from
리턴 List

ParallelExtractHWC() 공개 정적인 메소드

Extracts image pixels in HWC using multiple threads
public static ParallelExtractHWC ( this image ) : List
image this The bitmap image to extract features from
리턴 List

Resize() 공개 정적인 메소드

Resizes an image
public static Resize ( this image, int width, int height, bool useHighQuality ) : Bitmap
image this The image to resize
width int New width in pixels
height int New height in pixesl
useHighQuality bool Resize quality
리턴 System.Drawing.Bitmap