-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
58 changed files
with
1,855 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
cmake_minimum_required (VERSION 3.8) | ||
project (main) | ||
MESSAGE( STATUS "PROJECT_NAME: " ${PROJECT_NAME} ) | ||
find_package(OpenCV REQUIRED) | ||
|
||
if (CMAKE_HOST_WIN32) | ||
set(WINDOWS 1) | ||
elseif(CMAKE_HOST_UNIX) | ||
set(LINUX 1) | ||
endif() | ||
|
||
# Check compiler architecture | ||
if(CMAKE_CL_64) | ||
MESSAGE( STATUS ">>>>>>>> 64-bit") | ||
else() | ||
MESSAGE( STATUS ">>>>>>>> 32-bit") | ||
endif() | ||
|
||
# Check compilers | ||
MESSAGE( STATUS ">>>>>>>> ${CMAKE_CXX_COMPILER_ID}") | ||
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") | ||
MESSAGE( STATUS "Using Clang" ) | ||
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") | ||
MESSAGE( STATUS "Using GNU" ) | ||
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Intel") | ||
MESSAGE( STATUS "Using Intel" ) | ||
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") | ||
MESSAGE( STATUS "Using MSVC" ) | ||
endif() | ||
|
||
# Set RPATH | ||
if(CMAKE_HOST_UNIX) | ||
if(CMAKE_HOST_APPLE) | ||
SET(CMAKE_CXX_FLAGS "-std=c++11 -O3 -Wl,-rpath,@loader_path") | ||
SET(CMAKE_INSTALL_RPATH "@loader_path") | ||
else() | ||
SET(CMAKE_CXX_FLAGS "-std=c++11 -O3 -Wl,-rpath=$ORIGIN") | ||
SET(CMAKE_INSTALL_RPATH "$ORIGIN") | ||
endif() | ||
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) | ||
endif() | ||
|
||
# Add search path for include and lib files | ||
MESSAGE( STATUS "CPU architecture ${CMAKE_SYSTEM_PROCESSOR}" ) | ||
if(WINDOWS) | ||
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") | ||
link_directories("${PROJECT_SOURCE_DIR}/../sdk/platforms/win/bin/") | ||
else() | ||
link_directories("${PROJECT_SOURCE_DIR}/../sdk/platforms/win/lib/") | ||
endif() | ||
elseif(LINUX) | ||
if (CMAKE_SYSTEM_PROCESSOR STREQUAL x86_64) | ||
MESSAGE( STATUS "Link directory: ${PROJECT_SOURCE_DIR}/../sdk/platforms/linux/" ) | ||
link_directories("${PROJECT_SOURCE_DIR}/../sdk/platforms/linux/") | ||
endif() | ||
endif() | ||
include_directories("${PROJECT_BINARY_DIR}" "${PROJECT_SOURCE_DIR}/../sdk/include/") | ||
|
||
# Add the executable | ||
add_executable(${PROJECT_NAME} main.cxx) | ||
if(WINDOWS) | ||
if(CMAKE_CL_64) | ||
target_link_libraries (${PROJECT_NAME} "DynamsoftCorex64" "DynamsoftLicensex64" "DynamsoftCaptureVisionRouterx64" "DynamsoftUtilityx64" ${OpenCV_LIBS}) | ||
endif() | ||
else() | ||
target_link_libraries (${PROJECT_NAME} "DynamsoftCore" "DynamsoftLicense" "DynamsoftCaptureVisionRouter" "DynamsoftUtility" pthread ${OpenCV_LIBS}) | ||
endif() | ||
|
||
if(WINDOWS) | ||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy_directory | ||
"${PROJECT_SOURCE_DIR}/../sdk/platforms/win/bin/" | ||
$<TARGET_FILE_DIR:main>) | ||
endif() | ||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy | ||
"${PROJECT_SOURCE_DIR}/../sdk/DBR-PresetTemplates.json" | ||
$<TARGET_FILE_DIR:main>/DBR-PresetTemplates.json) | ||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy | ||
"${PROJECT_SOURCE_DIR}/../sdk/DLR-PresetTemplates.json" | ||
$<TARGET_FILE_DIR:main>/DLR-PresetTemplates.json) | ||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy | ||
"${PROJECT_SOURCE_DIR}/../sdk/MRZ.json" | ||
$<TARGET_FILE_DIR:main>/MRZ.json) | ||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy | ||
"${PROJECT_SOURCE_DIR}/../sdk/ConfusableChars.data" | ||
$<TARGET_FILE_DIR:main>/ConfusableChars.data) | ||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E make_directory $<TARGET_FILE_DIR:main>/CharacterModel | ||
COMMAND ${CMAKE_COMMAND} -E copy_directory | ||
"${PROJECT_SOURCE_DIR}/../sdk/CharacterModel" | ||
$<TARGET_FILE_DIR:main>/CharacterModel) | ||
|
||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E make_directory $<TARGET_FILE_DIR:main>/ParserResources | ||
COMMAND ${CMAKE_COMMAND} -E copy_directory | ||
"${PROJECT_SOURCE_DIR}/../sdk/ParserResources" | ||
$<TARGET_FILE_DIR:main>/ParserResources) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Desktop Passport MRZ Scanner for Windows and Linux | ||
This C/C++ sample demonstrates how to implement **MRZ (Machine Readable Zone)** recognition using the Dynamsoft Capture Vision SDK. | ||
|
||
## Prerequisites | ||
- [CMake](https://cmake.org/download/) | ||
- [OpenCV 4.5.0](https://opencv.org/releases/) | ||
- [Dynamsoft Capture Vision Trial License](https://www.dynamsoft.com/customer/license/trialLicense/?product=dcv&package=cross-platform) | ||
|
||
|
||
## Getting Started | ||
1. Set the license key in `main.cxx`: | ||
|
||
```cpp | ||
iRet = CLicenseManager::InitLicense("LICENSE-KEY", szErrorMsg, 256); | ||
``` | ||
|
||
2. Build and run the application: | ||
|
||
``` | ||
mkdir build | ||
cd build | ||
cmake .. | ||
cmake --build . | ||
``` | ||
|
||
## Blog | ||
[Passport MRZ Recognition with Dynamsoft C++ OCR SDK](https://www.dynamsoft.com/codepool/passport-mrz-recognition-cpp-windows-linux.html) |
Oops, something went wrong.