自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

一千零一夜的博客

以此博客,见证我的终身学习

  • 博客(7)
  • 资源 (3)
  • 收藏
  • 关注

原创 python 两直线的夹角

class Point(object): def __init__(self, x=0, y=0): self.x = x self.y = yclass Line(object): # 直线由两个点组成 def __init__(self, p1=Point(0, 0), p2=Point(2, 2)): self.p...

2019-08-22 10:17:52 9062

原创 pyplot画list数据的直方图

from matplotlib import pyplot as plt # 参数依次为list,抬头,X轴标签,Y轴标签,XY轴的范围 def draw_hist(myList, Title, Xlabel, Ylabel, Xmin, Xmax, Ymin, Ymax): plt.hist(myList, 50) # bins = 50,顺便可以控制...

2019-08-19 17:21:57 7997

原创 画UML类图工具

在线画图工具:http://www.plantuml.com/plantuml/uml/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000语法说明:http://plantuml.com/zh/class-diagram

2019-08-19 13:20:07 9901

原创 免费GPU——Google Colab提供的Tesla K80

Google Colab简介Google Colaboratory是谷歌开放的一款研究工具,主要用于机器学习的开发和研究。这款工具现在可以免费使用,但是不是永久免费暂时还不确定。Google Colab最大的好处是给广大的AI开发者提供了免费的GPU使用!GPU型号是Tesla K80!你可以在上面轻松地跑例如:Keras、Tensorflow、Pytorch等框架。(1)12G显存,...

2019-08-12 09:53:11 5551 1

原创 GitLab使用教程

GitLab操作类似于GitHub:https://blog.csdn.net/jizhidexiaoming/article/details/98061609一、本地仓库上传到远程仓库1,本地mkdir tools2,要上传的scripts复制到该目录下3,然后初始化工作:4, add到暂存区,再commit到本地仓库5, 查看自己git的信息6,配置秘钥...

2019-08-02 18:01:06 587

转载 Git和GitHub操作详细教程

参考:https://www.imooc.com/article/20411https://blog.csdn.net/slwhy/article/details/78937985跟着上面的教程,我在Unbuntu系统下,操作了一遍。在此基础上,做了更加详细的介绍。可以结合着看看。目录参考:https://www.imooc.com/article/20411htt...

2019-08-02 16:05:19 648

原创 python 找图像中的圆

一,动态自适应'''此方法是一种动态自适应找圆方法使用方法:im_floodfill = get_adaptive_circle(crop_img)输入原图crop_img返回mask'''import osimport cv2import numpy as np# 求最大连通域的中心点坐标# def centroid(max_contour):# m...

2019-08-01 13:13:16 5167

opencv4.5.0-gpu版(附加cuda10)

window,cuda10环境下,编译的opencv4.5.0-gpu版。 opencv目录: bin include x64 cuda10目录: bin include lib

2023-09-01

图像分类数据集:hymenoptera-data

彩色图像,包含了两个类别:蚂蚁和蜜蜂。 可用于图像分类任务。 文件夹形式如下: train: ants bees val: ants bees

2022-10-14

labelme标注的voc分割数据

注意:该数据集是用于图像分割的,且是人物图像分割。 包含了训练集合和测试集合。 训练集:32张 测试集:8张 由于数据集小,所以此数据集只用于快速验证分割网络的搭建。

2022-08-16

opencv4.5.0对应的.cache文件夹

里面的文件完整,如下所示: ade data ffmpeg ippicv nvidia_optical_flow xfeatures2d .gitignore

2022-02-26

分割模型fcn.onnx

github下载太慢了,这里备份下。 原始下载路径:https://github.com/onnx/models/blob/main/vision/object_detection_segmentation/fcn/model/fcn-resnet50-11.tar.gz 其他权重下载路径:https://github.com/onnx/models/tree/main/vision/object_detection_segmentation/fcn

2022-02-12

alexnet.onnx权重

生成该权重代码: import torch import torchvision # use Trace to export onnx model dummy_input = torch.randn(10, 3, 224, 224, device='cuda') # 定义模型的输入shape model = torchvision.models.alexnet(pretrained=True).cuda() # if delete cuda(), will generate onnx model with no cuda. input_names = ['inputs'] output_names = ['outputs'] torch.onnx.export(model, dummy_input, f='alexnet.onnx', verbose=True, input_names=input_names, output_names=output_names, opset_version=10)

2022-02-12

空空如也

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

TA关注的人

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