Evo 7.12.0-TM26061101
Evo LPR Engine
Loading...
Searching...
No Matches
SDK Contents

SDK contents can be found under its installation directory.

Note
Some contents could not exist depending on selected options during installation of SDK package.

Windows

Directory structure of Windows SDK is as follows.

  • 'Bin' directory : Contain DLL files to compose engine and several test programs
  • 'Data' Directory : Contain all kind of data files used while engine execution
  • 'Doc' Directory : Contain document files
  • 'Include Directory : Contain header files for C/C++
  • 'Lib' Directory : Contain DLL import libraries for C/C++
  • 'Python' Directory : Contain module files for Python
  • 'Versioin.txt' File : Contain information for current SDK

Linux

Directory structure of Linux SDK is as follows.

  • 'Bin' directory : Contain several test programs
  • 'Data' Directory : Contain all kind of data files used while engine execution
  • 'Doc' Directory : Contain document files
  • 'Include Directory : Contain header files for C/C++
  • 'Lib' Directory : Contain shared library files to compose engine
  • 'Python' Directory : Contain module files for Python
  • 'Versioin.txt' File : Contain information for current SDK

Bundled Programs

TestSSE

This program is intended for test of Evo Snapshot Engine. It is based on command line interface and placed under 'Bin' directory in the SDK's installation directory.

Usage
TestSSE --help
TestSSE --only_DDI
TestSSE [--DDI] [--data_dir=SDK_Data_Dir] [--DDD=DNN_Dev_Desc] [--DRM=DNN_Run_Mode] [--shuffle]
[--num_inst=Number_of_Instances] [--no_gui] [--img_fmt=Image_Format] [--search_rect=X,Y,W,H]
[--country=Country_Code] Image_Dir_1 [Image_Dir_2 ...]
Flags
Flags Explanation
--help show detailed usage description.
--only_DDI show DNN device information and terminate immediately
--DDI show DNN device information.
--data_dir set data directory used by the engine. By default, EVOENG_DATA_DIR environment variable is used.
--DDD set DNN Device Descriptor. The default is 'normal(accuracy):CPU'.
--DRM set DNN Run Mode. The default is 'latency'.
--shuffle shuffle the order of all the input image files.
--num_inst set number of created engine instances. The default is 1.
--no_gui disable GUI and output only text. When GUI is not supported, use this option.
--img_fmt set format of image files such as jpg, png, bmp, etc. The default is 'jpg'.
--search_rect set the rectangle on image to search for license plates. The default is '0,0,0,0' as the whole image.
--country set required country-code. The default is 'KOR'. For available country codes, refer to Country Codes.
Image_Dir set the directory path in which inupt image files exist. In case of multiple instances, could be specified by the ones.
Examples
TestSSE --only_DDI
TestSSE --data_dir="c:\Program Files\EvoEngineSDK\Data" --DRM=throughput --num_inst=3 d:\images
TestSSE --DDI --DDD=normal(accuracy):CPU,GPU --data_dir="c:\Program Files\EvoEngineSDK" --shuffle d:\images
TestSSE --no_gui --img_fmt=jpg --country=KOR --search_rect=30,10,640,480 d:\images
TestSSE --img_fmt=png --countr=KOR d:\images
TestSSE --num_inst=2 d:\images1 d:\images2

TestTSSE

This program is intended for test of Evo Triggered Snapshot Engine. It is based on command line interface and placed under 'Bin' directory in the SDK's installation directory.

Usage
TestTSSE --help
TestTSSE --only_DDI
TestTSSE [--DDI] [--data_dir=SDK_Data_Dir] [--DDD=DNN_Dev_Desc] [--DRM=DNN_Run_Mode]
[--search_rect=X,Y,W,H] [--country=Country_Code] [--output_dir=Image_Output_Dir] Video_Source_URL|Video_Source_File
Flags
Flags Explanation
--help show detailed usage description.
--only_DDI show DNN device information and termiate immediately
--DDI show DNN device information.
--data_dir set data directory used by the engine. By default, EVOENG_DATA_DIR environment variable is used.
--DDD set DNN Device Descriptor. The default is 'normal(accuracy):CPU'.
--DRM set DNN Run Mode. The default is 'latency'.
--search_rect set the rectangle on image to search for license plates. The default is '0,0,0,0' as the whole image.
--country set required country-code. The default is 'KOR'. For available country codes, refer to Country Codes.
--output_dir set directory for captured images to be saved to.
Video_Source specify URL of video streaming or path of video file.
Examples
TestTSSE --only_DDI
TestTSSE --data_dir="c:\Program Files\EvoEngineSDK\Data" --DRM=throughput --output_dir="d:\images" rtsp://192.168.1.100/media
TestTSSE --DDI --DDD=normal(performance):GPU --data_dir="c:\Program Files\EvoEngineSDK" --output_dir="d:\images" rtsp://192.168.1.100/media
TestTSSE --search_rect=30,10,640,480 --country=KOR --output_dir="d:\images" d:\samples.mp4

TestFAVE

This program is intended for test of Evo Fully Automatic Video Engine. It is based on command line interface and placed under 'Bin' directory in the SDK's installation directory.

Usage
TestFAVE --help
TestFAVE --only_DDI
TestFAVE [--DDI] [--data_dir=SDK_Data_Dir] [--DDD=DNN_Dev_Desc] [--DRM=DNN_Run_Mode]
[--search_rect=X,Y,W,H] [--country=Country_Code] [–output_dir=Image_Output_Dir]
[--gop_size=n] [--input_type=IPProto|GenICam] [Video_Source_URL|Video_Source_File]
Flags
Flags Explanation
--help show detailed usage description.
--only_DDI show DNN device information and termiate immediately.
--DDI show DNN device information.
--data_dir set data directory used by the engine. By default, EVOENG_DATA_DIR environment variable is used.
--DDD set DNN Device Descriptor. The default is empty to make the engine determine optimal one.
--DRM set DNN Run Mode. The default is 'latency'.
--search_rect set the rectangle on image to search for license plates. The default is '0,0,0,0' as the whole image.
--country set required country-code. The default is 'KOR'. For available country codes, refer to Country Codes.
--output_dir set directory for captured images to be saved to.
--gop_size set Group-Of-Pictures, The default is 1.
--input_type set source type of video stream. 'IPProto' if IP-Protocol based and 'GenICam' if GenICam based. the default is 'IPProto'.
Video_Source specify URL of video streaming or path of video file. In case of GenICam, this is ignored.
Examples
TestFAVE --only_DDI
TestFAVE --data_dir="c:\Program Files\EvoEngineSDK\Data" --DRM=throughput --output_dir="d:\images" rtsp://192.168.1.100/media
TestFAVE --DDI --data_dir="c:\Program Files\EvoEngineSDK" --output_dir="d:\images" --input_type=IPProto rtsp://192.168.1.100/media
TestFAVE --search_rect=30,10,640,480 --country=KOR --output_dir="d:\images" --gop_size=3 rtsp://192.168.1.100/media
TestFAVE --country=KOR --output_dir="d:\images" --input_type=GenICam
TestFAVE --DDI --DDD=normal(accuracy):CPU,GPU --country=KOR --output_dir="d:\images" --input_type=GenICam