上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页
摘要: 1. 安装ffmpeg工具 sudo apt install ffmpeg 2. 确保所有ts文件无损坏后,确保当前目录(即存放ts文件的目录)无txt文件及mp4文件,在存放ts文件的目录下建立test文件夹,将所有ts文件拷贝到test,运行以下脚本(该脚本与test文件夹在同一级目录) 大致目 阅读全文
posted @ 2020-05-06 16:22 牛郎 阅读(2939) 评论(0) 推荐(0) 编辑
摘要: 1. 我们看到的网页是浏览器解析HTML文件呈现给我们的; 2. HTML是一种文本,给浏览器看的文本; 3. css是一种样式,写在HTML里面,规定了内容样式,如文字的颜色、大小等; 4. JavaScript是一种交互逻辑,写在HTML里面,规定了交互逻辑,如点击文字,文字由红色变为黑色; 5 阅读全文
posted @ 2020-05-02 10:58 牛郎 阅读(139) 评论(0) 推荐(0) 编辑
摘要: try except 处理异常真舒服!!! 阅读全文
posted @ 2020-04-16 16:04 牛郎 阅读(393) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/yukinoai/article/details/87892718 阅读全文
posted @ 2020-04-14 13:19 牛郎 阅读(1672) 评论(0) 推荐(0) 编辑
摘要: rm /etc/apt/sources.list.d/* 删除该目录下所有文件 阅读全文
posted @ 2020-04-13 13:34 牛郎 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 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 牛郎 阅读(3300) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/github_39611196/article/details/84892324 阅读全文
posted @ 2020-03-31 11:21 牛郎 阅读(588) 评论(0) 推荐(0) 编辑
摘要: 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 牛郎 阅读(587) 评论(0) 推荐(0) 编辑
摘要: 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 牛郎 阅读(2163) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/enter89/article/details/90293971 阅读全文
posted @ 2020-03-30 09:14 牛郎 阅读(1274) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页