English | 한국어 | 日本語 | Tiếng Việt |
Ruby example
https://github.com/bobhyun/TS-ANPR/tree/main/examples/Ruby/anpr
1. Copying the Engine Files
[Note] In this example, the engine file is extracted to the examples/bin/ directory to share it with other examples. However, for actual deployment, the engine file is typically copied to the directory where the application’s executable file is located.
-
For Windows x86 64-bit Extract the engine file to the
examples/bin/linux-x86_64
directorytar xvf tsanpr-linux-x86_64.tar.xz
- For Linux x86 64-bit
Extract the engine file to the
examples/bin/linux-x86_64
directorytar xvf tsanpr-linux-x86_64.tar.xz
- For Linux arm 64-bit
Extract the engine file to the
examples/bin/linux-aarch64
directorytar xvf tsanpr-linux-aarch64.tar.xz
- Directory structure
examples ├── bin │ ├─── windows-x86_64 # engine directory for windows (x86_64) │ │ ├── libtsanpr.so │ │ ├── tsanpr-2505M.eon │ │ └── tshelper │ ├── linux-x86_64 # engine directory for linux (x86_64) │ │ ├── libtsanpr.so │ │ ├── tsanpr-2505M.eon │ │ └── tshelper │ └── linux-aarch64 # engine directory for linux (arm64) │ ├── libtsanpr.so │ ├── tsanpr-2505M.eon │ └── tshelper ├── img # image directory └── Ruby └── anpr # source directory ├── anpr.rb └── lib └── tsanpr.rb
2. Dependency Installation and Execution
-
Dependency Installation
-
Windows
# It is recommended to use Chocolatey. choco install vips gem install ffi ruby-vips
-
Linux
# Debian / Ubuntu Linux sudo apt-get install -y libvips # Oracle Linux / RedHat (RHEL) / CentOS sudo yum install vips sudo gem install ffi ruby-vips
-
-
How to Run
ruby anpr.rb