decoding 2d bar code,why the performance is not well

Login to reply to this topic.
Sun, 2007-11-18 10:09
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 09:08
Joined: 2003-12-05
Forum posts: 587
Re: decoding 2d bar code,why the performance is not well

It seems really that the work is done in iCodeSearch->Recognise(), based on your code shown here you cannot say anything about performance or how to improve it.

  • Login to reply to this topic.