From 09a425ab7dfd12dda7ae16dbef75133ba562f9a9 Mon Sep 17 00:00:00 2001 From: "Katakol, Rohit" Date: Tue, 10 Mar 2026 13:19:29 +0530 Subject: [PATCH 1/4] [Edge AI Suites] IRD and Metro apps: Update rc1 tag with rc2 Signed-off-by: Katakol, Rohit --- metro-ai-suite/image-based-video-search/.env | 2 +- metro-ai-suite/image-based-video-search/chart/Chart.yaml | 4 ++-- .../templates/dlstreamer-pipeline-server/deployment.yaml | 2 +- metro-ai-suite/image-based-video-search/chart/values.yaml | 8 ++++---- metro-ai-suite/image-based-video-search/compose.yml | 6 +++--- .../docs/user-guide/get-started.md | 2 +- .../docs/user-guide/get-started/deploy-with-helm.md | 4 ++-- .../src/streaming-pipeline/Dockerfile | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/metro-ai-suite/image-based-video-search/.env b/metro-ai-suite/image-based-video-search/.env index 9d6a80470a..ee8054516b 100644 --- a/metro-ai-suite/image-based-video-search/.env +++ b/metro-ai-suite/image-based-video-search/.env @@ -1,4 +1,4 @@ # General DOCKER_REGISTRY= # DL Streamer Pipeline Server -DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 \ No newline at end of file +DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 \ No newline at end of file diff --git a/metro-ai-suite/image-based-video-search/chart/Chart.yaml b/metro-ai-suite/image-based-video-search/chart/Chart.yaml index a2f0372231..fd803121fb 100644 --- a/metro-ai-suite/image-based-video-search/chart/Chart.yaml +++ b/metro-ai-suite/image-based-video-search/chart/Chart.yaml @@ -10,9 +10,9 @@ name: image-based-video-search apiVersion: v2 # Version of the chart (required) -version: 1.2.0-rc1 +version: 1.2.0-rc2 # Version of the application (required). # This should be the main application version. -appVersion: 1.2.0-rc1 +appVersion: 1.2.0-rc2 description: A Helm chart for ibvs diff --git a/metro-ai-suite/image-based-video-search/chart/templates/dlstreamer-pipeline-server/deployment.yaml b/metro-ai-suite/image-based-video-search/chart/templates/dlstreamer-pipeline-server/deployment.yaml index f4db10a987..63ec3f0641 100644 --- a/metro-ai-suite/image-based-video-search/chart/templates/dlstreamer-pipeline-server/deployment.yaml +++ b/metro-ai-suite/image-based-video-search/chart/templates/dlstreamer-pipeline-server/deployment.yaml @@ -58,7 +58,7 @@ spec: - name: '{{ include "image_based_video_search.fullname" . }}-dlstreamer-pipeline-server-models' mountPath: /output - name: model-downloader - image: intel/dlstreamer:2026.0.0-ubuntu24-rc1 + image: intel/dlstreamer:2026.0.0-ubuntu24-rc2 securityContext: allowPrivilegeEscalation: false runAsNonRoot: true diff --git a/metro-ai-suite/image-based-video-search/chart/values.yaml b/metro-ai-suite/image-based-video-search/chart/values.yaml index 5ae933b74a..51fe18bf3b 100644 --- a/metro-ai-suite/image-based-video-search/chart/values.yaml +++ b/metro-ai-suite/image-based-video-search/chart/values.yaml @@ -89,7 +89,7 @@ dlstreamerpipelineserver: # key: dlstreamerpipelineserver.repository.image image: docker.io/intel/dlstreamer-pipeline-server # key: dlstreamerpipelineserver.repository.tag - tag: 2026.0.0-ubuntu24-rc1 + tag: 2026.0.0-ubuntu24-rc2 # key: dlstreamerpipelineserver.replicas replicas: 1 # key: dlstreamerpipelineserver.nodeSelector @@ -263,7 +263,7 @@ streaming: # key: streaming.repository.image image: docker.io/intel/streaming-pipeline # key: streaming.repository.tag - tag: v1.2.0-rc1 + tag: v1.2.0-rc2 # key: streaming.replicas replicas: 1 # key: streaming.nodeSelector @@ -306,7 +306,7 @@ app: # key: app.repository.image image: docker.io/intel/image-based-video-search # key: app.repository.tag - tag: v1.2.0-rc1 + tag: v1.2.0-rc2 # key: app.replicas replicas: 1 # key: app.nodeSelector @@ -363,7 +363,7 @@ featurematching: # key: featurematching.repository.image image: docker.io/intel/feature-matching # key: featurematching.repository.tag - tag: v1.2.0-rc1 + tag: v1.2.0-rc2 # key: featurematching.replicas replicas: 1 # key: featurematching.nodeSelector diff --git a/metro-ai-suite/image-based-video-search/compose.yml b/metro-ai-suite/image-based-video-search/compose.yml index 17ec763839..bc6717258f 100644 --- a/metro-ai-suite/image-based-video-search/compose.yml +++ b/metro-ai-suite/image-based-video-search/compose.yml @@ -46,7 +46,7 @@ services: condition: service_healthy feature-matching: - image: ${DOCKER_REGISTRY}intel/feature-matching:v1.2.0-rc1 + image: ${DOCKER_REGISTRY}intel/feature-matching:v1.2.0-rc2 container_name: ibvs-featurematching build: context: src/feature-matching @@ -81,7 +81,7 @@ services: start_period: 10s restart: on-failure:5 streaming-pipeline: - image: ${DOCKER_REGISTRY}intel/streaming-pipeline:v1.2.0-rc1 + image: ${DOCKER_REGISTRY}intel/streaming-pipeline:v1.2.0-rc2 build: context: src/streaming-pipeline dockerfile: Dockerfile @@ -202,7 +202,7 @@ services: condition: service_started restart: on-failure:5 app: - image: ${DOCKER_REGISTRY}intel/image-based-video-search:v1.2.0-rc1 + image: ${DOCKER_REGISTRY}intel/image-based-video-search:v1.2.0-rc2 container_name: ibvs-app build: context: src/app diff --git a/metro-ai-suite/image-based-video-search/docs/user-guide/get-started.md b/metro-ai-suite/image-based-video-search/docs/user-guide/get-started.md index 6a2b37e083..ee501a8f0c 100644 --- a/metro-ai-suite/image-based-video-search/docs/user-guide/get-started.md +++ b/metro-ai-suite/image-based-video-search/docs/user-guide/get-started.md @@ -65,7 +65,7 @@ By following this guide, you will learn how to: docker run --rm --user=root \ -e http_proxy -e https_proxy -e no_proxy \ -v "$MODELS_PATH:/output" \ - intel/dlstreamer:2026.0.0-ubuntu24-rc1 bash -c "$(cat < Date: Tue, 10 Mar 2026 13:37:34 +0530 Subject: [PATCH 2/4] Updating rc2 tags for sp and ld --- metro-ai-suite/metro-vision-ai-app-recipe/.env | 2 +- .../docs/user-guide/get-started/deploy-with-helm.md | 4 ++-- .../loitering-detection/helm-chart/Chart.yaml | 4 ++-- .../helm-chart/templates/dlstreamer-pipeline-server.yaml | 2 +- .../loitering-detection/helm-chart/values.yaml | 2 +- .../docs/user-guide/get-started/deploy-with-helm.md | 4 ++-- .../smart-parking/helm-chart/Chart.yaml | 4 ++-- .../helm-chart/templates/dlstreamer-pipeline-server.yaml | 2 +- .../smart-parking/helm-chart/values.yaml | 2 +- .../metro-vision-ai-app-recipe/smart-parking/install.sh | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/.env b/metro-ai-suite/metro-vision-ai-app-recipe/.env index 90533b4aca..ef42b14319 100644 --- a/metro-ai-suite/metro-vision-ai-app-recipe/.env +++ b/metro-ai-suite/metro-vision-ai-app-recipe/.env @@ -10,7 +10,7 @@ HOST_IP=0.0.0.0 # DL Streamer Pipeline Server -DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 # This variable identifies the name of the application to be used. # It should match the name of the application directory in the metro-ai-suite. diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/docs/user-guide/get-started/deploy-with-helm.md b/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/docs/user-guide/get-started/deploy-with-helm.md index 8076762892..2e7e4ce54a 100644 --- a/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/docs/user-guide/get-started/deploy-with-helm.md +++ b/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/docs/user-guide/get-started/deploy-with-helm.md @@ -51,10 +51,10 @@ Optional: Pull the helm chart and replace the existing helm-chart folder with it cd loitering-detection #Download helm chart with the following command -helm pull oci://registry-1.docker.io/intel/loitering-detection --version 1.4.0-rc1 +helm pull oci://registry-1.docker.io/intel/loitering-detection --version 1.4.0-rc2 #unzip the package using the following command -tar -xvf loitering-detection-1.4.0-rc1.tgz +tar -xvf loitering-detection-1.4.0-rc2.tgz #Replace the helm directory rm -rf helm-chart && mv loitering-detection helm-chart diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/Chart.yaml b/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/Chart.yaml index 72c082b7a7..e9d6d39bec 100644 --- a/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/Chart.yaml +++ b/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 -appVersion: 1.4.0-rc1 +appVersion: 1.4.0-rc2 description: A Helm chart for Loitering Detection Sample Application name: loitering-detection type: application -version: 1.4.0-rc1 +version: 1.4.0-rc2 diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/templates/dlstreamer-pipeline-server.yaml b/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/templates/dlstreamer-pipeline-server.yaml index bdc77ceb48..e6f7109398 100644 --- a/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/templates/dlstreamer-pipeline-server.yaml +++ b/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/templates/dlstreamer-pipeline-server.yaml @@ -71,7 +71,7 @@ spec: - name: videos-volume mountPath: /tmp/videos - name: model-downloader - image: intel/dlstreamer:2026.0.0-ubuntu24-rc1 + image: intel/dlstreamer:2026.0.0-ubuntu24-rc2 securityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: true diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/values.yaml b/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/values.yaml index ead4d58bdf..3873afca7d 100644 --- a/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/values.yaml +++ b/metro-ai-suite/metro-vision-ai-app-recipe/loitering-detection/helm-chart/values.yaml @@ -16,7 +16,7 @@ mediamtx: imageTag: 1.11.3 dlstreamer_pipeline_server: image: intel/dlstreamer-pipeline-server - imageTag: 2026.0.0-ubuntu24-rc1 + imageTag: 2026.0.0-ubuntu24-rc2 grafana: image: grafana/grafana imageTag: 11.5.4 diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/docs/user-guide/get-started/deploy-with-helm.md b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/docs/user-guide/get-started/deploy-with-helm.md index f92b564d4a..a960b4d76e 100644 --- a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/docs/user-guide/get-started/deploy-with-helm.md +++ b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/docs/user-guide/get-started/deploy-with-helm.md @@ -45,10 +45,10 @@ Optional: Pull the Helm chart and replace the existing `helm-chart` folder with cd smart-parking #Download helm chart with the following command -helm pull oci://registry-1.docker.io/intel/smart-parking --version 1.4.0-rc1 +helm pull oci://registry-1.docker.io/intel/smart-parking --version 1.4.0-rc2 #unzip the package using the following command -tar -xvf smart-parking-1.4.0-rc1.tgz +tar -xvf smart-parking-1.4.0-rc2.tgz #Replace the helm directory rm -rf helm-chart && mv smart-parking helm-chart diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/Chart.yaml b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/Chart.yaml index 5278e721c0..ebca01e041 100644 --- a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/Chart.yaml +++ b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 -appVersion: 1.4.0-rc1 +appVersion: 1.4.0-rc2 description: A Helm chart for Smart Parking Sample Application name: smart-parking type: application -version: 1.4.0-rc1 +version: 1.4.0-rc2 diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/templates/dlstreamer-pipeline-server.yaml b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/templates/dlstreamer-pipeline-server.yaml index cadf35bca3..97b43d01de 100644 --- a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/templates/dlstreamer-pipeline-server.yaml +++ b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/templates/dlstreamer-pipeline-server.yaml @@ -71,7 +71,7 @@ spec: - name: videos-volume mountPath: /tmp/videos - name: model-downloader - image: intel/dlstreamer:2026.0.0-ubuntu24-rc1 + image: intel/dlstreamer:2026.0.0-ubuntu24-rc2 securityContext: allowPrivilegeEscalation: false runAsNonRoot: true diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/values.yaml b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/values.yaml index bd0517bf94..4be19e0af2 100644 --- a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/values.yaml +++ b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/helm-chart/values.yaml @@ -24,7 +24,7 @@ mediamtx: imageTag: 1.11.3 dlstreamer_pipeline_server: image: intel/dlstreamer-pipeline-server - imageTag: 2026.0.0-ubuntu24-rc1 + imageTag: 2026.0.0-ubuntu24-rc2 grafana: image: grafana/grafana imageTag: 11.5.4 diff --git a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/install.sh b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/install.sh index 6e3accf05c..b168f95273 100755 --- a/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/install.sh +++ b/metro-ai-suite/metro-vision-ai-app-recipe/smart-parking/install.sh @@ -3,7 +3,7 @@ docker run --rm --user=root \ -e http_proxy -e https_proxy -e no_proxy \ -v "$(dirname "$(readlink -f "$0")"):/opt/project" \ - intel/dlstreamer:2026.0.0-ubuntu24-rc1 bash -c "$(cat < Date: Tue, 10 Mar 2026 13:51:16 +0530 Subject: [PATCH 3/4] Update rc2 tags for IRD apps --- manufacturing-ai-suite/industrial-edge-insights-vision/.env | 2 +- .../.env_pallet-defect-detection | 2 +- .../.env_pcb-anomaly-detection | 2 +- .../industrial-edge-insights-vision/.env_weld-porosity | 2 +- .../.env_worker-safety-gear-detection | 2 +- .../pallet-defect-detection/get-started/deploy-with-helm.md | 4 ++-- .../how-to-guides/integrate-balluff-sdk.md | 2 +- .../how-to-guides/integrate-pylon-sdk.md | 2 +- .../pcb-anomaly-detection/get-started/deploy-with-helm.md | 4 ++-- .../user-guide/weld-porosity/get-started/deploy-with-helm.md | 4 ++-- .../get-started/deploy-with-helm.md | 4 ++-- .../how-to-guides/integrate-balluff-sdk.md | 2 +- .../how-to-guides/integrate-pylon-sdk.md | 2 +- .../helm/Chart-pallet-defect-detection.yaml | 4 ++-- .../helm/Chart-pcb-anomaly-detection.yaml | 4 ++-- .../helm/Chart-weld-porosity.yaml | 4 ++-- .../helm/Chart-worker-safety-gear-detection.yaml | 4 ++-- .../industrial-edge-insights-vision/helm/Chart.yaml | 4 ++-- .../industrial-edge-insights-vision/helm/values.yaml | 2 +- .../helm/values_pallet-defect-detection.yaml | 2 +- .../helm/values_pcb-anomaly-detection.yaml | 2 +- .../helm/values_weld-porosity.yaml | 2 +- .../helm/values_worker-safety-gear-detection.yaml | 2 +- 23 files changed, 32 insertions(+), 32 deletions(-) diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/.env b/manufacturing-ai-suite/industrial-edge-insights-vision/.env index ff75e51da1..8526904cdc 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/.env +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/.env @@ -4,7 +4,7 @@ HOST_IP= REST_SERVER_PORT=8080 # DL Streamer Pipeline Server -DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 RTSP_CAMERA_IP= # MinIO service & client diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/.env_pallet-defect-detection b/manufacturing-ai-suite/industrial-edge-insights-vision/.env_pallet-defect-detection index ff75e51da1..8526904cdc 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/.env_pallet-defect-detection +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/.env_pallet-defect-detection @@ -4,7 +4,7 @@ HOST_IP= REST_SERVER_PORT=8080 # DL Streamer Pipeline Server -DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 RTSP_CAMERA_IP= # MinIO service & client diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/.env_pcb-anomaly-detection b/manufacturing-ai-suite/industrial-edge-insights-vision/.env_pcb-anomaly-detection index 5ab5da0eee..2337c52a05 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/.env_pcb-anomaly-detection +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/.env_pcb-anomaly-detection @@ -4,7 +4,7 @@ HOST_IP= REST_SERVER_PORT=8080 # DL Streamer Pipeline Server -DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 RTSP_CAMERA_IP= # MinIO service & client diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/.env_weld-porosity b/manufacturing-ai-suite/industrial-edge-insights-vision/.env_weld-porosity index e5aa84b3e0..62a7943c80 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/.env_weld-porosity +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/.env_weld-porosity @@ -4,7 +4,7 @@ HOST_IP= REST_SERVER_PORT=8080 # DL Streamer Pipeline Server -DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 RTSP_CAMERA_IP= # MinIO service & client diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/.env_worker-safety-gear-detection b/manufacturing-ai-suite/industrial-edge-insights-vision/.env_worker-safety-gear-detection index 31da364cae..c65c3267a1 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/.env_worker-safety-gear-detection +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/.env_worker-safety-gear-detection @@ -4,7 +4,7 @@ HOST_IP= REST_SERVER_PORT=8080 # DL Streamer Pipeline Server -DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 RTSP_CAMERA_IP= # MinIO service & client diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-with-helm.md index 07e37955a1..eac388092e 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-with-helm.md @@ -32,13 +32,13 @@ - Download helm chart with the following command ```bash - helm pull oci://registry-1.docker.io/intel/pallet-defect-detection-reference-implementation --version 2.6.0-rc1 + helm pull oci://registry-1.docker.io/intel/pallet-defect-detection-reference-implementation --version 2.6.0-rc2 ``` - Unzip the package using the following command ```bash - tar -xvf pallet-defect-detection-reference-implementation-2.6.0-rc1.tgz + tar -xvf pallet-defect-detection-reference-implementation-2.6.0-rc2.tgz ``` - Replace the helm directory diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-balluff-sdk.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-balluff-sdk.md index fbccd9ed3d..eecb0919f5 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-balluff-sdk.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-balluff-sdk.md @@ -24,7 +24,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server Create a Docker file named `BalluffDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content. ```dockerfile -FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 USER root diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-pylon-sdk.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-pylon-sdk.md index 3588c044f6..f676f57a0b 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-pylon-sdk.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-pylon-sdk.md @@ -22,7 +22,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server Create a Docker file named `BaslerDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content. ```dockerfile -FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 USER root diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-with-helm.md index bf5291664b..7966d65859 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-with-helm.md @@ -30,10 +30,10 @@ - Download helm chart with the following command - `helm pull oci://registry-1.docker.io/intel/pcb-anomaly-detection --version 1.2.0-rc1` + `helm pull oci://registry-1.docker.io/intel/pcb-anomaly-detection --version 1.2.0-rc2` - unzip the package using the following command - `tar -xvf pcb-anomaly-detection-1.2.0-rc1.tgz` + `tar -xvf pcb-anomaly-detection-1.2.0-rc2.tgz` - Replace the helm directory `rm -rf helm && mv pcb-anomaly-detection helm` diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-with-helm.md index 25d89daf2c..9440691c2f 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-with-helm.md @@ -29,10 +29,10 @@ - Download helm chart with the following command - `helm pull oci://registry-1.docker.io/intel/weld-porosity-sample-application --version 1.4.0-rc1` + `helm pull oci://registry-1.docker.io/intel/weld-porosity-sample-application --version 1.4.0-rc2` - unzip the package using the following command - `tar -xvf weld-porosity-sample-application-1.4.0-rc1.tgz` + `tar -xvf weld-porosity-sample-application-1.4.0-rc2.tgz` - Replace the helm directory `rm -rf helm && mv weld-porosity-sample-application helm` diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-with-helm.md index c7303a88f2..bdcbfe1437 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-with-helm.md @@ -26,10 +26,10 @@ - Download helm chart with the following command - `helm pull oci://registry-1.docker.io/intel/worker-safety-gear-detection --version 1.2.0-rc1` + `helm pull oci://registry-1.docker.io/intel/worker-safety-gear-detection --version 1.2.0-rc2` - unzip the package using the following command - `tar -xvf worker-safety-gear-detection-1.2.0-rc1.tgz` + `tar -xvf worker-safety-gear-detection-1.2.0-rc2.tgz` - Replace the helm directory `rm -rf helm && mv worker-safety-gear-detection helm` diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/how-to-guides/integrate-balluff-sdk.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/how-to-guides/integrate-balluff-sdk.md index 2216adc6df..cf9a97e467 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/how-to-guides/integrate-balluff-sdk.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/how-to-guides/integrate-balluff-sdk.md @@ -29,7 +29,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server Create a Docker file named `BalluffDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content. ```dockerfile -FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 USER root diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/how-to-guides/integrate-pylon-sdk.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/how-to-guides/integrate-pylon-sdk.md index ca428918a7..7c47e10557 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/how-to-guides/integrate-pylon-sdk.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/how-to-guides/integrate-pylon-sdk.md @@ -27,7 +27,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server Create a Docker file named `BaslerDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content. ```dockerfile -FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 +FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 USER root diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-pallet-defect-detection.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-pallet-defect-detection.yaml index a163a9a6f9..6073d733e2 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-pallet-defect-detection.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-pallet-defect-detection.yaml @@ -17,10 +17,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.6.0-rc1 +version: 2.6.0-rc2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "2.6.0-rc1" \ No newline at end of file +appVersion: "2.6.0-rc2" \ No newline at end of file diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-pcb-anomaly-detection.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-pcb-anomaly-detection.yaml index 5aee623440..7fa3d0fc4c 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-pcb-anomaly-detection.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-pcb-anomaly-detection.yaml @@ -17,10 +17,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.2.0-rc1 +version: 1.2.0-rc2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.2.0-rc1" \ No newline at end of file +appVersion: "1.2.0-rc2" \ No newline at end of file diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-weld-porosity.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-weld-porosity.yaml index c90d14a1ee..70ceb4df79 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-weld-porosity.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-weld-porosity.yaml @@ -17,10 +17,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.4.0-rc1 +version: 1.4.0-rc2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.4.0-rc1" \ No newline at end of file +appVersion: "1.4.0-rc2" \ No newline at end of file diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-worker-safety-gear-detection.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-worker-safety-gear-detection.yaml index 91d0cf7115..8b27d6b327 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-worker-safety-gear-detection.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart-worker-safety-gear-detection.yaml @@ -17,10 +17,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.2.0-rc1 +version: 1.2.0-rc2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.2.0-rc1" \ No newline at end of file +appVersion: "1.2.0-rc2" \ No newline at end of file diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart.yaml index a163a9a6f9..6073d733e2 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/Chart.yaml @@ -17,10 +17,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.6.0-rc1 +version: 2.6.0-rc2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "2.6.0-rc1" \ No newline at end of file +appVersion: "2.6.0-rc2" \ No newline at end of file diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values.yaml index b115060230..2fb7f586a1 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values.yaml @@ -42,7 +42,7 @@ webrtcturnserver: password: images: minio: minio/minio:RELEASE.2020-12-12T08-39-07Z - dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 + dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 nginx: nginx:1.27-alpine mqtt_broker: eclipse-mosquitto:latest config: diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_pallet-defect-detection.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_pallet-defect-detection.yaml index 480456e789..897a1b0ea6 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_pallet-defect-detection.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_pallet-defect-detection.yaml @@ -42,7 +42,7 @@ webrtcturnserver: password: images: minio: minio/minio:RELEASE.2020-12-12T08-39-07Z - dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 + dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 nginx: nginx:1.27-alpine mqtt_broker: eclipse-mosquitto:latest config: diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_pcb-anomaly-detection.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_pcb-anomaly-detection.yaml index 3cb578a1c1..cec9d32f6c 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_pcb-anomaly-detection.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_pcb-anomaly-detection.yaml @@ -42,7 +42,7 @@ webrtcturnserver: password: images: minio: minio/minio:RELEASE.2020-12-12T08-39-07Z - dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 + dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 nginx: nginx:1.27-alpine mqtt_broker: eclipse-mosquitto:latest config: diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_weld-porosity.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_weld-porosity.yaml index 71f5138be8..39d8e78fa8 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_weld-porosity.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_weld-porosity.yaml @@ -42,7 +42,7 @@ webrtcturnserver: password: images: minio: minio/minio:RELEASE.2020-12-12T08-39-07Z - dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 + dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 nginx: nginx:1.27-alpine mqtt_broker: eclipse-mosquitto:latest config: diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_worker-safety-gear-detection.yaml b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_worker-safety-gear-detection.yaml index 879e8e159b..1816838e55 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_worker-safety-gear-detection.yaml +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/values_worker-safety-gear-detection.yaml @@ -42,7 +42,7 @@ webrtcturnserver: password: images: minio: minio/minio:RELEASE.2020-12-12T08-39-07Z - dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc1 + dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc2 nginx: nginx:1.27-alpine mqtt_broker: eclipse-mosquitto:latest config: From 681ae4fd1f274c839f8d719b09fe96b3c18be6e3 Mon Sep 17 00:00:00 2001 From: "Rajput, Sajeev" Date: Tue, 10 Mar 2026 22:52:03 +0530 Subject: [PATCH 4/4] updated int8 models for pdd,worker-safety, set threshold and gpu instructions for helm --- .../apps/pallet-defect-detection/setup.sh | 2 +- .../configs/pipeline-server-config.json | 14 +++++++------- .../apps/worker-safety-gear-detection/setup.sh | 2 +- .../deploy-multiple-instances-with-helm.md | 3 ++- .../get-started/deploy-with-helm.md | 3 ++- .../deploy-multiple-instances-with-helm.md | 1 + .../get-started/deploy-with-helm.md | 1 + .../deploy-multiple-instances-with-helm.md | 1 + .../weld-porosity/get-started/deploy-with-helm.md | 1 + .../deploy-multiple-instances-with-helm.md | 3 ++- .../get-started/deploy-with-helm.md | 4 +++- .../helm/apps/pallet-defect-detection/setup.sh | 2 +- .../pipeline-server-config.json | 14 +++++++------- .../apps/worker-safety-gear-detection/setup.sh | 2 +- 14 files changed, 31 insertions(+), 22 deletions(-) diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/apps/pallet-defect-detection/setup.sh b/manufacturing-ai-suite/industrial-edge-insights-vision/apps/pallet-defect-detection/setup.sh index 561c564bfb..81ba5d38de 100755 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/apps/pallet-defect-detection/setup.sh +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/apps/pallet-defect-detection/setup.sh @@ -3,7 +3,7 @@ # Download artifacts for a specific sample application # by calling respective app's setup.sh script SCRIPT_DIR=$(dirname $(readlink -f "$0")) -MODEL_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/1d40dfe1791d44e8cf6e8472c28c034e40fa508d/models/INT8/pallet_defect_detection.zip" +MODEL_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/06bb0d621cb14a1791672552a538beddddcc4066/models/INT8/pallet_defect_detection.zip" VIDEO_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/c13b8dbf23d514c2667d39b66615bd1400cb889d/videos/warehouse.avi" err() { diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/apps/worker-safety-gear-detection/configs/pipeline-server-config.json b/manufacturing-ai-suite/industrial-edge-insights-vision/apps/worker-safety-gear-detection/configs/pipeline-server-config.json index 5354510639..ff84648e83 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/apps/worker-safety-gear-detection/configs/pipeline-server-config.json +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/apps/worker-safety-gear-detection/configs/pipeline-server-config.json @@ -5,7 +5,7 @@ "name": "worker_safety_gear_detection_mlops", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "multifilesrc loop=TRUE location=/home/pipeline-server/resources/videos/Safety_Full_Hat_and_Vest.avi name=source ! h264parse ! decodebin3 ! gvadetect name=detection ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", + "pipeline": "multifilesrc loop=TRUE location=/home/pipeline-server/resources/videos/Safety_Full_Hat_and_Vest.avi name=source ! h264parse ! decodebin3 ! gvadetect name=detection threshold=0.4 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -23,7 +23,7 @@ "name": "worker_safety_gear_detection_mqtt", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvawatermark displ-cfg=font-scale=1.0,draw-txt-bg=false ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 threshold=0.4 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvawatermark displ-cfg=font-scale=1.0,draw-txt-bg=false ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -41,7 +41,7 @@ "name": "worker_safety_gear_detection_s3write", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 threshold=0.4 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -64,7 +64,7 @@ "name": "worker_safety_gear_detection_opcua", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvawatermark displ-cfg=font-scale=1.0,draw-txt-bg=false ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 threshold=0.4 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvawatermark displ-cfg=font-scale=1.0,draw-txt-bg=false ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -86,7 +86,7 @@ "name": "worker_safety_gear_detection_gpu", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=GPU model-instance-id=instgpu0 inference-region=full-frame inference-interval=1 batch-size=8 nireq=2 ie-config=\"GPU_THROUGHPUT_STREAMS=2\" threshold=0.7 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=GPU model-instance-id=instgpu0 inference-region=full-frame inference-interval=1 batch-size=8 nireq=2 ie-config=\"GPU_THROUGHPUT_STREAMS=2\" threshold=0.4 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -104,7 +104,7 @@ "name": "worker_safety_gear_detection_npu", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=NPU model-instance-id=instnpu0 inference-region=full-frame inference-interval=1 batch-size=1 nireq=4 threshold=0.7 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=NPU model-instance-id=instnpu0 inference-region=full-frame inference-interval=1 batch-size=1 nireq=4 threshold=0.4 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -122,7 +122,7 @@ "name": "worker_safety_gear_detection", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=CPU model-instance-id=inst0 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=CPU model-instance-id=inst0 threshold=0.4 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", "parameters": { "type": "object", "properties": { diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/apps/worker-safety-gear-detection/setup.sh b/manufacturing-ai-suite/industrial-edge-insights-vision/apps/worker-safety-gear-detection/setup.sh index a572ed64ff..3bd86851ce 100755 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/apps/worker-safety-gear-detection/setup.sh +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/apps/worker-safety-gear-detection/setup.sh @@ -3,7 +3,7 @@ # Download artifacts for a specific sample application # by calling respective app's setup.sh script SCRIPT_DIR=$(dirname $(readlink -f "$0")) -MODEL_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/1d40dfe1791d44e8cf6e8472c28c034e40fa508d/models/INT8/worker-safety-gear-detection.zip" +MODEL_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/06bb0d621cb14a1791672552a538beddddcc4066/models/INT8/worker-safety-gear-detection.zip" VIDEO_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/edd25f37c324a9ef73df1642354b2ba5fa7b7df5/videos/Safety_Full_Hat_and_Vest.avi" err() { diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-multiple-instances-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-multiple-instances-with-helm.md index 98ade56584..dbd1cdc921 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-multiple-instances-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-multiple-instances-with-helm.md @@ -58,6 +58,7 @@ MTX_WEBRTCICESERVERS2_0_USERNAME= # WebRTC credentials e.g. intel1234 MTX_WEBRTCICESERVERS2_0_PASSWORD= ``` + > **Note:** For GPU-based pipelines, set `privileged_access_required: true` in the `helm/values_.yaml` file to enable access to host hardware devices. 4. Install pre-requisites for all instances @@ -806,7 +807,7 @@ Applications can take advantage of S3 publish feature from DL Streamer Pipeline >NOTE- For sake of simplicity, we assume that the new model has already been downloaded by Model Download microservice. The following curl command is only a simulation that just downloads the model. In production, however, they will be downloaded by the Model Download service. ```sh - export MODEL_URL='https://github.com/open-edge-platform/edge-ai-resources/raw/a7c9522f5f936c47de8922046db7d7add13f93a0/models/INT8/pallet_defect_detection.zip' + export MODEL_URL='https://github.com/open-edge-platform/edge-ai-resources/raw/06bb0d621cb14a1791672552a538beddddcc4066/models/INT8/pallet_defect_detection.zip' curl -L "$MODEL_URL" -o "$(basename $MODEL_URL)" diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-with-helm.md index eac388092e..765c3b74fe 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-with-helm.md @@ -23,6 +23,7 @@ ```sh cp helm/values_pallet-defect-detection.yaml helm/values.yaml ``` + > **Note:** For GPU-based pipelines, set `privileged_access_required: true` in the `helm/values.yaml` file to enable access to host hardware devices. 3. Optional: Pull the helm chart and replace the existing helm folder with it @@ -408,7 +409,7 @@ Applications can take advantage of S3 publish feature from DL Streamer Pipeline >NOTE- For sake of simplicity, we assume that the new model has already been downloaded by Model Download microservice. The following curl command is only a simulation that just downloads the model. In production, however, they will be downloaded by the Model Download service. ```sh - export MODEL_URL='https://github.com/open-edge-platform/edge-ai-resources/raw/a7c9522f5f936c47de8922046db7d7add13f93a0/models/INT8/pallet_defect_detection.zip' + export MODEL_URL='https://github.com/open-edge-platform/edge-ai-resources/raw/06bb0d621cb14a1791672552a538beddddcc4066/models/INT8/pallet_defect_detection.zip' curl -L "$MODEL_URL" -o "$(basename $MODEL_URL)" diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-multiple-instances-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-multiple-instances-with-helm.md index cfe9172347..0e4abbc346 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-multiple-instances-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-multiple-instances-with-helm.md @@ -58,6 +58,7 @@ MTX_WEBRTCICESERVERS2_0_USERNAME= # WebRTC credentials e.g. intel1234 MTX_WEBRTCICESERVERS2_0_PASSWORD= ``` + > **Note:** For GPU-based pipelines, set `privileged_access_required: true` in the `helm/values_.yaml` file to enable access to host hardware devices. 4. Install pre-requisites for all instances diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-with-helm.md index 7966d65859..83a3ad825f 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-with-helm.md @@ -23,6 +23,7 @@ ```sh cp helm/values_pcb-anomaly-detection.yaml helm/values.yaml ``` + > **Note:** For GPU-based pipelines, set `privileged_access_required: true` in the `helm/values.yaml` file to enable access to host hardware devices. 3. Optional: Pull the helm chart and replace the existing helm folder with it diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-multiple-instances-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-multiple-instances-with-helm.md index a08695ecf0..dda82f67d7 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-multiple-instances-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-multiple-instances-with-helm.md @@ -58,6 +58,7 @@ MTX_WEBRTCICESERVERS2_0_USERNAME= # WebRTC credentials e.g. intel1234 MTX_WEBRTCICESERVERS2_0_PASSWORD= ``` + > **Note:** For GPU-based pipelines, set `privileged_access_required: true` in the `helm/values_.yaml` file to enable access to host hardware devices. 4. Install pre-requisites for all instances diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-with-helm.md index 9440691c2f..db7d434180 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-with-helm.md @@ -23,6 +23,7 @@ ```sh cp helm/values_weld-porosity.yaml helm/values.yaml ``` + > **Note:** For GPU-based pipelines, set `privileged_access_required: true` in the `helm/values.yaml` file to enable access to host hardware devices. 3. Optional: Pull the helm chart and replace the existing helm folder with it - Note: The helm chart should be downloaded when you are not using the helm chart provided in `edge-ai-suites/manufacturing-ai-suite/industrial-edge-insights-vision/helm` diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-multiple-instances-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-multiple-instances-with-helm.md index 90bd66ddb1..1d4062510b 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-multiple-instances-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-multiple-instances-with-helm.md @@ -58,6 +58,7 @@ MTX_WEBRTCICESERVERS2_0_USERNAME= # WebRTC credentials e.g. intel1234 MTX_WEBRTCICESERVERS2_0_PASSWORD= ``` + > **Note:** For GPU-based pipelines, set `privileged_access_required: true` in the `helm/values_.yaml` file to enable access to host hardware devices. 4. Install pre-requisites for all instances @@ -820,7 +821,7 @@ Applications can take advantage of S3 publish feature from DL Streamer Pipeline >NOTE- For sake of simplicity, we assume that the new model has already been downloaded by Model Download microservice. The following curl command is only a simulation that just downloads the model. In production, however, they will be downloaded by the Model Download service. ```sh - export MODEL_URL='https://github.com/open-edge-platform/edge-ai-resources/raw/a7c9522f5f936c47de8922046db7d7add13f93a0/models/INT8/worker-safety-gear-detection.zip' + export MODEL_URL='https://github.com/open-edge-platform/edge-ai-resources/raw/06bb0d621cb14a1791672552a538beddddcc4066/models/INT8/worker-safety-gear-detection.zip' curl -L "$MODEL_URL" -o "$(basename $MODEL_URL)" diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-with-helm.md b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-with-helm.md index bdcbfe1437..c0a0adda45 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-with-helm.md +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/worker-safety-gear-detection/get-started/deploy-with-helm.md @@ -21,6 +21,8 @@ ```sh cp helm/values_worker-safety-gear-detection.yaml helm/values.yaml ``` + > **Note:** For GPU-based pipelines, set `privileged_access_required: true` in the `helm/values.yaml` file to enable access to host hardware devices. + 3. Optional: Pull the helm chart and replace the existing helm folder with it - Note: The helm chart should be downloaded when you are not using the helm chart provided in `edge-ai-suites/manufacturing-ai-suite/industrial-edge-insights-vision/helm` @@ -392,7 +394,7 @@ Applications can take advantage of S3 publish feature from DL Streamer Pipeline >NOTE- For sake of simplicity, we assume that the new model has already been downloaded by Model Download microservice. The following curl command is only a simulation that just downloads the model. In production, however, they will be downloaded by the Model Download service. ```sh - export MODEL_URL='https://github.com/open-edge-platform/edge-ai-resources/raw/a7c9522f5f936c47de8922046db7d7add13f93a0/models/INT8/worker-safety-gear-detection.zip' + export MODEL_URL='https://github.com/open-edge-platform/edge-ai-resources/raw/06bb0d621cb14a1791672552a538beddddcc4066/models/INT8/worker-safety-gear-detection.zip' curl -L "$MODEL_URL" -o "$(basename $MODEL_URL)" diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/pallet-defect-detection/setup.sh b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/pallet-defect-detection/setup.sh index c8599133a7..b18dec7739 100755 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/pallet-defect-detection/setup.sh +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/pallet-defect-detection/setup.sh @@ -3,7 +3,7 @@ # Download artifacts for a specific sample application # by calling respective app's setup.sh script SCRIPT_DIR=$(dirname $(readlink -f "$0")) -MODEL_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/1d40dfe1791d44e8cf6e8472c28c034e40fa508d/models/INT8/pallet_defect_detection.zip" +MODEL_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/06bb0d621cb14a1791672552a538beddddcc4066/models/INT8/pallet_defect_detection.zip" VIDEO_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/c13b8dbf23d514c2667d39b66615bd1400cb889d/videos/warehouse.avi" err() { diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/worker-safety-gear-detection/pipeline-server-config.json b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/worker-safety-gear-detection/pipeline-server-config.json index 5354510639..ff84648e83 100644 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/worker-safety-gear-detection/pipeline-server-config.json +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/worker-safety-gear-detection/pipeline-server-config.json @@ -5,7 +5,7 @@ "name": "worker_safety_gear_detection_mlops", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "multifilesrc loop=TRUE location=/home/pipeline-server/resources/videos/Safety_Full_Hat_and_Vest.avi name=source ! h264parse ! decodebin3 ! gvadetect name=detection ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", + "pipeline": "multifilesrc loop=TRUE location=/home/pipeline-server/resources/videos/Safety_Full_Hat_and_Vest.avi name=source ! h264parse ! decodebin3 ! gvadetect name=detection threshold=0.4 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -23,7 +23,7 @@ "name": "worker_safety_gear_detection_mqtt", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvawatermark displ-cfg=font-scale=1.0,draw-txt-bg=false ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 threshold=0.4 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvawatermark displ-cfg=font-scale=1.0,draw-txt-bg=false ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -41,7 +41,7 @@ "name": "worker_safety_gear_detection_s3write", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 threshold=0.4 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -64,7 +64,7 @@ "name": "worker_safety_gear_detection_opcua", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvawatermark displ-cfg=font-scale=1.0,draw-txt-bg=false ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect name=detection model-instance-id=inst0 threshold=0.4 ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvawatermark displ-cfg=font-scale=1.0,draw-txt-bg=false ! queue ! gvafpscounter ! queue ! jpegenc ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -86,7 +86,7 @@ "name": "worker_safety_gear_detection_gpu", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=GPU model-instance-id=instgpu0 inference-region=full-frame inference-interval=1 batch-size=8 nireq=2 ie-config=\"GPU_THROUGHPUT_STREAMS=2\" threshold=0.7 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=GPU model-instance-id=instgpu0 inference-region=full-frame inference-interval=1 batch-size=8 nireq=2 ie-config=\"GPU_THROUGHPUT_STREAMS=2\" threshold=0.4 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -104,7 +104,7 @@ "name": "worker_safety_gear_detection_npu", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=NPU model-instance-id=instnpu0 inference-region=full-frame inference-interval=1 batch-size=1 nireq=4 threshold=0.7 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=NPU model-instance-id=instnpu0 inference-region=full-frame inference-interval=1 batch-size=1 nireq=4 threshold=0.4 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", "parameters": { "type": "object", "properties": { @@ -122,7 +122,7 @@ "name": "worker_safety_gear_detection", "source": "gstreamer", "queue_maxsize": 50, - "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=CPU model-instance-id=inst0 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", + "pipeline": "{auto_source} name=source ! decodebin3 ! gvadetect device=CPU model-instance-id=inst0 threshold=0.4 name=detection ! queue ! gvametaconvert add-empty-results=true name=metaconvert ! queue ! gvafpscounter ! appsink name=destination", "parameters": { "type": "object", "properties": { diff --git a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/worker-safety-gear-detection/setup.sh b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/worker-safety-gear-detection/setup.sh index a404d96043..8b60e4ed3a 100755 --- a/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/worker-safety-gear-detection/setup.sh +++ b/manufacturing-ai-suite/industrial-edge-insights-vision/helm/apps/worker-safety-gear-detection/setup.sh @@ -3,7 +3,7 @@ # Download artifacts for a specific sample application # by calling respective app's setup.sh script SCRIPT_DIR=$(dirname $(readlink -f "$0")) -MODEL_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/1d40dfe1791d44e8cf6e8472c28c034e40fa508d/models/INT8/worker-safety-gear-detection.zip" +MODEL_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/06bb0d621cb14a1791672552a538beddddcc4066/models/INT8/worker-safety-gear-detection.zip" VIDEO_URL="https://github.com/open-edge-platform/edge-ai-resources/raw/edd25f37c324a9ef73df1642354b2ba5fa7b7df5/videos/Safety_Full_Hat_and_Vest.avi" err() {