-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deploy yolov8 on OAK-D #519
Comments
Hi @NQHuy1905 , |
@Erol444 I see, but in the post process , i have non_max_suppression that have build in torchvision in that, so can OAK use torch library also |
Hi @NQHuy1905 , |
@Erol444 so the latency of preprocess and infer will base on OAK, and the latency of postprocess like NMS will base on host device hardware right? |
Hi @NQHuy1905 , |
Hello. I tried to implement the YOLOv8-Pose with the "Spatial Tiny-yolo example" but I couldn't get the keypoints. I have converted the model to "yolov8n-pose_openvino_2022.1_6shave.blob". I tried a lot of times and didn't get the keypoints. I would appreciate it if someone could help me. The code is below: `#!/usr/bin/env python3 from pathlib import Path arg = "" def getPath(path): nnBlobPath = getPath('models/yolov8n-pose_openvino_2022.1_6shave.blob') if not Path(nnBlobPath).exists(): labelMapPose = [ syncNN = True xoutRgb = pipeline.create(dai.node.XLinkOut) xoutRgb.setStreamName("rgb") camRgb.setPreviewSize(640, 640) camRgb.setResolution(dai.ColorCameraProperties.SensorResolution.THE_1080_P) monoLeft.setResolution(dai.MonoCameraProperties.SensorResolution.THE_400_P) stereo.setDefaultProfilePreset(dai.node.StereoDepth.PresetMode.HIGH_DENSITY) spatialDetectionNetwork.setBlobPath(nnBlobPath) spatialDetectionNetwork.setNumClasses(80) monoLeft.out.link(stereo.left) camRgb.preview.link(spatialDetectionNetwork.input) spatialDetectionNetwork.out.link(xoutNN.input) stereo.depth.link(spatialDetectionNetwork.inputDepth) with dai.Device(pipeline) as device:
|
Hi, i am trying to deploy yolov8-pose on OAK-D
I have seen some tutorial before but it is about old version of yolo
How should i do it
The text was updated successfully, but these errors were encountered: