williamfzc / findit

find target icon on your picture, and get its position
https://williamfzc.github.io/findit/
MIT License
109 stars 36 forks source link

服务化 #3

Closed williamfzc closed 5 years ago

williamfzc commented 5 years ago

为了后续更好的应用,findit的理论形态应该是配置在服务器上。主要有两个问题:

image

通过配置,findit-client 能够连接到本地或者远程的 findit-server,以适应不同的需求。换言之,你可以在其他设备上使用client直接调用远程的findit,而本地无需opencv环境。

需要完成的部分:

williamfzc commented 5 years ago

服务器端已经完成,强烈建议用docker与docker-compose来部署findit服务。参考docker-compose.yml

完整服务包括三个部分:

你只需要:

git clone https://github.com/williamfzc/findit.git
cd findit
docker-compose up -d
image

You will love this :)

williamfzc commented 5 years ago

Finished. https://github.com/williamfzc/findit/wiki/以-Client-Server-模式部署