Hi, I would like to run yolov8s_seg model on my hailo8.
Cause I’m new to compiling/using segmentation models and would like to know how to get segmentation results and how to use them properly in my c++ project in RPI5.
First, I think I need to understand the following results which show the input/output data structures of yolov8s_seg.hef file.
Could you please kindly explain the data structures of output from yolov8s_seg model and how to get/use segmentation results in my c++ project? (E. g. I would like to get the each pixels of data from each segmentation area(instance) and store each of them as an image.)
\# hailortcli parse-hef yolov8s_seg.hef
Architecture HEF was compiled for: HAILO8
Network group name: yolov8s_seg, Multi Context - Number of contexts: 2
Network name: yolov8s_seg/yolov8s_seg
VStream infos:
Input yolov8s_seg/input_layer1 UINT8, NHWC(640x640x3)
Output yolov8s_seg/conv73 UINT8, NHWC(20x20x64)
Output yolov8s_seg/conv74 UINT8, NHWC(20x20x80)
Output yolov8s_seg/conv75 UINT8, NHWC(20x20x32)
Output yolov8s_seg/conv60 UINT8, FCR(40x40x64)
Output yolov8s_seg/conv61 UINT8, FCR(40x40x80)
Output yolov8s_seg/conv62 UINT8, NHWC(40x40x32)
Output yolov8s_seg/conv44 UINT8, FCR(80x80x64)
Output yolov8s_seg/conv45 UINT8, FCR(80x80x80)
Output yolov8s_seg/conv46 UINT8, FCR(80x80x32)
Output yolov8s_seg/conv48 UINT8, FCR(160x160x32)
Thank you for reading my question and for giving me any kinds of advice in advance.
Best regards,
SJ