Karman de Lange

Results 71 comments of Karman de Lange

https://online-barcode-reader.inliteresearch.com/ https://demo.dynamsoft.com/dbr/barcodereaderdemo.aspx

pattern [8, 1, 2, 1, 1, 1, 1, 3] seems to match, but don't have time now to figure why not decoding ..

Ok, dropped the MAX_INDIVIDUAL_VARIANCE to 160 .. , seem to decode now with above change .. I will have to test few more barcodes .. seems like the very poorly...

@rmhrisk Not 100% sure , I;m just tasked with making a function to take a uploaded image of the license disk and decode it so string so string can be...

ok ... not working with other barcodes. Its giving to many error in errorcorrection. will look into this other time

@rmhrisk Ok, made progress .. its reads the first row 100%. The next row the values are stored, but rownumber is -1 .. I will debug some more later Sounds...

Ok ... just because i'm debugging Here the results from zxing vs Inlite .. now to go figure out why its reading first few columns correct and then loosing the...

@rmhrisk Any idea what ZXing.PDF417.Internal.PDF417ScanningDecoder.CODEWORD_SKEW_SIZE does ? I thought its the skewness of the row and bigger allow more skew? Reason, changed it to 1 now and decodes barcode better....

Found another issue ..... shift right (>>) in JS only support 32 bit .. so decodedBytes.push((value >> (8 * (5 - j1)))); drops the first bits and corrupts data. Busy...

> > > Just a hint: [ByteStream.js](https://github.com/PeculiarVentures/ByteStream.js) has class BitStream which supports right and left shifting for unlimited data. Thanks ... trying to use BigInteger's shiftRight function seeing its already...