会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
牛郎
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
6
7
8
9
10
11
12
13
14
···
20
下一页
2020年5月13日
python字典套字典
摘要: 定义字典 familyinfo = { "family name":"Python", "family structure":[ {"name":"Taro", "age":32, "sex":"male"}, {"name":"Hanako", "age":31, "sex":"female"},
阅读全文
posted @ 2020-05-13 11:29 牛郎
阅读(1579)
评论(0)
推荐(0)
2020年5月6日
linux下将多个ts文件合并为一个MP4文件
摘要: 1. 安装ffmpeg工具 sudo apt install ffmpeg 2. 确保所有ts文件无损坏后,确保当前目录(即存放ts文件的目录)无txt文件及mp4文件,在存放ts文件的目录下建立test文件夹,将所有ts文件拷贝到test,运行以下脚本(该脚本与test文件夹在同一级目录) 大致目
阅读全文
posted @ 2020-05-06 16:22 牛郎
阅读(3139)
评论(0)
推荐(0)
2020年5月2日
前端学习1-概念理解
摘要: 1. 我们看到的网页是浏览器解析HTML文件呈现给我们的; 2. HTML是一种文本,给浏览器看的文本; 3. css是一种样式,写在HTML里面,规定了内容样式,如文字的颜色、大小等; 4. JavaScript是一种交互逻辑,写在HTML里面,规定了交互逻辑,如点击文字,文字由红色变为黑色; 5
阅读全文
posted @ 2020-05-02 10:58 牛郎
阅读(145)
评论(0)
推荐(0)
2020年4月16日
python 异常类型大全
摘要: try except 处理异常真舒服!!!
阅读全文
posted @ 2020-04-16 16:04 牛郎
阅读(403)
评论(0)
推荐(0)
2020年4月14日
python+opencv实现轮廓形状拟合
摘要: https://blog.csdn.net/yukinoai/article/details/87892718
阅读全文
posted @ 2020-04-14 13:19 牛郎
阅读(1685)
评论(0)
推荐(0)
2020年4月13日
ubuntu无法安装vim、tree等解决办法
摘要: rm /etc/apt/sources.list.d/* 删除该目录下所有文件
阅读全文
posted @ 2020-04-13 13:34 牛郎
阅读(501)
评论(0)
推荐(0)
2020年4月12日
报错 version `GLIBCXX_3.4.22' not found
摘要: from . import pypocketfft as pfft ImportError: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.22' not found 如上,我的程序需要使用tf,但我换了几个版本的tf仍
阅读全文
posted @ 2020-04-12 16:52 牛郎
阅读(3434)
评论(0)
推荐(0)
2020年3月31日
cv2给灰度图上色(用模型上色)
摘要: https://blog.csdn.net/github_39611196/article/details/84892324
阅读全文
posted @ 2020-03-31 11:21 牛郎
阅读(599)
评论(0)
推荐(0)
cv2 exposureFusion (曝光融合)
摘要: import cv2 import numpy as np import sys filenames = ['./images/memorial0061.jpg', './images/memorial0062.jpg', './images/memorial0063.jpg', './images
阅读全文
posted @ 2020-03-31 10:00 牛郎
阅读(627)
评论(0)
推荐(0)
2020年3月30日
python+opencv图像增强——拉普拉斯
摘要: img = cv2.imread(r'F:\python\work\cv_learn\clipboard.png',1) cv2.imshow('input',img) kernel = np.array([[0, -1, 0], [0, 5, 0], [0, -1, 0]])#定义卷积核 imag
阅读全文
posted @ 2020-03-30 16:23 牛郎
阅读(2189)
评论(0)
推荐(0)
上一页
1
···
6
7
8
9
10
11
12
13
14
···
20
下一页
公告