mirror of https://github.com/OpenIPC/wiki.git
51 lines
1.3 KiB
Markdown
51 lines
1.3 KiB
Markdown
## Overview
|
|
|
|
Each SoC manufacturer has its own software to adjust picture quality:
|
|
|
|
* HiSilicon - PQTools
|
|
* Novatek - isptool
|
|
* Fullhan - Coolview
|
|
|
|
## HiSilicon based boards
|
|
|
|
### EV300 family
|
|
|
|
#### Run server module on OpenIPC boards
|
|
|
|
```console
|
|
$ pqtools
|
|
|
|
.....
|
|
|
|
dev mounted
|
|
libs mounted
|
|
pqtools:begin to run
|
|
the s32Result is 1
|
|
g_bUseSpecAWB is 0
|
|
port is : 4321
|
|
|
|
<HI_PQT_Network_Init>(1486)bind ok!
|
|
pqtools:server(port:4321)begin to listen
|
|
pqtools:Waiting for connection from client!
|
|
```
|
|
|
|
#### Run server module on XM boards
|
|
|
|
For sake of simplicity we wse public NFS server:
|
|
|
|
```console
|
|
$ mount -o nolock 95.217.179.189:/srv/ro /utils/
|
|
$ cd /utils/ittb_ev300_V1.0.1.2/
|
|
$ LD_LIBRARY_PATH=lib ./ittb_control
|
|
|
|
...
|
|
pqtools:Waiting for connection from client!
|
|
```
|
|
|
|
#### Run client software on Windows
|
|
|
|
* [Download](https://ssd.mathworks.com/supportfiles/MCR_Runtime/R2012a/MCR_R2012a_win32_installer.exe) and install MATLAB Compiler Runtime.
|
|
|
|
* [Download PQTools](https://drive.google.com/file/d/1c4XZRbJKXjMBwfMJaLl5jUPcVqMbO936/view?usp=sharing) and extract a zip archive somewhere on your desktop. Launch `HiPQTools.exe`, select `Hi3516EV200_V1.0.1.2`, type IP address of your camera and click `OK`
|
|
|
|
Use [the manual](https://drive.google.com/file/d/1mY1lXMZVNz2Ia5CPvTF-K-907eIioSYU/view?usp=sharing) as a reference. |