|
Evo 7.12.0-TM26061101
Evo LPR Engine
|
Snapshot Engine class. More...
#include <SSEngine.hpp>
Public Member Functions | |
| virtual EvoRC | Init (const char *ccode, const char *dnnDevDesc)=0 |
| virtual void | Deinit (void)=0 |
| virtual LPI::Ptr | Run (const char *imgPath, EvoMS *mstg=NULL)=0 |
| virtual LPI::Ptr | Run (const EvoImage &img, EvoMS *mstg=NULL)=0 |
| virtual LPI::Ptr | Run (const void *encImg, size_t len, EvoMS *mstg=NULL)=0 |
| Public Member Functions inherited from Evo::Engine | |
| virtual EvoRC | SetParam (EvoParam param, const void *value)=0 |
| virtual EvoRC | GetParam (EvoParam param, void *value) const =0 |
Static Public Member Functions | |
| static EVOSSE_DECLSPEC Ptr | Create (void) |
SSEngine class provides funcionalities to detect and recognize all the license plates in single snapshot image.
|
static |
Create a engine instance
|
pure virtual |
Release all the resources in use. For further process, must be reinitialized.
|
pure virtual |
Initialize the engine.
| [in] | ccode | Required country-code. For details, refer to Country Codes. |
| [in] | dnnDevDesc | DNN Device Descriptor string. If NULL, the engine builds optimal descriptor automatically. For details, refer to DNN Device Descriptor. |
|
pure virtual |
Detect and recognize all the license plates in the input image.
| [in] | imgPath | Path to the image file. |
| [out] | mstg | For the usage of debuging. |
|
pure virtual |
Detect and recognize all the license plates on single image.
| [in] | img | Input image data. |
| [out] | mstg | For the usage of debuging. |
|
pure virtual |
Detect and recognize all the license plates on single image.
| [in] | encImg | Buffer to contain the input image encoded in JPEG, PNG, BMP and so on. |
| [in] | len | Length of the buffer in bytes. |
| [out] | mstg | For the usage of debuging. |