Has anyone had success using a recent version of ZXing under C#?

I'm attempting to use ZXing to process images I'm pulling in from the webcam, ideally in "real"time, but all the examples I can find for using ZXing to decode appear to be outdated. Starting to go a little nuts.

As far as I can tell, if I can get my cam image to be a BinaryBitmap I'll be fine, but none of the methods/classes used for converting in the examples I can find seem to exist anymore.

Here's the code currently causing me a headache:

Binarizer barney = new HybridBinarizer(new LuminanceSource(image));
Result result = reader.decode(new BinaryBitmap(barney));

LuminanceSource seems to be my speed bump right now. I can't find the appropriate class to instantiate under C#, BufferedLuminance and AWTImageLuminanceSource don't seem to exist under C#.

Anyone able to point out what I should be doing...?

I'm running Win7 64b, ZXing 1.7, VS2008.

link|improve this question

80% accept rate
1  
Did you check the other questions on this topic here at Stack Overflow? – GertArnold Jan 31 at 8:35
I have taken a look at the other ZXing. As far as I can see they all either use an older version of ZXing which supports BufferedLuminance or AWT or they don't show the code for capturing the image into the reader. Will take another browse to be sure... – Stuart P Jan 31 at 8:37
feedback

2 Answers

up vote 3 down vote accepted

I've used the C# port recently. LuminanceSource is an abstract class.

You need to either:

  • subclass LuminanceSource and implement its methods, or
  • utilize the already included RGBLuminanceSource class instead.

I've used the latter to success.

link|improve this answer
Thanks. Stumbled upon RGBLuminanceSource in this thread: stackoverflow.com/questions/4672246/zxing-in-c-sharp-using-ikvm Snd was just about to update when I saw your reply. Cheers. – Stuart P Jan 31 at 8:44
feedback

Take a look to my project

http://windowqr.codeplex.com/

It can scan qr codes from a webcam and it uses zxing from the qr decodification.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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