You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@msva
For auto-detecting the best illumination of the barcode-image (by the "business" S/W) it would be nice to return the error-counter from the decoding, eg (and removing the non-used argument "fix"):
dmtxreedsol.c
extern DmtxPassFail
//RsDecode(unsigned char *code, int sizeIdx, int fix)
RsDecode(unsigned char *code, int sizeIdx, int* errorCount )
...
repairable = RsFindErrorLocatorPoly(&elp, &syn, blockErrorWords, blockMaxCorrectable, errorCount );
-> where:
static DmtxBoolean
RsFindErrorLocatorPoly(DmtxByteList *elpOut, const DmtxByteList *syn, int errorWordCount, int maxCorrectable, int* errors )
...
// The number of error codewords aded as an output parameter
*errors = lambda;
return (lambda <= maxCorrectable) ? DmtxTrue : DmtxFalse;
}
The text was updated successfully, but these errors were encountered:
@msva
For auto-detecting the best illumination of the barcode-image (by the "business" S/W) it would be nice to return the error-counter from the decoding, eg (and removing the non-used argument "fix"):
-> where:
The text was updated successfully, but these errors were encountered: