ChuckM
Wed Mar 05 22:36:01 CST 2008
Thanks everyone for the suggestions. Sorry for the delayed followup, been
sick...
Basically, to be more specific, this is for event management, with a little
more advanced features/future proofing/integrating into a live DB via WiFi.
Want a platform I can customize on a per event basis.
The closest app I can point to that does exactly the barcoding I'm looking
for it is
http://www.i-nigma.com ... I don't know the developer so no way to
get how they did it. Video capture based, no need for steady hands or
pressing a "capture button". Just put it in the cross hairs.
I'd love it to work with every Windows Mobile device with a video / camera
just like i-nigma.com appears to (I'm assuming)... this allows me to change
vendors when needed.
Basically, I want to print badges, give scanners to booths at the event, and
track whom talked to whom and what they talked about, time stamped.... maybe
even some notes. Store to SD Card. Sync post event and push that data into a
large database.
I don't want a "laser scanner" add-on, since I think this app does a great
job without it. As well, that would increase the costs too significantly.
There are basic data collector devices I have seen, no screen, just a
scanner, but I don't think I want to go the route others have.
I have seriously considered using laptops with CueCats (or similar), but
that could get ugly when you have a booth with 10 people in it and having to
walk through the booth.
"queisser" wrote:
> On Feb 28, 11:11 am, cmarino...@yahoo.com wrote:
> > For many years I have wanted a solution to a problem I have by using
> > my PocketPC as a Barcode Scanner. Some of the latest nifty solutions I
> > have seen lately have little applications that use the built-in Camera
> > (in what appears to be in video mode, not still camera mode) to scan a
> > 2D barcode, which makes a chime sound then passes a user to a web site
> > on the PPC (the web site being encoded in the 2D Barcode).
> >
> > I would love to pretty much do the exact same thing except capture the
> > image (save the barcode), display the decoded text (and write it to a
> > text file with a time stamp) and trigger audio recording. Basically
> > using the device for capturing a tonn of barcodes while recording
> > audio.
> >
> > Does anyone know where a good place to start for this would be for
> > Visual Studio 2008? .NET (C# or VB.NET) development is my forte.
> >
> > Are there any hardware considerations I have to keep mindful off? I
> > will need several PocketPC's running this and have to collect the
> > stored data at the end of the day.
> >
> > ANY suggestions or directions would be greatly appreciated!
> >
> > ChuckM
>
> For the iPAQ there's a non-free Camera SDK (
http://h71018.www7.hp.com/
> hp_ids/register/membershipinfo.aspx) which allows you to put the
> camera in preview mode, capture preview frames and then decide when
> it's time to capture and save a frame. Not sure if something similar
> is available for generic PocketPC cameras. So you could do something
> like this:
>
> - put camera in preview
> - intercept each frame, determine whether it's a potential barcode
> - when potential barcode frame is captured stop the preview and
> capture frame
> - decode barcode, save image and barcode contents
>
> The hard part is determining whether there's a barcode in view and the
> decoding. I don't know of a powerful barcode decoding library that
> could do the work of a commercial scanner. For simple codes it
> shouldn't be too hard but for 2D and dense barcodes you might be out
> of luck.
>
> Andrew (HP)
>