Hi, I successfully converted a COCO checkpoint of YOLOv5n-seg using http://tools.luxonis.com/. Then, I developed a code for handling OAK with the converted .blob file, following this tutorial/example. To parse the YOLO model, I am using the NeuralNetwork node from DepthAI. The code seems fine, but I can't obtain the segmentation masks from the model's inference.
I get three layers named "output1_yolov5", "output2_yolov5" and "output3_yolov5", after running getAllLayerNames(), and when I use getLayerFp16("output3_yolov5") for instance, I obtain a list of 140400 elements and I don't have a clue what their meaning is.
So my question is how can we use a YOLOv5-seg model in the OAK device and got the masks out of it? Is this even possible with YOLO models? I saw that someone did this with DeepLabV3+, but I'm really interested in using YOLOv5/YOLOv8 models.
Thank you in advance.