本文整理汇总了Java中com.google.zxing.aztec.AztecDetectorResult.getBits方法的典型用法代码示例。如果您正苦于以下问题:Java AztecDetectorResult.getBits方法的具体用法?Java AztecDetectorResult.getBits怎么用?Java AztecDetectorResult.getBits使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.zxing.aztec.AztecDetectorResult
的用法示例。
在下文中一共展示了AztecDetectorResult.getBits方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: decode
import com.google.zxing.aztec.AztecDetectorResult; //导入方法依赖的package包/类
public DecoderResult decode(AztecDetectorResult detectorResult) throws FormatException {
ddata = detectorResult;
BitMatrix matrix = detectorResult.getBits();
boolean[] rawbits = extractBits(matrix);
boolean[] correctedBits = correctBits(rawbits);
String result = getEncodedData(correctedBits);
return new DecoderResult(null, result, null, null);
}
示例2: decode
import com.google.zxing.aztec.AztecDetectorResult; //导入方法依赖的package包/类
public DecoderResult decode(AztecDetectorResult detectorResult) throws FormatException {
ddata = detectorResult;
BitMatrix matrix = detectorResult.getBits();
boolean[] rawbits = extractBits(matrix);
boolean[] correctedBits = correctBits(rawbits);
byte[] rawBytes = convertBoolArrayToByteArray(correctedBits);
String result = getEncodedData(correctedBits);
return new DecoderResult(rawBytes, result, null, null);
}
示例3: decode
import com.google.zxing.aztec.AztecDetectorResult; //导入方法依赖的package包/类
public DecoderResult decode(AztecDetectorResult detectorResult) throws FormatException {
ddata = detectorResult;
BitMatrix matrix = detectorResult.getBits();
boolean[] rawbits = extractBits(matrix);
boolean[] correctedBits = correctBits(rawbits);
String result = getEncodedData(correctedBits);
return new DecoderResult(null, result, null, null);
}
示例4: decode
import com.google.zxing.aztec.AztecDetectorResult; //导入方法依赖的package包/类
public DecoderResult decode(AztecDetectorResult aztecdetectorresult)
{
l = aztecdetectorresult;
BitMatrix bitmatrix = aztecdetectorresult.getBits();
if (!l.isCompact())
{
bitmatrix = b(l.getBits());
}
return new DecoderResult(null, a(b(a(bitmatrix))), null, null);
}
示例5: decode
import com.google.zxing.aztec.AztecDetectorResult; //导入方法依赖的package包/类
public DecoderResult decode(AztecDetectorResult detectorResult) throws FormatException {
ddata = detectorResult;
BitMatrix matrix = detectorResult.getBits();
boolean[] rawbits = extractBits(matrix);
boolean[] correctedBits = correctBits(rawbits);
byte[] rawBytes = convertBoolArrayToByteArray(correctedBits);
String result = getEncodedData(correctedBits);
DecoderResult decoderResult = new DecoderResult(rawBytes, result, null, null);
decoderResult.setNumBits(correctedBits.length);
return decoderResult;
}
示例6: decode
import com.google.zxing.aztec.AztecDetectorResult; //导入方法依赖的package包/类
public DecoderResult decode(AztecDetectorResult detectorResult) throws FormatException {
ddata = detectorResult;
BitMatrix matrix = detectorResult.getBits();
if (!ddata.isCompact()) {
matrix = removeDashedLines(ddata.getBits());
}
boolean[] rawbits = extractBits(matrix);
boolean[] correctedBits = correctBits(rawbits);
String result = getEncodedData(correctedBits);
return new DecoderResult(null, result, null, null);
}
示例7: decode
import com.google.zxing.aztec.AztecDetectorResult; //导入方法依赖的package包/类
public DecoderResult decode(AztecDetectorResult detectorResult) throws FormatException {
ddata = detectorResult;
BitMatrix matrix = detectorResult.getBits();
if (!ddata.isCompact()) {
matrix = removeDashedLines(ddata.getBits());
}
boolean[] rawbits = extractBits(matrix);
boolean[] correctedBits = correctBits(rawbits);
String result = getEncodedData(correctedBits);
return new DecoderResult(null, result, null, null);
}