C# 클래스 zxingwp7.datamatrix.decoder.Decoder

The main class which implements Data Matrix Code decoding -- as opposed to locating and extracting the Data Matrix Code from an image.

파일 보기 프로젝트 열기: henningms/zxing2.0-wp7

공개 메소드들

메소드 설명
Decoder ( ) : zxingwp7.common
decode ( BitMatrix bits ) : DecoderResult

Decodes a Data Matrix Code represented as a {@link BitMatrix}. A 1 or "true" is taken to mean a black module.

decode ( bool image ) : DecoderResult

Convenience method that can decode a Data Matrix Code represented as a 2D array of booleans. "true" is taken to mean a black module.

비공개 메소드들

메소드 설명
correctErrors ( sbyte codewordBytes, int numDataCodewords ) : void

Given data and error-correction codewords received, possibly corrupted by errors, attempts to correct the errors in-place using Reed-Solomon error correction.

메소드 상세

Decoder() 공개 메소드

public Decoder ( ) : zxingwp7.common
리턴 zxingwp7.common

decode() 공개 메소드

Decodes a Data Matrix Code represented as a {@link BitMatrix}. A 1 or "true" is taken to mean a black module.

public decode ( BitMatrix bits ) : DecoderResult
bits zxingwp7.common.BitMatrix booleans representing white/black Data Matrix Code modules ///
리턴 zxingwp7.common.DecoderResult

decode() 공개 메소드

Convenience method that can decode a Data Matrix Code represented as a 2D array of booleans. "true" is taken to mean a black module.

public decode ( bool image ) : DecoderResult
image bool booleans representing white/black Data Matrix Code modules ///
리턴 zxingwp7.common.DecoderResult