├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md └── models ├── 7_segment_recognition_256x750 ├── 7_segment_recognition_256x750.xml └── model.yml ├── coneslayer_416x416 ├── coneslayer_416x416.xml └── model.yml ├── deeplab_v3_mnv2_256x256 ├── deeplab_v3_mnv2_256x256.xml └── model.yml ├── deeplab_v3_mnv2_513x513 ├── deeplab_v3_mnv2_513x513.xml └── model.yml ├── depth_estimation_mbnv2_240x320 ├── README.md ├── depth_estimation_mbnv2_240x320.xml └── model.yml ├── depth_estimation_mbnv2_480x640 ├── README.md ├── depth_estimation_mbnv2_480x640.xml └── model.yml ├── dmcount_540x960 ├── dmcount_540x960.xml └── model.yml ├── east_text_detection_256x256 ├── README.md ├── east_text_detection_256x256.xml └── model.yml ├── emotion_recognition_lfw_64x64 ├── emotion_recognition_lfw_64x64.xml ├── emotion_recognition_lfw_64x64_int8.xml └── model.yml ├── face-recognition-arcface-112x112 ├── README.md ├── face-recognition-arcface-112x112.xml └── model.yml ├── face_detection_yunet_160x120 ├── README.md ├── face_detection_yunet_160x120.xml └── model.yml ├── face_detection_yunet_wider_120x160 ├── face_detection_yunet_wider_120x160.xml ├── face_detection_yunet_wider_120x160_int8.xml └── model.yml ├── facemesh_192x192 ├── README.md ├── facemesh_192x192.xml └── model.yml ├── facial_landmarks_68_160x160 ├── README.md ├── facial_landmarks_68_160x160.xml └── model.yml ├── fast_depth_256x320 ├── fast_depth_256x320.xml └── model.yml ├── fast_depth_480x640 ├── fast_depth_480x640.xml └── model.yml ├── ghostnet_320x256 ├── ghostnet_320x256.xml └── model.yml ├── hand_landmark_224x224 ├── hand_landmark_224x224.xml ├── hand_landmark_224x224_int8.xml └── model.yml ├── hrdepth_192x640 ├── README.md ├── hrdepth_192x640.xml └── model.yml ├── image_quality_assessment_256x256 ├── image_quality_assessment_256x256.xml └── model.yml ├── inceptionv4_299x299 ├── inceptionv4_299x299.xml └── model.yml ├── mask_detection_300x300 ├── mask_detection_300x300.xml └── model.yml ├── mask_rcnn_resnet50_coco_300x300 ├── mask_rcnn_resnet50_coco_300x300.xml └── model.yml ├── megadepth ├── megadepth.xml └── model.yml ├── micronet_m0_224x224 ├── micronet_m0_224x224.xml └── model.yml ├── mobile_object_localizer_192x192 ├── mobile_object_localizer_192x192.xml └── model.yml ├── mobilenetv2_imagenet_embedder_224x224 ├── README.md ├── mobilenetv2_imagenet_embedder_224x224.xml └── model.yml ├── mobileone_s0_imagenet_224x224 ├── mobileone_s0_imagenet_224x224.xml ├── mobileone_s0_imagenet_224x224_int8.xml └── model.yml ├── nanosam_resnet18_image_encoder_1024x1024 ├── model.yml └── nanosam_resnet18_image_encoder_1024x1024.xml ├── padim_wood_256x256 ├── model.yml └── padim_wood_256x256.xml ├── palm_detection_128x128 ├── README.md ├── model.yml └── palm_detection_128x128.xml ├── palm_detection_128x128_decoding ├── README.md ├── model.yml └── palm_detection_128x128_decoding.xml ├── palm_detection_192x192 ├── model.yml ├── palm_detection_192x192.xml └── palm_detection_192x192_int8.xml ├── person-reidentification-retail-0031_96x48 ├── model.yml └── person-reidentification-retail-0031_96x48.xml ├── qr_code_detection_384x384 ├── README.md ├── model.yml └── qr_code_detection_384x384.xml ├── sbd_mask_classification_224x224 ├── README.md ├── model.yml └── sbd_mask_classification_224x224.xml ├── scdepth_256x832 ├── README.md ├── model.yml └── scdepth_256x832.xml ├── shufflenetv2_224x224 ├── model.yml └── shufflenetv2_224x224.xml ├── yml_helper.py ├── yolop_320x320 ├── model.yml └── yolop_320x320.xml ├── yolov3_coco_416x416 ├── model.yml └── yolov3_coco_416x416.xml ├── yolov4_coco_608x608 ├── model.yml └── yolov4_coco_608x608.xml ├── yolov4_tiny_coco_416x416 ├── model.yml └── yolov4_tiny_coco_416x416.xml ├── yolov5n_coco_416x416 ├── model.yml └── yolov5n_coco_416x416.xml ├── yolov5n_coco_640x352 ├── model.yml └── yolov5n_coco_640x352.xml ├── yolov6n_coco_416x416 ├── config.json ├── model.yml ├── readme.md └── yolov6n_coco_416x416.xml ├── yolov6n_coco_640x640 ├── model.yml └── yolov6n_coco_640x640.xml ├── yolov6n_thermal_people_256x192 ├── model.yml └── yolov6n_thermal_people_256x192.xml ├── yolov6n_thermal_people_vehicles_256x192 ├── model.yml └── yolov6n_thermal_people_vehicles_256x192.xml ├── yolov6nr1_coco_512x288 ├── model.yml ├── yolov6nr1_coco_512x288.xml └── yolov6nr1_coco_512x288_int8.xml ├── yolov6nr1_coco_640x352 ├── model.yml ├── yolov6nr1_coco_640x352.xml └── yolov6nr1_coco_640x352_int8.xml ├── yolov6nr3_coco_416x416 ├── model.yml └── yolov6nr3_coco_416x416.xml ├── yolov6nr3_coco_640x352 ├── model.yml └── yolov6nr3_coco_640x352.xml ├── yolov6t_coco_416x416 ├── model.yml └── yolov6t_coco_416x416.xml ├── yolov7_coco_416x416 ├── model.yml └── yolov7_coco_416x416.xml ├── yolov7tiny_coco_416x416 ├── config.json ├── model.yml └── yolov7tiny_coco_416x416.xml ├── yolov7tiny_coco_640x352 ├── config.json ├── model.yml └── yolov7tiny_coco_640x352.xml ├── yolov7tiny_waldo_288x512 ├── config.json ├── model.yml └── yolov7tiny_waldo_288x512.xml ├── yolov7tiny_waldo_416x768 ├── config.json ├── model.yml └── yolov7tiny_waldo_416x768.xml ├── yolov8n_coco_416x416 ├── model.yml └── yolov8n_coco_416x416.xml └── yolov8n_coco_640x352 ├── model.yml └── yolov8n_coco_640x352.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.bin 2 | 3 | venv/ 4 | 5 | .python-version -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/README.md -------------------------------------------------------------------------------- /models/7_segment_recognition_256x750/7_segment_recognition_256x750.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/7_segment_recognition_256x750/7_segment_recognition_256x750.xml -------------------------------------------------------------------------------- /models/7_segment_recognition_256x750/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/7_segment_recognition_256x750/model.yml -------------------------------------------------------------------------------- /models/coneslayer_416x416/coneslayer_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/coneslayer_416x416/coneslayer_416x416.xml -------------------------------------------------------------------------------- /models/coneslayer_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/coneslayer_416x416/model.yml -------------------------------------------------------------------------------- /models/deeplab_v3_mnv2_256x256/deeplab_v3_mnv2_256x256.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/deeplab_v3_mnv2_256x256/deeplab_v3_mnv2_256x256.xml -------------------------------------------------------------------------------- /models/deeplab_v3_mnv2_256x256/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/deeplab_v3_mnv2_256x256/model.yml -------------------------------------------------------------------------------- /models/deeplab_v3_mnv2_513x513/deeplab_v3_mnv2_513x513.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/deeplab_v3_mnv2_513x513/deeplab_v3_mnv2_513x513.xml -------------------------------------------------------------------------------- /models/deeplab_v3_mnv2_513x513/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/deeplab_v3_mnv2_513x513/model.yml -------------------------------------------------------------------------------- /models/depth_estimation_mbnv2_240x320/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/depth_estimation_mbnv2_240x320/README.md -------------------------------------------------------------------------------- /models/depth_estimation_mbnv2_240x320/depth_estimation_mbnv2_240x320.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/depth_estimation_mbnv2_240x320/depth_estimation_mbnv2_240x320.xml -------------------------------------------------------------------------------- /models/depth_estimation_mbnv2_240x320/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/depth_estimation_mbnv2_240x320/model.yml -------------------------------------------------------------------------------- /models/depth_estimation_mbnv2_480x640/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/depth_estimation_mbnv2_480x640/README.md -------------------------------------------------------------------------------- /models/depth_estimation_mbnv2_480x640/depth_estimation_mbnv2_480x640.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/depth_estimation_mbnv2_480x640/depth_estimation_mbnv2_480x640.xml -------------------------------------------------------------------------------- /models/depth_estimation_mbnv2_480x640/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/depth_estimation_mbnv2_480x640/model.yml -------------------------------------------------------------------------------- /models/dmcount_540x960/dmcount_540x960.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/dmcount_540x960/dmcount_540x960.xml -------------------------------------------------------------------------------- /models/dmcount_540x960/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/dmcount_540x960/model.yml -------------------------------------------------------------------------------- /models/east_text_detection_256x256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/east_text_detection_256x256/README.md -------------------------------------------------------------------------------- /models/east_text_detection_256x256/east_text_detection_256x256.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/east_text_detection_256x256/east_text_detection_256x256.xml -------------------------------------------------------------------------------- /models/east_text_detection_256x256/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/east_text_detection_256x256/model.yml -------------------------------------------------------------------------------- /models/emotion_recognition_lfw_64x64/emotion_recognition_lfw_64x64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/emotion_recognition_lfw_64x64/emotion_recognition_lfw_64x64.xml -------------------------------------------------------------------------------- /models/emotion_recognition_lfw_64x64/emotion_recognition_lfw_64x64_int8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/emotion_recognition_lfw_64x64/emotion_recognition_lfw_64x64_int8.xml -------------------------------------------------------------------------------- /models/emotion_recognition_lfw_64x64/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/emotion_recognition_lfw_64x64/model.yml -------------------------------------------------------------------------------- /models/face-recognition-arcface-112x112/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/face-recognition-arcface-112x112/README.md -------------------------------------------------------------------------------- /models/face-recognition-arcface-112x112/face-recognition-arcface-112x112.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/face-recognition-arcface-112x112/face-recognition-arcface-112x112.xml -------------------------------------------------------------------------------- /models/face-recognition-arcface-112x112/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/face-recognition-arcface-112x112/model.yml -------------------------------------------------------------------------------- /models/face_detection_yunet_160x120/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/face_detection_yunet_160x120/README.md -------------------------------------------------------------------------------- /models/face_detection_yunet_160x120/face_detection_yunet_160x120.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/face_detection_yunet_160x120/face_detection_yunet_160x120.xml -------------------------------------------------------------------------------- /models/face_detection_yunet_160x120/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/face_detection_yunet_160x120/model.yml -------------------------------------------------------------------------------- /models/face_detection_yunet_wider_120x160/face_detection_yunet_wider_120x160.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/face_detection_yunet_wider_120x160/face_detection_yunet_wider_120x160.xml -------------------------------------------------------------------------------- /models/face_detection_yunet_wider_120x160/face_detection_yunet_wider_120x160_int8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/face_detection_yunet_wider_120x160/face_detection_yunet_wider_120x160_int8.xml -------------------------------------------------------------------------------- /models/face_detection_yunet_wider_120x160/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/face_detection_yunet_wider_120x160/model.yml -------------------------------------------------------------------------------- /models/facemesh_192x192/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/facemesh_192x192/README.md -------------------------------------------------------------------------------- /models/facemesh_192x192/facemesh_192x192.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/facemesh_192x192/facemesh_192x192.xml -------------------------------------------------------------------------------- /models/facemesh_192x192/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/facemesh_192x192/model.yml -------------------------------------------------------------------------------- /models/facial_landmarks_68_160x160/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/facial_landmarks_68_160x160/README.md -------------------------------------------------------------------------------- /models/facial_landmarks_68_160x160/facial_landmarks_68_160x160.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/facial_landmarks_68_160x160/facial_landmarks_68_160x160.xml -------------------------------------------------------------------------------- /models/facial_landmarks_68_160x160/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/facial_landmarks_68_160x160/model.yml -------------------------------------------------------------------------------- /models/fast_depth_256x320/fast_depth_256x320.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/fast_depth_256x320/fast_depth_256x320.xml -------------------------------------------------------------------------------- /models/fast_depth_256x320/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/fast_depth_256x320/model.yml -------------------------------------------------------------------------------- /models/fast_depth_480x640/fast_depth_480x640.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/fast_depth_480x640/fast_depth_480x640.xml -------------------------------------------------------------------------------- /models/fast_depth_480x640/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/fast_depth_480x640/model.yml -------------------------------------------------------------------------------- /models/ghostnet_320x256/ghostnet_320x256.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/ghostnet_320x256/ghostnet_320x256.xml -------------------------------------------------------------------------------- /models/ghostnet_320x256/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/ghostnet_320x256/model.yml -------------------------------------------------------------------------------- /models/hand_landmark_224x224/hand_landmark_224x224.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/hand_landmark_224x224/hand_landmark_224x224.xml -------------------------------------------------------------------------------- /models/hand_landmark_224x224/hand_landmark_224x224_int8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/hand_landmark_224x224/hand_landmark_224x224_int8.xml -------------------------------------------------------------------------------- /models/hand_landmark_224x224/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/hand_landmark_224x224/model.yml -------------------------------------------------------------------------------- /models/hrdepth_192x640/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/hrdepth_192x640/README.md -------------------------------------------------------------------------------- /models/hrdepth_192x640/hrdepth_192x640.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/hrdepth_192x640/hrdepth_192x640.xml -------------------------------------------------------------------------------- /models/hrdepth_192x640/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/hrdepth_192x640/model.yml -------------------------------------------------------------------------------- /models/image_quality_assessment_256x256/image_quality_assessment_256x256.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/image_quality_assessment_256x256/image_quality_assessment_256x256.xml -------------------------------------------------------------------------------- /models/image_quality_assessment_256x256/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/image_quality_assessment_256x256/model.yml -------------------------------------------------------------------------------- /models/inceptionv4_299x299/inceptionv4_299x299.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/inceptionv4_299x299/inceptionv4_299x299.xml -------------------------------------------------------------------------------- /models/inceptionv4_299x299/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/inceptionv4_299x299/model.yml -------------------------------------------------------------------------------- /models/mask_detection_300x300/mask_detection_300x300.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mask_detection_300x300/mask_detection_300x300.xml -------------------------------------------------------------------------------- /models/mask_detection_300x300/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mask_detection_300x300/model.yml -------------------------------------------------------------------------------- /models/mask_rcnn_resnet50_coco_300x300/mask_rcnn_resnet50_coco_300x300.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mask_rcnn_resnet50_coco_300x300/mask_rcnn_resnet50_coco_300x300.xml -------------------------------------------------------------------------------- /models/mask_rcnn_resnet50_coco_300x300/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mask_rcnn_resnet50_coco_300x300/model.yml -------------------------------------------------------------------------------- /models/megadepth/megadepth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/megadepth/megadepth.xml -------------------------------------------------------------------------------- /models/megadepth/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/megadepth/model.yml -------------------------------------------------------------------------------- /models/micronet_m0_224x224/micronet_m0_224x224.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/micronet_m0_224x224/micronet_m0_224x224.xml -------------------------------------------------------------------------------- /models/micronet_m0_224x224/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/micronet_m0_224x224/model.yml -------------------------------------------------------------------------------- /models/mobile_object_localizer_192x192/mobile_object_localizer_192x192.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mobile_object_localizer_192x192/mobile_object_localizer_192x192.xml -------------------------------------------------------------------------------- /models/mobile_object_localizer_192x192/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mobile_object_localizer_192x192/model.yml -------------------------------------------------------------------------------- /models/mobilenetv2_imagenet_embedder_224x224/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mobilenetv2_imagenet_embedder_224x224/README.md -------------------------------------------------------------------------------- /models/mobilenetv2_imagenet_embedder_224x224/mobilenetv2_imagenet_embedder_224x224.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mobilenetv2_imagenet_embedder_224x224/mobilenetv2_imagenet_embedder_224x224.xml -------------------------------------------------------------------------------- /models/mobilenetv2_imagenet_embedder_224x224/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mobilenetv2_imagenet_embedder_224x224/model.yml -------------------------------------------------------------------------------- /models/mobileone_s0_imagenet_224x224/mobileone_s0_imagenet_224x224.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mobileone_s0_imagenet_224x224/mobileone_s0_imagenet_224x224.xml -------------------------------------------------------------------------------- /models/mobileone_s0_imagenet_224x224/mobileone_s0_imagenet_224x224_int8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mobileone_s0_imagenet_224x224/mobileone_s0_imagenet_224x224_int8.xml -------------------------------------------------------------------------------- /models/mobileone_s0_imagenet_224x224/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/mobileone_s0_imagenet_224x224/model.yml -------------------------------------------------------------------------------- /models/nanosam_resnet18_image_encoder_1024x1024/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/nanosam_resnet18_image_encoder_1024x1024/model.yml -------------------------------------------------------------------------------- /models/nanosam_resnet18_image_encoder_1024x1024/nanosam_resnet18_image_encoder_1024x1024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/nanosam_resnet18_image_encoder_1024x1024/nanosam_resnet18_image_encoder_1024x1024.xml -------------------------------------------------------------------------------- /models/padim_wood_256x256/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/padim_wood_256x256/model.yml -------------------------------------------------------------------------------- /models/padim_wood_256x256/padim_wood_256x256.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/padim_wood_256x256/padim_wood_256x256.xml -------------------------------------------------------------------------------- /models/palm_detection_128x128/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/palm_detection_128x128/README.md -------------------------------------------------------------------------------- /models/palm_detection_128x128/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/palm_detection_128x128/model.yml -------------------------------------------------------------------------------- /models/palm_detection_128x128/palm_detection_128x128.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/palm_detection_128x128/palm_detection_128x128.xml -------------------------------------------------------------------------------- /models/palm_detection_128x128_decoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/palm_detection_128x128_decoding/README.md -------------------------------------------------------------------------------- /models/palm_detection_128x128_decoding/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/palm_detection_128x128_decoding/model.yml -------------------------------------------------------------------------------- /models/palm_detection_128x128_decoding/palm_detection_128x128_decoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/palm_detection_128x128_decoding/palm_detection_128x128_decoding.xml -------------------------------------------------------------------------------- /models/palm_detection_192x192/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/palm_detection_192x192/model.yml -------------------------------------------------------------------------------- /models/palm_detection_192x192/palm_detection_192x192.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/palm_detection_192x192/palm_detection_192x192.xml -------------------------------------------------------------------------------- /models/palm_detection_192x192/palm_detection_192x192_int8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/palm_detection_192x192/palm_detection_192x192_int8.xml -------------------------------------------------------------------------------- /models/person-reidentification-retail-0031_96x48/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/person-reidentification-retail-0031_96x48/model.yml -------------------------------------------------------------------------------- /models/person-reidentification-retail-0031_96x48/person-reidentification-retail-0031_96x48.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/person-reidentification-retail-0031_96x48/person-reidentification-retail-0031_96x48.xml -------------------------------------------------------------------------------- /models/qr_code_detection_384x384/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/qr_code_detection_384x384/README.md -------------------------------------------------------------------------------- /models/qr_code_detection_384x384/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/qr_code_detection_384x384/model.yml -------------------------------------------------------------------------------- /models/qr_code_detection_384x384/qr_code_detection_384x384.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/qr_code_detection_384x384/qr_code_detection_384x384.xml -------------------------------------------------------------------------------- /models/sbd_mask_classification_224x224/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/sbd_mask_classification_224x224/README.md -------------------------------------------------------------------------------- /models/sbd_mask_classification_224x224/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/sbd_mask_classification_224x224/model.yml -------------------------------------------------------------------------------- /models/sbd_mask_classification_224x224/sbd_mask_classification_224x224.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/sbd_mask_classification_224x224/sbd_mask_classification_224x224.xml -------------------------------------------------------------------------------- /models/scdepth_256x832/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/scdepth_256x832/README.md -------------------------------------------------------------------------------- /models/scdepth_256x832/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/scdepth_256x832/model.yml -------------------------------------------------------------------------------- /models/scdepth_256x832/scdepth_256x832.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/scdepth_256x832/scdepth_256x832.xml -------------------------------------------------------------------------------- /models/shufflenetv2_224x224/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/shufflenetv2_224x224/model.yml -------------------------------------------------------------------------------- /models/shufflenetv2_224x224/shufflenetv2_224x224.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/shufflenetv2_224x224/shufflenetv2_224x224.xml -------------------------------------------------------------------------------- /models/yml_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yml_helper.py -------------------------------------------------------------------------------- /models/yolop_320x320/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolop_320x320/model.yml -------------------------------------------------------------------------------- /models/yolop_320x320/yolop_320x320.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolop_320x320/yolop_320x320.xml -------------------------------------------------------------------------------- /models/yolov3_coco_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov3_coco_416x416/model.yml -------------------------------------------------------------------------------- /models/yolov3_coco_416x416/yolov3_coco_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov3_coco_416x416/yolov3_coco_416x416.xml -------------------------------------------------------------------------------- /models/yolov4_coco_608x608/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov4_coco_608x608/model.yml -------------------------------------------------------------------------------- /models/yolov4_coco_608x608/yolov4_coco_608x608.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov4_coco_608x608/yolov4_coco_608x608.xml -------------------------------------------------------------------------------- /models/yolov4_tiny_coco_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov4_tiny_coco_416x416/model.yml -------------------------------------------------------------------------------- /models/yolov4_tiny_coco_416x416/yolov4_tiny_coco_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov4_tiny_coco_416x416/yolov4_tiny_coco_416x416.xml -------------------------------------------------------------------------------- /models/yolov5n_coco_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov5n_coco_416x416/model.yml -------------------------------------------------------------------------------- /models/yolov5n_coco_416x416/yolov5n_coco_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov5n_coco_416x416/yolov5n_coco_416x416.xml -------------------------------------------------------------------------------- /models/yolov5n_coco_640x352/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov5n_coco_640x352/model.yml -------------------------------------------------------------------------------- /models/yolov5n_coco_640x352/yolov5n_coco_640x352.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov5n_coco_640x352/yolov5n_coco_640x352.xml -------------------------------------------------------------------------------- /models/yolov6n_coco_416x416/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_coco_416x416/config.json -------------------------------------------------------------------------------- /models/yolov6n_coco_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_coco_416x416/model.yml -------------------------------------------------------------------------------- /models/yolov6n_coco_416x416/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_coco_416x416/readme.md -------------------------------------------------------------------------------- /models/yolov6n_coco_416x416/yolov6n_coco_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_coco_416x416/yolov6n_coco_416x416.xml -------------------------------------------------------------------------------- /models/yolov6n_coco_640x640/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_coco_640x640/model.yml -------------------------------------------------------------------------------- /models/yolov6n_coco_640x640/yolov6n_coco_640x640.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_coco_640x640/yolov6n_coco_640x640.xml -------------------------------------------------------------------------------- /models/yolov6n_thermal_people_256x192/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_thermal_people_256x192/model.yml -------------------------------------------------------------------------------- /models/yolov6n_thermal_people_256x192/yolov6n_thermal_people_256x192.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_thermal_people_256x192/yolov6n_thermal_people_256x192.xml -------------------------------------------------------------------------------- /models/yolov6n_thermal_people_vehicles_256x192/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_thermal_people_vehicles_256x192/model.yml -------------------------------------------------------------------------------- /models/yolov6n_thermal_people_vehicles_256x192/yolov6n_thermal_people_vehicles_256x192.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6n_thermal_people_vehicles_256x192/yolov6n_thermal_people_vehicles_256x192.xml -------------------------------------------------------------------------------- /models/yolov6nr1_coco_512x288/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr1_coco_512x288/model.yml -------------------------------------------------------------------------------- /models/yolov6nr1_coco_512x288/yolov6nr1_coco_512x288.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr1_coco_512x288/yolov6nr1_coco_512x288.xml -------------------------------------------------------------------------------- /models/yolov6nr1_coco_512x288/yolov6nr1_coco_512x288_int8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr1_coco_512x288/yolov6nr1_coco_512x288_int8.xml -------------------------------------------------------------------------------- /models/yolov6nr1_coco_640x352/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr1_coco_640x352/model.yml -------------------------------------------------------------------------------- /models/yolov6nr1_coco_640x352/yolov6nr1_coco_640x352.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr1_coco_640x352/yolov6nr1_coco_640x352.xml -------------------------------------------------------------------------------- /models/yolov6nr1_coco_640x352/yolov6nr1_coco_640x352_int8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr1_coco_640x352/yolov6nr1_coco_640x352_int8.xml -------------------------------------------------------------------------------- /models/yolov6nr3_coco_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr3_coco_416x416/model.yml -------------------------------------------------------------------------------- /models/yolov6nr3_coco_416x416/yolov6nr3_coco_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr3_coco_416x416/yolov6nr3_coco_416x416.xml -------------------------------------------------------------------------------- /models/yolov6nr3_coco_640x352/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr3_coco_640x352/model.yml -------------------------------------------------------------------------------- /models/yolov6nr3_coco_640x352/yolov6nr3_coco_640x352.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6nr3_coco_640x352/yolov6nr3_coco_640x352.xml -------------------------------------------------------------------------------- /models/yolov6t_coco_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6t_coco_416x416/model.yml -------------------------------------------------------------------------------- /models/yolov6t_coco_416x416/yolov6t_coco_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov6t_coco_416x416/yolov6t_coco_416x416.xml -------------------------------------------------------------------------------- /models/yolov7_coco_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7_coco_416x416/model.yml -------------------------------------------------------------------------------- /models/yolov7_coco_416x416/yolov7_coco_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7_coco_416x416/yolov7_coco_416x416.xml -------------------------------------------------------------------------------- /models/yolov7tiny_coco_416x416/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_coco_416x416/config.json -------------------------------------------------------------------------------- /models/yolov7tiny_coco_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_coco_416x416/model.yml -------------------------------------------------------------------------------- /models/yolov7tiny_coco_416x416/yolov7tiny_coco_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_coco_416x416/yolov7tiny_coco_416x416.xml -------------------------------------------------------------------------------- /models/yolov7tiny_coco_640x352/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_coco_640x352/config.json -------------------------------------------------------------------------------- /models/yolov7tiny_coco_640x352/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_coco_640x352/model.yml -------------------------------------------------------------------------------- /models/yolov7tiny_coco_640x352/yolov7tiny_coco_640x352.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_coco_640x352/yolov7tiny_coco_640x352.xml -------------------------------------------------------------------------------- /models/yolov7tiny_waldo_288x512/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_waldo_288x512/config.json -------------------------------------------------------------------------------- /models/yolov7tiny_waldo_288x512/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_waldo_288x512/model.yml -------------------------------------------------------------------------------- /models/yolov7tiny_waldo_288x512/yolov7tiny_waldo_288x512.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_waldo_288x512/yolov7tiny_waldo_288x512.xml -------------------------------------------------------------------------------- /models/yolov7tiny_waldo_416x768/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_waldo_416x768/config.json -------------------------------------------------------------------------------- /models/yolov7tiny_waldo_416x768/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_waldo_416x768/model.yml -------------------------------------------------------------------------------- /models/yolov7tiny_waldo_416x768/yolov7tiny_waldo_416x768.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov7tiny_waldo_416x768/yolov7tiny_waldo_416x768.xml -------------------------------------------------------------------------------- /models/yolov8n_coco_416x416/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov8n_coco_416x416/model.yml -------------------------------------------------------------------------------- /models/yolov8n_coco_416x416/yolov8n_coco_416x416.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov8n_coco_416x416/yolov8n_coco_416x416.xml -------------------------------------------------------------------------------- /models/yolov8n_coco_640x352/model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov8n_coco_640x352/model.yml -------------------------------------------------------------------------------- /models/yolov8n_coco_640x352/yolov8n_coco_640x352.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxonis/depthai-model-zoo/HEAD/models/yolov8n_coco_640x352/yolov8n_coco_640x352.xml --------------------------------------------------------------------------------