自定义博客皮肤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)
  • 收藏
  • 关注

转载 读取批量文件

为了方便查询,import cv2import os import numpy as np root_path = ""dir = root_path+"images"+"/"count = 0for root,dir,files in os.walk(dir): for file in files: srcImg = cv2.imread(root_path+"...

2019-09-22 12:03:00 100

转载 gitlab CI/CD部署

安装依赖包,运行命令 sudo apt-get install curl openssh-server ca-certificates postfix执行完成后,出现邮件配置,选择Internet那一项(不带Smarthost的)gitlab1.png利用清华大学的镜像https://mirror.tuna.tsi...

2019-08-07 15:28:00 101

转载 opencv函数库及其参数

多边形逼近# 1.先找到轮廓img = cv2.imread('unregular.jpg', 0)_, thresh = cv2.threshold(img, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU)image, contours, hierarchy = cv2.findContours(thresh, 3, 2...

2019-08-06 11:18:00 143

转载 BUGET

RuntimeError: An attempt has been made to start a new process before the current process has finished its bootstrapping phase. This probably means that you are not using f...

2019-07-17 13:48:00 340

转载 python 库安装及其小问题

安装安装pytorchtorchvision时候,安装pytorch的支持库 torchvision。pip install torchvision报错,pip install torchvision 改为 pip3 install --no-deps torchvision 即可解决。转载于:https://www.cnblogs.com/bobokekemei...

2019-07-10 17:06:00 88

转载 作业函数题

void Attach(int c,int e,Polynomial *pRear){ Polynomial P; P=(Polynomial)malloc(sizeof(struct PolyNode)); P->coef=c; P->expon=e; P->link=NULL; (*pRear)->link=P; *p...

2019-01-21 15:24:00 165

转载 数据结构之多项式

数据结构之多项式下面是对多项式的基本输入和输出#include "stdio.h"#include "stdlib.h"typedef struct PolyNode *Polynomial;struct PolyNode{ int coef; int expon; Polynomial link;};Polynom...

2019-01-19 10:43:00 763

转载 谈谈我基本机器学习的过程和总结

这段时间在学习机器学习所以想总结一下。转载于:https://www.cnblogs.com/bobokekemeile/p/10190578.html

2018-12-28 14:56:00 76

空空如也

空空如也

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

TA关注的人

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