我在我的项目中使用 tesseract 和 opencv。
但问题是当我使用opencv显示图像时,只出现图像窗口,但图像没有出现,完全是灰色的。
如果我注释了与 tesseract 相关的代码,opencv 可以正确显示图像。
太奇怪了。有谁能够帮助我?
提前致谢!
#include "stdafx.h"
#include <string>
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;
int main() {
// [1]
const char* imagename = "phototest.tif";
Mat img = imread(imagename);
if(img.empty())
{
fprintf(stderr, "Can not load image %s\n", imagename);
return -1;
}
imshow("image", img);
tesseract::TessBaseAPI *myOCR =
new tesseract::TessBaseAPI();
// [2]
printf("Tesseract-ocr version: %s\n",
myOCR->Version());
printf("Leptonica version: %s\n",
getLeptonicaVersion());
// [3]
if (myOCR->Init(NULL, "eng")) {
fprintf(stderr, "Could not initialize tesseract.\n");
exit(1);
}
// [4]
Pix *pix = pixRead("phototest.tif");
myOCR->SetImage(pix);
// [5]
char* outText = myOCR->GetUTF8Text();
printf("OCR output:\n\n");
printf(outText);
// [6]
myOCR->Clear();
myOCR->End();
delete [] outText;
pixDestroy(&pix);
system("pause");
return 0;
}