YOLO-Minimal
YOLO-Minimal copied to clipboard
yolov1,v2 a minimal tutorial-like implementation on PyTorch
Results
3
YOLO-Minimal issues
Sort by
recently updated
recently updated
newest added
Hi, thanks for your code firstly! I‘m running it , but i don't know what the results it will be shown like. Is there any test image with bboxs? Or...
You do `img = cv2.resize(img, (self.image_size, self.image_size))` after `cvtransform` and `make_target`, witch means that the bboxes' are fixed but image size is changed. I my opinion, this operation will do...