这里有人处理过libanpr吗?这是一个用于自动车牌识别的库。我试图编译它,但我有很多我无法解决的错误。我什至找不到一页文档!有人可以帮忙吗?
编辑:
解决方案。
我无法在 Linux 下编译它,但在 windows 下我可以。现在我的问题是关于这个库既没有文档也没有讨论!我尝试了下一个代码,但在执行时它崩溃了,当我调试(逐步)时,代码可以工作,但我不能用这种方式来获得结果。我无法操作代码,因为我们不知道任何类或任何函数!
有没有人有兴趣分享我以找到解决方案?
#include "../source/AvcodecImgSrc.h"
#include "../locate/CarLocate.h"
#include "../plate/PlateCut.h"
#include "../ocr/PlateOcr.h"
#include "../exception/Exception.h"
static void show(const std::vector<OcrData>& plates) {
for (int i=0;i<plates.size();i++)
printf("%s\n", plates[i].getPlate().c_str());
}
int main(int argc, const char* argv[]) {
try {
AvcodecImgSrc src(argv[1], 400, 3450);
CarLocate car(2048/4, 1536/4, 8, 5);
PlateCut plate;
PlateOcr ocr;
while (src.hasNext()) {
NTCImg img = src.next();
int w = img.dimx();
int h = img.dimy();
int w2 = w/2;
int h2 = h/2;
NTCImg img2 = img.getScale(w2, h2);
int w4 = w/4;
int h4 = h/4;
NTCImg img4g = img.getScaleG(w4, h4);
std::vector<CarData> cars = car.locate(img4g);
for (int i=0;i<cars.size();i++) {
printf("CAR[%dx%d]!\n", cars[i].getRect().getWidth(), cars[i].getRect().getHeight());
}
std::vector<PlateData> plates = plate.cut(img2, CarData::scale2(cars));
for (int i=0;i<plates.size();i++) {
printf("PLATE[%dx%d]!\n", plates[i].getRect().getWidth(), plates[i].getRect().getHeight());
}
//show(ocr.run(plate.cut(cars)));
}
} catch (const Exception& ex) {
printf("Exception: %s\n", ex.getMsg().c_str());
} catch (const Err& err) {
printf("Err!\n");
}
}