From 5d227e043472a326432d8bfcb4703f58ed0e8e6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Maty=C3=A1=C5=A1ek?= Date: Thu, 10 Jul 2025 15:13:51 +0200 Subject: [PATCH] feat: add .oakappignore to all examples This patch adds or modifies `.oakappignore` everywhere based on the newly introduced `.oakappignore` template. Note that most examples use the template ignore file and only the `custom-frontend` apps have their ignore files updated (merged with the template). --- .../rgb-depth-connections/.oakappignore | 27 ++++++++++ apps/default-app/.oakappignore | 27 ++++++++++ .../depth-driven-focus/.oakappignore | 27 ++++++++++ .../lossless-zooming/.oakappignore | 27 ++++++++++ .../manual-camera-control/.oakappignore | 27 ++++++++++ .../dynamic-yolo-world/.oakappignore | 35 ++++++++++-- custom-frontend/raw-stream/.oakappignore | 54 ++++++++++++------- .../rgbd-pointcloud/.oakappignore | 27 ++++++++++ .../calc-spatial-on-host/.oakappignore | 27 ++++++++++ .../stereo-on-host/.oakappignore | 27 ++++++++++ .../.oakappignore | 27 ++++++++++ depth-measurement/triangulation/.oakappignore | 27 ++++++++++ depth-measurement/wls-filter/.oakappignore | 27 ++++++++++ integrations/foxglove/.oakappignore | 27 ++++++++++ integrations/hub-snaps-events/.oakappignore | 27 ++++++++++ integrations/rerun/.oakappignore | 27 ++++++++++ .../roboflow-integration/.oakappignore | 27 ++++++++++ .../3D-detection/objectron/.oakappignore | 27 ++++++++++ .../counting/crowdcounting/.oakappignore | 27 ++++++++++ .../counting/people-counter/.oakappignore | 27 ++++++++++ .../crestereo-stereo-matching/.oakappignore | 27 ++++++++++ .../face-detection/age-gender/.oakappignore | 27 ++++++++++ .../face-detection/blur-faces/.oakappignore | 27 ++++++++++ .../emotion-recognition/.oakappignore | 27 ++++++++++ .../face-mask-detection/.oakappignore | 27 ++++++++++ .../fatigue-detection/.oakappignore | 27 ++++++++++ .../gaze-estimation/.oakappignore | 27 ++++++++++ .../head-posture-detection/.oakappignore | 27 ++++++++++ .../feature-detection/xfeat/.oakappignore | 27 ++++++++++ neural-networks/generic-example/.oakappignore | 27 ++++++++++ .../human-machine-safety/.oakappignore | 27 ++++++++++ .../social-distancing/.oakappignore | 27 ++++++++++ .../spatial-detections/.oakappignore | 27 ++++++++++ .../object-detection/text-blur/.oakappignore | 27 ++++++++++ .../yolo-host-decoding/.oakappignore | 27 ++++++++++ .../object-detection/yolo-p/.oakappignore | 27 ++++++++++ .../object-detection/yolo-world/.oakappignore | 27 ++++++++++ .../collision-avoidance/.oakappignore | 27 ++++++++++ .../deepsort-tracking/.oakappignore | 27 ++++++++++ .../object-tracking/kalman/.oakappignore | 27 ++++++++++ .../people-tracker/.oakappignore | 27 ++++++++++ neural-networks/ocr/general-ocr/.oakappignore | 27 ++++++++++ .../license-plate-recognition/.oakappignore | 27 ++++++++++ .../pose-estimation/animal-pose/.oakappignore | 27 ++++++++++ .../pose-estimation/hand-pose/.oakappignore | 27 ++++++++++ .../pose-estimation/human-pose/.oakappignore | 27 ++++++++++ .../human-reidentification/.oakappignore | 27 ++++++++++ .../blur-background/.oakappignore | 27 ++++++++++ .../segmentation/depth-crop/.oakappignore | 27 ++++++++++ .../whisper-tiny-en/.oakappignore | 27 ++++++++++ streaming/mjpeg-streaming/.oakappignore | 27 ++++++++++ streaming/on-device-encoding/.oakappignore | 27 ++++++++++ streaming/poe-mqtt/.oakappignore | 27 ++++++++++ streaming/poe-tcp-streaming/.oakappignore | 27 ++++++++++ streaming/rtsp-streaming/.oakappignore | 27 ++++++++++ streaming/webrtc-streaming/.oakappignore | 27 ++++++++++ tutorials/camera-demo/.oakappignore | 27 ++++++++++ tutorials/camera-stereo-depth/.oakappignore | 27 ++++++++++ tutorials/custom-models/.oakappignore | 27 ++++++++++ tutorials/display-detections/.oakappignore | 27 ++++++++++ tutorials/full-fov-nn/.oakappignore | 27 ++++++++++ tutorials/play-encoded-stream/.oakappignore | 27 ++++++++++ tutorials/qr-with-tiling/.oakappignore | 27 ++++++++++ 63 files changed, 1713 insertions(+), 23 deletions(-) create mode 100644 apps/conference-demos/rgb-depth-connections/.oakappignore create mode 100644 apps/default-app/.oakappignore create mode 100644 camera-controls/depth-driven-focus/.oakappignore create mode 100644 camera-controls/lossless-zooming/.oakappignore create mode 100644 camera-controls/manual-camera-control/.oakappignore create mode 100644 depth-measurement/3d-measurement/rgbd-pointcloud/.oakappignore create mode 100644 depth-measurement/calc-spatial-on-host/.oakappignore create mode 100644 depth-measurement/stereo-on-host/.oakappignore create mode 100644 depth-measurement/stereo-runtime-configuration/.oakappignore create mode 100644 depth-measurement/triangulation/.oakappignore create mode 100644 depth-measurement/wls-filter/.oakappignore create mode 100644 integrations/foxglove/.oakappignore create mode 100644 integrations/hub-snaps-events/.oakappignore create mode 100644 integrations/rerun/.oakappignore create mode 100644 integrations/roboflow-integration/.oakappignore create mode 100644 neural-networks/3D-detection/objectron/.oakappignore create mode 100644 neural-networks/counting/crowdcounting/.oakappignore create mode 100644 neural-networks/counting/people-counter/.oakappignore create mode 100644 neural-networks/depth-estimation/crestereo-stereo-matching/.oakappignore create mode 100644 neural-networks/face-detection/age-gender/.oakappignore create mode 100644 neural-networks/face-detection/blur-faces/.oakappignore create mode 100644 neural-networks/face-detection/emotion-recognition/.oakappignore create mode 100644 neural-networks/face-detection/face-mask-detection/.oakappignore create mode 100644 neural-networks/face-detection/fatigue-detection/.oakappignore create mode 100644 neural-networks/face-detection/gaze-estimation/.oakappignore create mode 100644 neural-networks/face-detection/head-posture-detection/.oakappignore create mode 100644 neural-networks/feature-detection/xfeat/.oakappignore create mode 100644 neural-networks/generic-example/.oakappignore create mode 100644 neural-networks/object-detection/human-machine-safety/.oakappignore create mode 100644 neural-networks/object-detection/social-distancing/.oakappignore create mode 100644 neural-networks/object-detection/spatial-detections/.oakappignore create mode 100644 neural-networks/object-detection/text-blur/.oakappignore create mode 100644 neural-networks/object-detection/yolo-host-decoding/.oakappignore create mode 100644 neural-networks/object-detection/yolo-p/.oakappignore create mode 100644 neural-networks/object-detection/yolo-world/.oakappignore create mode 100644 neural-networks/object-tracking/collision-avoidance/.oakappignore create mode 100644 neural-networks/object-tracking/deepsort-tracking/.oakappignore create mode 100644 neural-networks/object-tracking/kalman/.oakappignore create mode 100644 neural-networks/object-tracking/people-tracker/.oakappignore create mode 100644 neural-networks/ocr/general-ocr/.oakappignore create mode 100644 neural-networks/ocr/license-plate-recognition/.oakappignore create mode 100644 neural-networks/pose-estimation/animal-pose/.oakappignore create mode 100644 neural-networks/pose-estimation/hand-pose/.oakappignore create mode 100644 neural-networks/pose-estimation/human-pose/.oakappignore create mode 100644 neural-networks/reidentification/human-reidentification/.oakappignore create mode 100644 neural-networks/segmentation/blur-background/.oakappignore create mode 100644 neural-networks/segmentation/depth-crop/.oakappignore create mode 100644 neural-networks/speech-recognition/whisper-tiny-en/.oakappignore create mode 100644 streaming/mjpeg-streaming/.oakappignore create mode 100644 streaming/on-device-encoding/.oakappignore create mode 100644 streaming/poe-mqtt/.oakappignore create mode 100644 streaming/poe-tcp-streaming/.oakappignore create mode 100644 streaming/rtsp-streaming/.oakappignore create mode 100644 streaming/webrtc-streaming/.oakappignore create mode 100644 tutorials/camera-demo/.oakappignore create mode 100644 tutorials/camera-stereo-depth/.oakappignore create mode 100644 tutorials/custom-models/.oakappignore create mode 100644 tutorials/display-detections/.oakappignore create mode 100644 tutorials/full-fov-nn/.oakappignore create mode 100644 tutorials/play-encoded-stream/.oakappignore create mode 100644 tutorials/qr-with-tiling/.oakappignore diff --git a/apps/conference-demos/rgb-depth-connections/.oakappignore b/apps/conference-demos/rgb-depth-connections/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/apps/conference-demos/rgb-depth-connections/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/apps/default-app/.oakappignore b/apps/default-app/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/apps/default-app/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/camera-controls/depth-driven-focus/.oakappignore b/camera-controls/depth-driven-focus/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/camera-controls/depth-driven-focus/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/camera-controls/lossless-zooming/.oakappignore b/camera-controls/lossless-zooming/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/camera-controls/lossless-zooming/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/camera-controls/manual-camera-control/.oakappignore b/camera-controls/manual-camera-control/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/camera-controls/manual-camera-control/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/custom-frontend/dynamic-yolo-world/.oakappignore b/custom-frontend/dynamic-yolo-world/.oakappignore index c2d766521..a9963cd61 100644 --- a/custom-frontend/dynamic-yolo-world/.oakappignore +++ b/custom-frontend/dynamic-yolo-world/.oakappignore @@ -1,5 +1,34 @@ -com-luxonis* +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# Multimedia files +media/ + +# Documentation README.md + +# VCS .gitignore -node_modules -media/ \ No newline at end of file +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/custom-frontend/raw-stream/.oakappignore b/custom-frontend/raw-stream/.oakappignore index ed5b206d8..ad157cc5a 100644 --- a/custom-frontend/raw-stream/.oakappignore +++ b/custom-frontend/raw-stream/.oakappignore @@ -1,29 +1,43 @@ -native -README.md +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# Docker files *.Dockerfile -.gitignore -.gitlab-ci.yml Dockerfile -node_modules -.cache -*.oakapp +# Build artifacts +.cache +native -# Python -**/venv/ -**/.venv/ -**/.mypy_cache/ -**/.ruff_cache/ +# Multimedia files +media/ -# Node.js -**/node_modules/ +# Documentation +README.md # VCS -**/.git/ -**/.github/ -**/.gitlab/ +.gitignore +.git/ +.github/ +.gitlab-ci.yml +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ # IDE files -**/.idea -**/.vscode -**/.zed +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/depth-measurement/3d-measurement/rgbd-pointcloud/.oakappignore b/depth-measurement/3d-measurement/rgbd-pointcloud/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/depth-measurement/3d-measurement/rgbd-pointcloud/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/depth-measurement/calc-spatial-on-host/.oakappignore b/depth-measurement/calc-spatial-on-host/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/depth-measurement/calc-spatial-on-host/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/depth-measurement/stereo-on-host/.oakappignore b/depth-measurement/stereo-on-host/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/depth-measurement/stereo-on-host/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/depth-measurement/stereo-runtime-configuration/.oakappignore b/depth-measurement/stereo-runtime-configuration/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/depth-measurement/stereo-runtime-configuration/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/depth-measurement/triangulation/.oakappignore b/depth-measurement/triangulation/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/depth-measurement/triangulation/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/depth-measurement/wls-filter/.oakappignore b/depth-measurement/wls-filter/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/depth-measurement/wls-filter/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/integrations/foxglove/.oakappignore b/integrations/foxglove/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/integrations/foxglove/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/integrations/hub-snaps-events/.oakappignore b/integrations/hub-snaps-events/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/integrations/hub-snaps-events/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/integrations/rerun/.oakappignore b/integrations/rerun/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/integrations/rerun/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/integrations/roboflow-integration/.oakappignore b/integrations/roboflow-integration/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/integrations/roboflow-integration/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/3D-detection/objectron/.oakappignore b/neural-networks/3D-detection/objectron/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/3D-detection/objectron/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/counting/crowdcounting/.oakappignore b/neural-networks/counting/crowdcounting/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/counting/crowdcounting/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/counting/people-counter/.oakappignore b/neural-networks/counting/people-counter/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/counting/people-counter/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/depth-estimation/crestereo-stereo-matching/.oakappignore b/neural-networks/depth-estimation/crestereo-stereo-matching/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/depth-estimation/crestereo-stereo-matching/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/face-detection/age-gender/.oakappignore b/neural-networks/face-detection/age-gender/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/face-detection/age-gender/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/face-detection/blur-faces/.oakappignore b/neural-networks/face-detection/blur-faces/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/face-detection/blur-faces/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/face-detection/emotion-recognition/.oakappignore b/neural-networks/face-detection/emotion-recognition/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/face-detection/emotion-recognition/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/face-detection/face-mask-detection/.oakappignore b/neural-networks/face-detection/face-mask-detection/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/face-detection/face-mask-detection/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/face-detection/fatigue-detection/.oakappignore b/neural-networks/face-detection/fatigue-detection/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/face-detection/fatigue-detection/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/face-detection/gaze-estimation/.oakappignore b/neural-networks/face-detection/gaze-estimation/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/face-detection/gaze-estimation/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/face-detection/head-posture-detection/.oakappignore b/neural-networks/face-detection/head-posture-detection/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/face-detection/head-posture-detection/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/feature-detection/xfeat/.oakappignore b/neural-networks/feature-detection/xfeat/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/feature-detection/xfeat/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/generic-example/.oakappignore b/neural-networks/generic-example/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/generic-example/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-detection/human-machine-safety/.oakappignore b/neural-networks/object-detection/human-machine-safety/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-detection/human-machine-safety/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-detection/social-distancing/.oakappignore b/neural-networks/object-detection/social-distancing/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-detection/social-distancing/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-detection/spatial-detections/.oakappignore b/neural-networks/object-detection/spatial-detections/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-detection/spatial-detections/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-detection/text-blur/.oakappignore b/neural-networks/object-detection/text-blur/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-detection/text-blur/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-detection/yolo-host-decoding/.oakappignore b/neural-networks/object-detection/yolo-host-decoding/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-detection/yolo-host-decoding/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-detection/yolo-p/.oakappignore b/neural-networks/object-detection/yolo-p/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-detection/yolo-p/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-detection/yolo-world/.oakappignore b/neural-networks/object-detection/yolo-world/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-detection/yolo-world/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-tracking/collision-avoidance/.oakappignore b/neural-networks/object-tracking/collision-avoidance/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-tracking/collision-avoidance/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-tracking/deepsort-tracking/.oakappignore b/neural-networks/object-tracking/deepsort-tracking/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-tracking/deepsort-tracking/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-tracking/kalman/.oakappignore b/neural-networks/object-tracking/kalman/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-tracking/kalman/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/object-tracking/people-tracker/.oakappignore b/neural-networks/object-tracking/people-tracker/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/object-tracking/people-tracker/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/ocr/general-ocr/.oakappignore b/neural-networks/ocr/general-ocr/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/ocr/general-ocr/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/ocr/license-plate-recognition/.oakappignore b/neural-networks/ocr/license-plate-recognition/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/ocr/license-plate-recognition/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/pose-estimation/animal-pose/.oakappignore b/neural-networks/pose-estimation/animal-pose/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/pose-estimation/animal-pose/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/pose-estimation/hand-pose/.oakappignore b/neural-networks/pose-estimation/hand-pose/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/pose-estimation/hand-pose/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/pose-estimation/human-pose/.oakappignore b/neural-networks/pose-estimation/human-pose/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/pose-estimation/human-pose/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/reidentification/human-reidentification/.oakappignore b/neural-networks/reidentification/human-reidentification/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/reidentification/human-reidentification/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/segmentation/blur-background/.oakappignore b/neural-networks/segmentation/blur-background/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/segmentation/blur-background/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/segmentation/depth-crop/.oakappignore b/neural-networks/segmentation/depth-crop/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/segmentation/depth-crop/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/neural-networks/speech-recognition/whisper-tiny-en/.oakappignore b/neural-networks/speech-recognition/whisper-tiny-en/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/neural-networks/speech-recognition/whisper-tiny-en/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/streaming/mjpeg-streaming/.oakappignore b/streaming/mjpeg-streaming/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/streaming/mjpeg-streaming/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/streaming/on-device-encoding/.oakappignore b/streaming/on-device-encoding/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/streaming/on-device-encoding/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/streaming/poe-mqtt/.oakappignore b/streaming/poe-mqtt/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/streaming/poe-mqtt/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/streaming/poe-tcp-streaming/.oakappignore b/streaming/poe-tcp-streaming/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/streaming/poe-tcp-streaming/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/streaming/rtsp-streaming/.oakappignore b/streaming/rtsp-streaming/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/streaming/rtsp-streaming/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/streaming/webrtc-streaming/.oakappignore b/streaming/webrtc-streaming/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/streaming/webrtc-streaming/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/tutorials/camera-demo/.oakappignore b/tutorials/camera-demo/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/tutorials/camera-demo/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/tutorials/camera-stereo-depth/.oakappignore b/tutorials/camera-stereo-depth/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/tutorials/camera-stereo-depth/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/tutorials/custom-models/.oakappignore b/tutorials/custom-models/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/tutorials/custom-models/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/tutorials/display-detections/.oakappignore b/tutorials/display-detections/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/tutorials/display-detections/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/tutorials/full-fov-nn/.oakappignore b/tutorials/full-fov-nn/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/tutorials/full-fov-nn/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/tutorials/play-encoded-stream/.oakappignore b/tutorials/play-encoded-stream/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/tutorials/play-encoded-stream/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed + diff --git a/tutorials/qr-with-tiling/.oakappignore b/tutorials/qr-with-tiling/.oakappignore new file mode 100644 index 000000000..fda470fd1 --- /dev/null +++ b/tutorials/qr-with-tiling/.oakappignore @@ -0,0 +1,27 @@ +# Python virtual environments +venv/ +.venv/ + +# Node.js +# ignore node_modules, it will be reinstalled in the container +node_modules/ + +# VCS +.git/ +.github/ +.gitlab/ + +# The following files are ignored by default +# uncomment a line if you explicitly need it + +# !*.oakapp + +# Python +# !**/.mypy_cache/ +# !**/.ruff_cache/ + +# IDE files +# !**/.idea +# !**/.vscode +# !**/.zed +