- 博客(111)
- 收藏
- 关注
原创 AttributeError: ‘str‘ object has no attribute ‘decode‘
报错:AttributeError: ‘str’ object has no attribute ‘decode’参考博客评论:https://blog.youkuaiyun.com/qq_41185868/article/details/82079079本人报错的代码:def get_weights_file_path(use_pretrained, train_db_name, save_name): prefix = "../pre-trained/" if use_pretrained e
2021-05-19 22:27:32
411
原创 opencv-python画实心圆、实心矩形
画实心圆:https://www.freesion.com/article/2016702937/画实心矩形:
2021-04-16 16:50:40
2981
原创 RuntimeError: Cannot re-initialize CUDA in forked subprocess. To use CUDA with multiprocessing, you
报错如下:Traceback (most recent call last):File “E2Capsnet.py”, line 777, in main()File “E2Capsnet.py”, line 619, in maintrain(epoch)File “E2Capsnet.py”, line 470, in trainfor batch_id, (data, label) in enumerate(raf.train_loader):File “/home/nuaa301/a
2021-03-30 20:39:21
1933
原创 Python常用总结
Python 判断文件/目录是否存在https://www.runoob.com/w3cnote/python-check-whether-a-file-exists.html
2021-03-17 14:38:40
117
原创 Python实现在图片中加入遮挡
# 图片中加入遮挡def make_shelter_picture(photo_path,shelter_path,global_y0,global_x0,height=44,width=44): # 输入原图、遮挡图片路径,输出遮挡处理后的图片 global_x0 = random.randint(15,72) # 遮挡图片左上角定点坐标随机生成 global_y0 = random.randint(15,72) src_photo = cv2.imread(photo_pa
2021-03-13 15:14:07
2189
原创 TypeError: default_collate: batch must contain tensors, numpy arrays, numbers, dicts or lists; found
TypeError: default_collate: batch must contain tensors, numpy arrays, numbers, dicts or lists; found <class ‘PIL.Image.Image’>原因:train_dataset = MsCelebDataset(args.img_dir_train, train_list_file, train_label_file) # (AffectNet)# transforms.C
2021-02-09 20:35:18
3612
原创 C++知识笔记
C++ STL 反向迭代器适配器(reverse_iterator)参考文献:http://c.biancheng.net/view/7274.html简介反向迭代器适配器(reverse_iterator),可简称为反向迭代器或逆向迭代器,常用来对容器进行反向遍历,即从容器中存储的最后一个元素开始,一直遍历到第一个元素。值得一提的是,反向迭代器底层可以选用双向迭代器或者随机访问迭代器作为其基础迭代器。不仅如此,通过对 ++(递增)和 --(递减)运算符进行重载,使得:当反向迭代器执行 ++
2021-02-04 21:44:37
116
原创 pytorch报错:AttributeError: module ‘torch.sparse‘ has no attribute ‘torch‘
错误:File “E2Capsnet.py”, line 397, in testtarget = torch.sparse.torch.eye(NUM_CLASSES).index_select(dim=0, index=label)AttributeError: module ‘torch.sparse’ has no attribute ‘torch’原版程序:target = torch.sparse.torch.eye(NUM_CLASSES).index_select(dim=0, i
2021-01-05 22:10:50
1563
转载 Matplotlib中指定图片的大小和像素
参考:http://www.360doc.com/content/19/0106/15/58158470_807010068.shtml
2021-01-02 17:26:24
2718
原创 利用opencv-python实现提取图像LBP特征
参考文献:https://www.cnblogs.com/mikewolf2002/p/3438698.html将C++改为python后的程序如下,缺点:运行速度太慢import cv2from math import sinfrom math import cosfrom math import pi as PIfrom math import floorfrom math import ceil'''def elbp(src,dst,radius,neighbors):
2020-12-24 20:46:53
871
1
原创 Python爬虫学习笔记
了解网页在网站页面,按快捷键【Ctrl+U】打开源码页面。网页一般由三部分组成,分别是 HTML(超文本标记语言)、CSS(层叠样式表)和 JScript(活动脚本语言)。详细内容见如下参考博文:http://c.biancheng.net/view/2011.html...
2020-12-22 17:10:57
158
原创 利用Python里的Matplotlib库画图
基本绘图:import matplotlibimport matplotlib.pyplot as pltimport numpy as np # Data for plottingt = np.arange(0.0, 2.0, 0.01)s = 1 + np.sin(2 * np.pi * t) fig, ax = plt.subplots()ax.plot(t, s) ax.set(xlabel='time (s)', ylabel='voltage (mV)',
2020-12-21 20:31:57
213
2
原创 Python绘制混淆矩阵
# ------------------------------------绘制混淆矩阵-------------------------------------- import pandas as pd import matplotlib.pyplot as plt import seaborn as sn # 可视化包 import numpy as np Confusion_Matrix = [[0 for i in range(8)] for i in ran
2020-12-21 15:53:00
364
1
转载 os.path.splitext()用法--分离文件名与扩展名
转自:https://www.cnblogs.com/liangmingshen/p/10215065.html用法os.path.splitext(“文件路径”) 分离文件名与扩展名;默认返回(fname,fextension)元组,可做分片操作例子import ospath_01='E:\STH\Foobar2000\install.log'path_02='E:\STH\Foobar2000'res_01=os.path.splitext(path_01)res_02=os
2020-12-07 17:00:30
687
原创 Python:模块搜索路径、模块本地发布
参考:https://www.bilibili.com/video/BV1jz411b7DH?p=35&t=8模块搜索路径模块的本地发布本地安装模块
2020-12-07 11:13:49
124
转载 Ubuntu系统突然卡机或者完全死机怎么办
https://blog.youkuaiyun.com/qq_34706266/article/details/90142094
2020-12-07 09:37:54
1015
原创 Ubuntu下切换CUDA版本
sudo rm -rf /usr/local/cuda sudo ln -s /usr/local/cuda-10.0 /usr/local/cuda # 创建新的软链接sudo ln -s /usr/local/cuda-9.0 /usr/local/cudasudo ln -s /usr/local/cuda-8.0 /usr/local/cudanvcc -V # 显示当前所用CUDA版本
2020-12-05 11:20:01
468
转载 Python中的__call__()函数
参考博客:https://www.cnblogs.com/xinglejun/p/10129823.html
2020-11-30 20:20:15
131
原创 Python读取.json文件
import json# 读取json文件内容,返回字典格式with open('C:/Users/w10/Desktop/MATLAB_本俊/train.json','r',encoding='utf8')as fp: #son_data = json.load(fp) #print(fp.readlines()) # 单行读取json文件 a=fp.readlines() # a为列表类型,a[0])为字符串类型 #pr
2020-11-30 16:47:22
236
原创 import scipy.io as sio报错:ImportError: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4
运行import scipy.io as sio时报错完美解决ImportError: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.22‘ not found。思路没问题参考博文:https://blog.youkuaiyun.com/qq_30653631/article/details/107620137
2020-11-28 14:28:34
1334
原创 Ubuntu下安装OpenCV
Python版本直接安装最新版本的opencv-pythonpip install opencv-python -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.compip install opencv-contrib-python -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com参考文档:https://blog.youkuaiyun.com/ksw
2020-11-28 13:43:20
77
原创 Anaconda添加、删除channels
添加频道、创建软件的软链接:https://www.jianshu.com/p/edaa744ea47d添加、删除channels:https://blog.youkuaiyun.com/mtj66/article/details/57074986/
2020-11-28 10:40:45
3394
原创 论文阅读:《Occlusion Aware Facial Expression Recognition Using CNN With Attention Mechanism》
提出了一个带有注意力机制的CNN,可以识别出脸部的遮挡区域,并之后关注于未被遮挡的区域。提出的ACNN是一个端对端的学习框架,提出的该模块可以将网络的注意力从遮挡的部分移至其他相关的未被遮挡的部分。...
2020-11-24 22:36:22
1772
6
原创 报错:make: *** No targets specified and no makefile found. Stop.
用CMake执行make命令时报错make: *** No targets specified and no makefile found. Stop.解决方案:删掉原有的CMakeCache.txt文件,再重新在build目录下执行cmake ..和make即可。
2020-11-21 15:50:25
5798
3
原创 Python的shutil模块(拷贝和压缩)
来源:https://www.bilibili.com/video/BV1jz411b7DH?p=25文件和目录的拷贝压缩和解压缩递归打印所有的目录和文件
2020-11-17 12:09:26
233
原创 Python的os和os.path模块
来源:https://www.bilibili.com/video/BV1jz411b7DH?t=16&p=21直接调用可执行文件os模块–文件和目录操作文件操作目录操作获取文件、文件夹相关信息工作目录的操作os.path模块列出工作目录下所有的.py文件...
2020-11-17 10:42:36
112
原创 Python文件操作
来源:https://www.bilibili.com/video/BV1jz411b7DH?p=11文本文件的写入示例程序:f=open("a.txt","a")s="上学\n程序员\n"f.write(s)f.close()a.txt内容:再次执行以上程序:若没有f.close()则可能造成操作系统资源的浪费。...
2020-11-15 22:29:24
128
原创 Git的使用
来源:https://www.bilibili.com/video/BV1Xx411m7kn?p=81.向仓库中添加文件流程2.Git初始化及仓库的创建和操作设置用户名:git config --global user.name 'MikeShuang96'设置用户名邮箱:git config --global user.email '1119554258@qq.com'3.初始化一个新的Git仓库创建Git仓库:在所要创建仓库的目录下打开终端,输入:git init终端
2020-11-05 13:54:14
151
转载 Ubuntu 下生成 python 环境安装文件 requirements.txt
转自:https://www.cnblogs.com/qq952693358/p/9610217.html首先通过 pip 安装pyreqs模块:pip install pipreqs然后进入 python 源码所在的目录下,执行:pipreqs ./该命令在当前目录下生成 requirements.txt。如果需要在一个新的环境下重新安装源码需要的依赖包,只需执行:pip install -r requirements.txt -i http://pypi.douban.com/s
2020-11-04 10:52:21
1111
原创 ubuntu系统突然死机的解决方法
参考博文:https://blog.youkuaiyun.com/qq_34706266/article/details/90142094
2020-10-29 17:00:06
942
1
原创 根据HSV阈值对图像二值化
//蓝色的HSV范围 int iLowH = 100; int iHighH = 124; int iLowS = 43; int iHighS = 255; int iLowV = 46; int iHighV = 255; Mat HSVImage; cvtColor(srcImage, HSVImage, COLOR_BGR2HSV); //将RGB图像转化为HSV inR...
2020-10-28 10:23:52
2275
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人