Python
fo4rever
坚持写点什么
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
双线性插值理解与Python实现
双线性插值公式就是这么推来的,主要就是在x方向和y方向上都进行线性插值,利用临近点进行计算在计算的时候利用了几何中心对齐来优化原来的直接缩放#!/usr/bin/python# -*- coding: utf-8 -*-__author__ = 'Alex Wang'import numpy as npimport cv2import time'''...原创 2018-08-19 22:32:49 · 8426 阅读 · 5 评论 -
Non-maximum suppression python实现
# coding=utf-8import numpy as npimport cv2def nms(bboxs, thresh): # get all parameters x1, y1, x2, y2, scores = [bboxs[:, i] for i in range(len(bboxs[0]))] # calculate all areas o...原创 2019-02-18 13:10:52 · 685 阅读 · 0 评论 -
比较好的一些YOLO解读以及代码实现
YOLO V1解读:https://zhuanlan.zhihu.com/p/46691043非极大值抑制:https://blog.youkuaiyun.com/sinat_37011812/article/details/87613324YOLO V2解读:https://zhuanlan.zhihu.com/p/47575929Anchor kmeans 聚类:https://git...原创 2019-02-18 22:42:16 · 1762 阅读 · 0 评论 -
比较好的SSD解读以及代码实现
代码:https://github.com/lufficc/SSD解读:https://blog.youkuaiyun.com/qq_34784753/article/details/78889206 https://www.bbsmax.com/A/gGdX0Vepd4/ https://blog.youkuaiyun.com/u014380165/art...原创 2019-02-21 10:53:30 · 2216 阅读 · 0 评论 -
比较好的Faster R-CNN 解读以及代码实现
解读:http://shartoo.github.io/RCNN-series/代码实现:https://github.com/jwyang/faster-rcnn.pytorch原创 2019-04-03 15:59:34 · 938 阅读 · 0 评论 -
比较好的Mask R-CNN解读以及代码实现
解读:https://blog.youkuaiyun.com/zziahgf/article/details/78730859https://blog.youkuaiyun.com/baobei0112/article/details/79130855https://zhuanlan.zhihu.com/p/37998710ROI Align 和 ROI Pooling 的区别:http://...原创 2019-02-23 14:06:02 · 4379 阅读 · 0 评论 -
Object Detection mAP计算
def voc_ap(rec, prec, use_07_metric=False): """Compute VOC AP given precision and recall. If use_07_metric is true, uses the VOC 07 11-point method (default:False). """ if use_07_me...原创 2019-03-13 15:56:45 · 475 阅读 · 0 评论
分享