decodeing 2d barcode ,why the performance is not well

Login to reply to this topic.
Mon, 2007-11-19 01:50
Joined: 2007-11-18
Forum posts: 3

now,i am developing a 2d barcode system,
and the performance is not very well,i think it can be improved,because some one in my company
have done this,but he is not in the company now.i have the decode alogrithm,but not the framework
can any one suggest a good framework.my code is below.

my devices is N73.
first start view finder with size(240,180)
void CCameraCaptureEngine::ViewFinderFrameReady(CFbsBitmap& aFrame)
{
TUint8* dataAddr=(TUint8*)(aFrame.DataAddress());
iCodeSearch->InputData(dataAddr,240,180,32);
TInt result=iCodeSearch->Recognise();
if(result==1)
{
AsyncStateChange(ERecognizeSucc);
}
}

i found it is not very well,


Mon, 2007-11-19 13:13
Joined: 2004-11-29
Forum posts: 1232
Re: decodeing 2d barcode ,why the performance is not well

Try find the right sub-forum to post in, and only post there. (no double post)

Also, please make your questions possible to answer.

Right now its a bit like you are showing a picture of a house, taken from 500 meters away, and ask us what is wrong with the plumbing...

  • Login to reply to this topic.