自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Numpy之np.transpose矩阵转置

    对于一维数组:>>> import numpy as np>>> t=np.arange(4)  #  插入值0-3>>> tarray([0, 1, 2, 3])>>> t.transpose()array([0, 1, 2, 3])>>>由上可见,对于一维数组而言,nu

2018-11-14 17:49:53 8770 1

原创 zero-shot object detection

推荐搭配套餐:Python 2.7 Keras 2.1.4 OpenCV 2.4.13 Tensorflow 1.3.0或者:Python 3.5-3.6 Keras 2.0.8 OpenCV 3.4.0 Tensorflow 1.3.0 安装:1 本人套餐:NVIDIA-SMI 384.130CUDA Version 8.0.61CUDNN_VERSI...

2018-11-13 16:29:07 2100 2

原创 YOLO-V3 把玩 image.c demo.c

detector.c#include "network.h"#include "region_layer.h"#include "cost_layer.h"#include "utils.h"#include "parser.h"#include "box.h"#include "demo.h"#include "option_list.h

2018-11-13 16:23:05 3865

原创 YOLO-V3 视频检测函数流程解读 demo()

对demo函数的理解:demo.h的声明:void demo(char *cfgfile, char *weightfile, float thresh, float hier_thresh, int cam_index, const char *filename, char **names, int classes, int frame_skip, char *prefix, char...

2018-11-13 16:11:48 6016 6

原创 YOLO-V3 图片检测函数流程解读 draw_detection_v3()

YOLO-V2的运行函数路径为:yolo.c中的test_yolo()  -->  image.c中的draw_detections()  YOLO-V3的运行函数路径为:detector.c中的test_detector()  --> image.c中的draw_detections_v3()detector.c中的命令传入接口:box.h中的结构体定义:...

2018-11-13 16:03:51 5305 3

原创 python遍历文件夹种的文件,筛选复制,txt写

import os, shutil# 规范化绝对路径src_dir = os.getcwd() #得到当前py文件的路径# if not os.path.exists(dst_dir):# os.makedirs(dst_dir)# print("fistr_dir is:\t{}".format(fistr_dir))if os.path.exists(src_dir):...

2018-11-03 14:01:24 2495

转载 Ubuntu 截屏与录屏

Ubuntu 截图Ubuntu17.04自带有截图软件和截图快捷键,可以满足正常截图试用。在dash里面直接输入jie,第一个即是截图软件,打开如下图,运行比较稳定。截全屏通用快捷键PrintScreen,按下后如下图所示以上截图默认保存到 /用户/图片/目录下。 Ubuntu 屏录软件——Kazam安装方法:Ubuntu软件中心搜索kazam,安装即可,还是很方便...

2018-11-02 14:49:30 4354

原创 【全网第一篇】Gibson Env 搭建复现和使用解读

项目网址:http://gibson.vision论文:http://gibson.vision/Gibson_CVPR2018.pdf官方github链接:https://github.com/StanfordVL/GibsonEnv入选 CVPR2018 年的项目 Gibson Environment。这是一个主要适用于机器人导航任务的模拟平台。我们在传统的图形学渲染管线基础上进行...

2018-11-02 14:34:55 2491 1

空空如也

空空如也

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

TA关注的人

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