07-30-2013 05:17 AM
Harlo..... recently i am using the labview example, Read QR code.vi.... i found out something weird that when i rotate the image to 45 degree and rotate it back to the original position... the vi pop out an error message that :
But this image initially can be decode by this vi.... the weird thing is that after rotate, even rotate back to the original position... it can not done the decoding process... do anyone knows what is happening here???
This is the image that i used to decode....
Solved! Go to Solution.
07-30-2013 05:27 AM
Typically the error presented by labview arises when you try do some operation on an image type that is inappropriate for the operation.
image types are:
RGB 32
RGB 64
U8
I8
U16
I16
etc...
and refers to the datatype used for a pixel
when rotating you typically supply a destination image, and my guess is that the dst image is of a different type than what is rotated...
hence the output of the rotation is now of the dst image type, instead of the input type.
to avoid this, when creating the dst image, use the "get image info" to get the type of the input image, and then wire that to the "create image"
08-01-2013 12:01 AM
Thanks a lots~~ ZCuba
08-18-2013 10:21 PM
thanks for sharing!
i have several years' experience in generating barcode, i think some turioals and articles might be helpful. you can google QR code, and some articles can be available. i can give you some if you need .
this is the tutorial of generating qr code in vb , you can ,make it as reference and the tool if free for 30 days. good luck!
09-29-2013 09:07 PM
We are talking about reading QR Code, not about generating qr code. I think qr code reading and qr code generation are quite different.