随笔分类 - 目标检测
摘要:一、yolov3 FPS on RTX 2070 (R) and Tesla V100 (V): csresnext50-panet-spp-original-optimal.cfg - 65.4% mAP@0.5 (43.2% AP@0.5:0.95) - 32(R) FPS - 100.5 BF
阅读全文
摘要:import numpy as np box1 = np.array([[0,0,100,100],[0,0,100,100]]) box2 = np.array([[50,50,100,100],[0,0,80,80]]) def calc_iou(boxes1, boxes2): # calcu
阅读全文
摘要:#!/usr/bin/env python # coding: utf-8 # @author: lwh # @file: mouse_find.py # @time: 2021/1/06 15:54 from os import getcwd from xml.etree import Eleme
阅读全文