摘要:
类间:也就是不同类之间也进行nms 类内:就是只把同类的bboxes进行nms numpy实现 nms类间+类内: import numpy as np # 类间nms def nms(bboxes, scores, thresh): x1, y1, x2, y2 = bboxes[:, 0], b 阅读全文
摘要:
面试问到了,让手撕数据增强,图片+标签。这里整理一下,直接上代码。 import math import cv2 import numpy as np def pan(img, anns, size=(50, 100)): ''' :param img: np.ndarray[h,w,c] :par 阅读全文