Using the links on using the API and another how to get the image data into a format recognizable by Tesseract I wrote the following code and added the ...tesseract/ccmain/ directory in the Include Directories of my Visual C++ project (which is already used for OpenCV].
#include "baseapi.h"
..... [OpenCV code and such]....
//********************* Tesseract OCR function calls *********************************************
// create a temp buffer
unsigned char *buffer,*temp2;
buffer = new unsigned char[plate->width*plate->height*plate->nChannels];
//'plate' is an IplImage*
temp2 = buffer;
// pointer to imageData
unsigned char *temp1 = (unsigned char*) plate->imageData;
// copy imagedata to buffer row by row
for(i=0;i<plate->height;i++)
{
memcpy(temp2, temp1, plate->width*plate->nChannels);
// imageData jump to next line
temp1 = temp1 + plate->widthStep;
// buffer jump to next line
temp2 = temp2+ plate->width*plate->nChannels;
}
TessBaseAPI::InitWithLanguage(NULL, NULL, "eng", NULL, false, 0, NULL);
char* Text = TessBaseAPI::TesseractRect( buffer, 8, 8,
0, 0, plate->width,plate->height);
TessBaseAPI::End();
printf("\n%s", Text );
It compiled without any error but when I try to build it there's this error for every Tesseract-related function call: "Unresolved external symbol XXXXX." Am I making any mistake in the linking and including of Tesseract which doesn't show up on compiling but only on building?
Any help would be great.
EDIT: these are the error messages:
Linking...
image.obj : error LNK2001: unresolved external symbol "public: static void __cdecl TessBaseAPI::End(void)" (?End@TessBaseAPI@@SAXXZ)
image.obj : error LNK2001: unresolved external symbol "public: static char * __cdecl TessBaseAPI::TesseractRect(unsigned char const *,int,int,int,int,int,int)" (?TesseractRect@TessBaseAPI@@SAPADPBEHHHHHH@Z)
image.obj : error LNK2001: unresolved external symbol "public: static int __cdecl TessBaseAPI::InitWithLanguage(char const *,char const *,char const *,char const *,bool,int,char * * const)" (?InitWithLanguage@TessBaseAPI@@SAHPBD000_NHQAPAD@Z)
Debug/proj.exe : fatal error LNK1120: 3 unresolved externals
Error executing link.exe.
Creating browse info file...
proj.exe - 4 error(s), 0 warning(s)
