Michael Jahn

Results 71 comments of Michael Jahn

The DataMatrix high level encoder selects the EDIFACT encoder (wrongly) which doesn't support 0x0D. I'm not very familar with the DataMatrix encoder. Not sure how to fix it. But in...

Do you use the newest version of ZXing.Net? Can you provide the source code of your zxing integration and a sample dump of an image which you try to decode?

I need the content of the variables "barcodeBitmap", "arCameraTexture.width" and "arCameraTexture.height" for further investigation.

Sorry, that doesn't help. I need a binary dump file of the contents of the "barcodeBitmap" variable. Something like this: ``` ... byte[] barcodeBitmap = arCameraTexture.GetRawTextureData(); System.IO.File.WriteAllBytes(".bin", barcodeBitmap); LuminanceSource source...

The following image is "seen" by the decoder. It represents the luminance values. The qr code seems to be too small and too blurry. Is there a chance that you...

I have no idea, why the heuristics fail. I zoomed into the image up to 110% at it works. Sorry, no idea how to fix this.

I'm not sure if ZXing.Net is a good solution for your use case. ZXing (the java version, which ZXing.Net is based on) in general was developed for mobile phones. In...

I'm not sure. Perhaps the optimizer threw away the empty code block. Your code snippet seems to be incomplete. I don't see the Decode call.

Why do you do this within the method Start? ``` BarcodeReader barcodeReader = new BarcodeReader(); barcodeReader.AutoRotate = true; reader = new BarcodeReader(); ``` I think you should better write it...