夏钺的博客

一条咸鱼

摘要: ubuntu20.04 python3.9.0 使用命令 pip install opencv-python 后报错 No module named 'cv2' 观察发现安装的日志中 Downloading opencv_contrib_python-4.5.5.64-cp36-abi3-manyl 阅读全文
posted @ 2022-03-26 16:48 Applied_Energetic 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 基于Kinect-Dk的多聚焦图像融合 2021.7.16 本机环境 Visual Studio2019(需安装c++拓展) kinectSDK1.4.1 新建空白C++控制台工程并添加源文件Main.cpp 使用kinect-dk 1、下载SDK 此处为Github仓库提供下载,选择最新版本1.4 阅读全文
posted @ 2022-03-22 19:38 Applied_Energetic 阅读(1126) 评论(4) 推荐(0) 编辑
摘要: c++中cin的多个读取 cin是C++编程语言I/O流中的标准输入流,需要包含iostream头文件,即#include 标准用法cin >> x ; 并且cin可以同时读取多个变量。 编写程序 从cin 读取一组数 并输出其和 点击查看代码 #include <iostream> using n 阅读全文
posted @ 2021-12-25 18:25 Applied_Energetic 阅读(504) 评论(0) 推荐(0) 编辑
摘要: 在试图使用panda包进行数据分析时,发现导入包失败,通过以下方法尝试后解决 报错代码: PS D:\DEMO\MathorCup\test> python py.py Traceback (most recent call last): File "py.py", line 1, in <modu 阅读全文
posted @ 2021-01-14 10:20 Applied_Energetic 阅读(805) 评论(0) 推荐(0) 编辑
摘要: VUE入门 第一个VUE程序 使用!tab创建标准html模板,嵌入vue实例化 <!-- 开发环境版本,包含了有帮助的命令行警告 --> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> 插入模板语法 <div 阅读全文
posted @ 2020-12-16 16:27 Applied_Energetic 阅读(310) 评论(0) 推荐(0) 编辑
摘要: jobs [-lnprs] [ jobspec ... ] jobs -x command [ args ... ] The first form lists the active jobs. The options have the following meanings: -l List proc 阅读全文
posted @ 2020-11-15 14:33 Applied_Energetic 阅读(101) 评论(0) 推荐(0) 编辑
摘要: /bin = BINaries /dev = DEVices /etc = 存放配置文件的地方。Editable Text Configuration /lib = LIBrary /mnt = mount 挂接光驱、USB设备的目录,加载后,会在mnt里多出相应设备的目录 /opt = Optio 阅读全文
posted @ 2020-11-15 14:23 Applied_Energetic 阅读(115) 评论(0) 推荐(0) 编辑
摘要: ## 简单爬虫 最近参加了长风杯数据挖掘竞赛,队内分工后我选择数据获取这一项任务。 ### 1、选取目标页面 https://space.bilibili.com/546195/video ### 2、利用Element检查工具寻找需求数据 ### 3、通过搜索查找api ### 4、在termin 阅读全文
posted @ 2020-11-07 22:10 Applied_Energetic 阅读(153) 评论(0) 推荐(0) 编辑
摘要: ECS——华为云 宝塔面板6.0 phpMyAdmin 4.4 经过搜索发现问题在于端口和安全组规则 解决方法如下 1、在安全中添加888端口 2、华为云安全组规则——入方向规则——添加规则 3、打开phpadmin 阅读全文
posted @ 2020-11-01 12:50 Applied_Energetic 阅读(778) 评论(0) 推荐(0) 编辑
摘要: BeautifulSoup安装以及简单抓取 beautifulsoup4.4.0官方文档: 使用实例网站:bilibli.com https://beautifulsoup.readthedocs.io/zh_CN/latest/#id7 操作系统:Ubuntu20.04LTS 一、beautifu 阅读全文
posted @ 2020-10-18 18:43 Applied_Energetic 阅读(263) 评论(0) 推荐(0) 编辑