Skip to content

Dynamsoft-Jerson/label-recognition-ocr

Repository files navigation

Label Recognition Samples

DLR (Dynamsoft Label Recognition) C/C++ sample code for Windows and Linux.

Version

1.0 Beta

Requirements

License

Get a free trial license and save it to license.txt.

Contact Us

https://www.dynamsoft.com/Company/Contact.aspx

Windows

  1. Copy *.lib files to platforms/win/lib folder and copy *.dll files to platforms/win/bin folder.

  2. Create a build folder:

    mkdir build
    cd build
    
  3. Configure the project.

    • Command-line app

      cmake -DCMAKE_GENERATOR_PLATFORM=x64 ..
      
    • GUI App with OpenCV

      cmake -DCMAKE_GENERATOR_PLATFORM=x64 -DENABLE_OPENCV=TRUE ..
      
  4. Build and run the app:

    cmake --build . --config release
    Release\LabelRecognition license.txt
    

    label recognition OCR

Linux

  1. Install CMake:

    sudo apt-get install cmake
    
  2. Copy *.so files to platforms/linux folder.

  3. Create a build folder:

    mkdir build
    cd build
    
  4. Configure the project.

    • Command-line app

      cmake ..
      
    • GUI App with OpenCV

      cmake -DENABLE_OPENCV=TRUE ..
      
  5. Build and run the app:

    cmake --build . --config release
    Release\LabelRecognition license.txt
    

Blog

Text Recognition with Dynamsoft's OCR SDK

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published