logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

目标检测中IOU的介绍(Intersection over Union)

IOU的输入1 ground-truth的bounding box2 预测的bounding boxIOU的输出输出为值在[0,1]之间的数字IOU = 两个矩形交集的面积/两个矩形的并集面积Reference:https://www.pyimagesearch.com/2016/11/07/intersection-over-union-iou

#深度学习#目标检测
Matlab中Robotics toolbox的安装及使用

安装robotics toolboxRobotics Toolbox官网1 下载第一个(.mltbx)可以直接打开安装,如果出现内存不足的话建议下载第二个安装包(.zip)格式的第二个安装包,将解压后的文件夹”rvctools”复制到matlab安装路径下的toolbox文件夹中2 打开matlab,点击file-》setpath-》add with subfolder,然后选择这个robo

#matlab
Linux下载安装sshd服务,用SecureCRT连接虚拟机

1、sudo apt-get install openssh-server(这条命令不一定需要去记,可以通过输入sshd查找,会出现如下提示)The program 'sshd' is currently not installed. You can install it by typing:sudo apt-get install openssh-server2、Windows上下载安装Se

虚拟机Linux如何使用笔记本电脑的前置摄像头

一、Windows设置1.点击开始->运行,在对话框中输入”services.msc”,回车,打开windows服务管理器。2.在服务列表中选中”VMware USB Arbitration Service”,双击打开属性对话框,再选择”启动”,就能启动VMware USB Arbitration Service服务了。二、VMware设置1、设置虚拟机:在虚拟机菜单栏中选择“虚拟机(M)”->选

Python出现ValueError: setting an array element with a sequence问题

Python编程的时候出现如下问题:ValueError: setting an array element with a sequence.这个问题是由于数组append的时候,前后数组 shape不一致导致的,必须一致的才能append....

LaTex插入超链接

1 代码1.1 使用的包\usepackage[colorlinks,linkcolor=blue]{hyperref}1.2 插入链接的代码\href{http://v.youku.com/}{Youku video}

Tensorflow测试Mnist手写数据集

测试Minist 数据集#!/usr/bin/pythonimport tensorflow as tfimport sysfrom tensorflow.examples.tutorials.mnist import input_datadef weight_variable(shape):initial = tf.truncated_normal(shape, stddev=0.1)

到底了