I'm a beginer in QR code application and now I'm trying to develop application to detect QR code in the image. but i count not find any reference/sample in it.I'm using Zbar crossing zxing library and C# for this .kindly guide me in this or refer me some sample code.

link|improve this question
feedback

1 Answer

We've also experienced that it is hard to find working samples for zxing.Net. After combining some of them (I can't remember where we found them) and some trial and error we found this to be satisfactory (excerpt):

[DebuggerHidden]
string findQrCodeText(com.google.zxing.Reader decoder, Bitmap bitmap)
{
  var rgb = new RGBLuminanceSource(bitmap, bitmap.Width, bitmap.Height);
  var hybrid = new com.google.zxing.common.HybridBinarizer(rgb);
  com.google.zxing.BinaryBitmap binBitmap = new com.google.zxing.BinaryBitmap(hybrid);
  string decodedString = decoder.decode(binBitmap, null).Text;
  return decodedString;
}

which is called by

findQrCodeText(new com.google.zxing.qrcode.QRCodeReader(), bitmap);

We do some image voodoo around that to obtain just a little better results, but I'm afraid can't disclose that. This piece of code is the zxing part, though.

We added the DebuggerHiddenAttribute because zxing throws and swallows tons of exceptions internally, which is a real PITA when running in debug mode.

link|improve this answer
Thanks for your response.i tried your code its working great.but i'm trying image directly from the camera so its better if we detect qrcode befoure giving to the decode. so that i can mark and show the qrcode in the video. can you help me in this.... Thankyou Cholan – user1081305 Dec 5 '11 at 17:28
It's not totally clear to me what you mean, but this sounds like a different question. It is better to keep threads on-topic. Feel free to submit another question and fully clarify your intentions. – GertArnold Dec 5 '11 at 17:39
If this answer was helpful to you, you may want to mark it as accepted, as we do at StackOverflow. – GertArnold Dec 6 '11 at 10:48
sure i gave my feedback. thanks for your guidance. – user1081305 Dec 8 '11 at 10:30
Yes, that was OK, but what I mean is this. It helps you, because people always watch a poster's accept rate (and it helps my rep too :) ). – GertArnold Dec 8 '11 at 11:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.