- 博客(7)
- 收藏
- 关注
原创 pip install 国内镜像源
pip install XXX -i https://pypi.tuna.tsinghua.edu.cn/simple常见国内镜像源:清华:https://pypi.tuna.tsinghua.edu.cn/simple阿里云:http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/华中理工大学:http://pypi.hustunique.com/山东理工大学:http://pyp
2022-05-13 21:33:17 2231
原创 灰度图像img.shape、(height, width)转为(height, width, channels)
from PIL import Imageimport numpy as npimport matplotlib.pyplot as pltimport cv2img = ‘./control23.tif’img = Image.open(img)img = np.array(img)print(img.shape)img=np.stack((img,)*3,axis=-1)print(img.shape)plt.imshow(img)
2022-05-13 21:06:57 1400
原创 报错:OSError:-2(已解决)
报错:OSError:-2构建自己的数据集读取文件时候出现问题;问题语句:pil_img = Image.open(img) #对路径进行读取,打开路径data = self.transforms(pil_img) #transforms进行转换替换为:pil_img=cv2.imread(img)pil_img=Image.fromarray(pil_img)data = self.transforms(pil_img)即可。...
2022-05-13 16:24:37 1637 1
原创 记几个检索文献好用的网站
记几个检索文献好用的网站1、GitHub2、ResearchGate3、谷歌学术4、paperswithcode5、arxiv6、数据库检索
2021-03-03 21:47:10 461 1
原创 WSI 病理图像预处理(python)安装spams (失败)
安装spams使用python对WSI(病理图像)进行预处理的时候,使用颜色标准化工具需要spams但是使用pip install 安装很可能会出现失败。pip install spams 失败;这时采用python setup.py install又报错了No module named ‘numpy.distutils._msvccompiler’ in numpy.distutils; trying from distutils根据这篇博客:https://blog.csdn.net/qq_
2021-01-28 22:26:16 2219 3
原创 module ‘tensorflow‘ has no attribute ‘ConfigProto‘等等问题
tf.ConfigProto修改为tf.compat.v1.ConfigProto
2020-10-11 13:55:25 2790
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人