samrere
Results
2
issues of
samrere
There's a tiny mistake in the function `show_mask_on_image`. The `heatmap` you get from cv2 is in bgr format, so you need to convert it to rgb before adding to the...
Hi just wanna report a small mistake in YOLO dataset.py ```python class VOCDataset(...): def __init__(...): self.annotations = pd.read_csv(csv_file) ``` should be self.annotations = pd.read_csv(csv_file, header=None), otherwise the first line of...