自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 YOLOv2 代码解析

1、preprocess_true_boxes这个函数是得到detectors_mask(最佳预测的anchor boxes,每一个true boxes都对应一个anchor boxes),即找到每一个true box对应的最佳的anchor box,yolov2只是在5个anchor box中选取与gt具有最大iou的anchor box进行预测;matching_true_boxes(用于...

2019-07-09 10:50:15 700

原创 NMS和softNMS代码

NMS代码:import numpy as npdef py_cpu_nms(dets, thresh): """Pure Python NMS baseline.""" x1 = dets[:, 0] y1 = dets[:, 1] x2 = dets[:, 2] y2 = dets[:, 3] scores = dets[:, 4]...

2019-04-12 11:18:27 616

原创 readtfrecord时出错

报错:OutOfRangeError (see above for traceback): PaddingFIFOQueue '_1_get_batch/batch/padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) [[Node: get_batch/ba...

2019-04-01 15:07:25 354 3

原创 tensorflow错误

报错信息:tensorflow.python.framework.errors_impl.NotFoundError: Failed to create a NewWriteableFile: dataset/record/train.tfrecords : ϵͳ\udcd5Ҳ\udcbb\udcb5\udcbdָ\udcb6\udca8\udcb5\udcc4·\udcbe\udcb6\ud...

2018-12-26 17:18:36 1416 2

转载 2018 PyCharm环境安装教程

转自:https://blog.csdn.net/elegentbeauty/article/details/79871440 2018 PyCharm环境安装教程环境准备:1.到PyCharm官网下载PyCharm安装包。2.下载了window版本的双击安装包进行安装。 3.自定义软件安装路径(建议路径中不要中文字符)如:F:\DevSoftware\Py...

2018-10-12 14:50:49 2013

原创 Git安装教程

Git下载地址:https://www.git-scm.com/download/win按照默认选项安装是可以的,也可以根据自己的需要来更改。配置path环境时,有三个选项use Git from Git Bash only Use Git from the Windows command Prompt Use Git and optional Unix tools from ...

2018-09-12 19:41:41 114

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除