-
Notifications
You must be signed in to change notification settings - Fork 0
/
Anpr.cpp
59 lines (43 loc) · 921 Bytes
/
Anpr.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Anpr.cpp
*
* Created on: 17.05.2013
* Author: tmd
*/
#include "../include/Anpr.h"
#include "gximage.h"
#include "cmanpr.h"
// Implementierung der Konstruktoren
Anpr::Anpr()
{
nummernSchild = "";
}
Anpr::~Anpr(){}
// Implementierung der Methoden
void Anpr::setNummernschild(string img)
{
const char * dateipfad= img.c_str();
try {
// ANPR-Objekt erzeugen
cmAnpr anpr("default");
// Bild-Objekt erzeugen
gxImage image("default");
// Bild laden
image.Load(dateipfad);
// sucht nach dem ersten zu findenen Kennzeichen im Bild
if(anpr.FindFirst(image)) {
nummernSchild = anpr.GetTextA();
} else {
nummernSchild = "";
}
} catch(gxError &e) {
nummernSchild = "";
// GX Exception abfangen
wcerr << L"GX Error occurred: " << e.GetErrorString() << L"\n";
}
this->nummernSchild = nummernSchild;
}
string Anpr::getNummernschild()
{
return this->nummernSchild;
}