Hello I am new to OPENCV/CVAT, I use openvino to run auto annotation, I want to use YoloV3 for this mission.
I need to convert Yolo model to OpenVINO format for opencv/cvat/auto_annotation. https://github.com/opencv/cvat/tree/develop/cvat/apps/auto_annotation.
To annotate a task with a custom model I need to prepare 4 files:
- Model config (*.xml) - a text file with network configuration.
- Model weights (*.bin) - a binary file with trained weights.
- Label map (*.json) - a simple json file with label_map dictionary like object with string values for label numbers.
- Interpretation script (*.py) - a file used to convert net output layer to a predefined structure which can be processed by CVAT. This code will be run inside a restricted python's environment, but it's possible to use some builtin functions like str, int, float, max, min, range.
I converted Yolo model to OpenVINO format and created xml and bin files. I write the mapping lson file. Now I need to write interpretation python script for Yolo's region based output. How can I do that? Is there an interrupt file from tensorflow models to openvino?