diff --git a/.env b/.env new file mode 100644 index 0000000..97856ba --- /dev/null +++ b/.env @@ -0,0 +1,3 @@ +# .env file +TAG=v1.0.0 +IMAGE_NAME=deepstream-pose-face \ No newline at end of file diff --git a/data/configuration.json b/data/configuration.json index 5419c55..62ba344 100644 --- a/data/configuration.json +++ b/data/configuration.json @@ -17,7 +17,7 @@ "host": "0.0.0.0" }, "pgie_batch_size": 16, - "threshold_body_detection": 0.05, + "threshold_body_detection": 0.5, "inferserver_pgie_config_file": "../data/inferserver/primary_detector_config.txt", "PGIE_NET_WIDTH": 640, "PGIE_NET_HEIGHT": 640, @@ -67,6 +67,6 @@ "topic_redis": "redis_stream" }, "compression_coefficient": 0.125, - "write_full_frame_to_disk": true, - "write_cropped_objects_to_disk": true + "write_full_frame_to_disk": false, + "write_cropped_objects_to_disk": false } \ No newline at end of file diff --git a/data/nvmsgboker_configs/msgbroker_config.txt b/data/nvmsgboker_configs/msgbroker_config.txt index a9a877b..585d492 100644 --- a/data/nvmsgboker_configs/msgbroker_config.txt +++ b/data/nvmsgboker_configs/msgbroker_config.txt @@ -1,7 +1,7 @@ [message-broker] # Redis-specific options hostname=localhost -port=9736 +port=6379 streamsize=10000 payloadkey=metadata consumergroup=mygroup diff --git a/docker-compose.yml b/docker-compose.yml index 4400cc8..5c17176 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,6 +11,7 @@ services: command: ["redis-server", "/usr/local/etc/redis/redis.conf"] deepstream-app: build: . + image: ${IMAGE_NAME}:${TAG} depends_on: - redis container_name: deepstream_with_triton diff --git a/redis.conf b/redis.conf index 256cb23..e94ca13 100644 --- a/redis.conf +++ b/redis.conf @@ -1,2 +1,2 @@ -port 9736 +port 6379 bind 0.0.0.0