Skip to content

Commit

Permalink
Algoritmo funcionando en el servidor web
Browse files Browse the repository at this point in the history
  • Loading branch information
slbejaranom committed Feb 26, 2021
1 parent 4185be3 commit 14e7bee
Show file tree
Hide file tree
Showing 14 changed files with 591 additions and 41 deletions.
9 changes: 7 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ services:
interfaz-web:
build: ./webPage
volumes:
- ./webPage:/usr/src/app
- ./webPage:/usr/src/app
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"

ports:
- 3000:3000
depends_on:
Expand All @@ -14,7 +17,9 @@ services:
scriptfinal:
build: ./scriptService
volumes:
- ./scriptService:/usr/src/scriptService
- ./scriptService:/usr/src/scriptService
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
devices:
- /dev/video0:/dev/video0
- /dev/bus/usb:/dev/bus/usb
Expand Down
Binary file added scriptService/modelo_Tipo_Transfer.tflite
Binary file not shown.
Binary file added scriptService/modelo_VnV.tflite
Binary file not shown.
5 changes: 4 additions & 1 deletion scriptService/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
cmake
imutils
flask
flask-cors
tensorflow==2.4.0
opencv-contrib-python==4.4.0.46
dlib==19.21.1
numpy==1.19.5
scipy==1.6.0
scipy==1.6.0
pymongo
Loading

0 comments on commit 14e7bee

Please sign in to comment.