[Deep Vision Library] How can I use my own YOLO-v5?
hello. Nice to meet you.
- Library (url): GitHub - cansik/deep-vision-processing: Deep computer-vision algorithms for the Processing framework.
- Source code (url): deep-vision-processing/src/main/java/ch/bildspur/vision/YOLONetwork.java at master · cansik/deep-vision-processing · GitHub
yolo = new YOLONetwork(model, weights, 256, 256);
yolo.setLabels(LABEL);
yolo.setup();
- In case of ‘yolo-v4’
- Match the ‘cfg file’ to the ‘model’ location.
- Match the ‘weights file’ to the ‘weights’ location.
- It works well.
- In case of ‘yolo-v5’
- Which file should be matched to the ‘model’ location?
- Can I match only one of ‘yolov5l.yaml’ or ‘yolov5m.yaml’ or ‘yolov5s.yaml’ in the ‘weights’ position?
I’m asking because I don’t know how to use it.
help.