Browse Source

README更新,编译需要PHPCPP

pull/1/MERGE
hao 6 years ago
parent
commit
21a3eaec89
1 changed files with 18 additions and 3 deletions
  1. +18
    -3
      Prj-PHP/README.MD

+ 18
- 3
Prj-PHP/README.MD View File

@@ -1,6 +1,24 @@

# Prj-PHP # Prj-PHP

HyperLPR 在PHP扩展程序中的实现,核心代码拷贝了 Prj-Linux 中庾金科大牛的代码。我做的这部分工作主要是配置编译成PHP扩展程序。 HyperLPR 在PHP扩展程序中的实现,核心代码拷贝了 Prj-Linux 中庾金科大牛的代码。我做的这部分工作主要是配置编译成PHP扩展程序。


## CPP 依赖

+ Opencv 3.3
+ PHPCPP

## Linux/Mac 编译

```bash
mkdir build
cd build
cmake ../
make -j
```

## DEMO

```php ```php
$path = realpath("demo.png"); $path = realpath("demo.png");
$res = platescan($path); $res = platescan($path);
@@ -11,6 +29,3 @@ var_dump($res); // string(9) "苏ED0N19"
最终实现上边这样的PHP调用 最终实现上边这样的PHP调用


![image](./tests/demo.png) ![image](./tests/demo.png)


#### 感谢各位大牛!

Loading…
Cancel
Save