Python
L-Dreams
这个作者很懒,什么都没留下…
展开
-
Matlab函数psf2otf()的python实现
本文实现Matlab函数psf2otf()重写为python版本,亲测有效def psf2otf(psf,size): import numpy as np if not(0 in psf): #Pad the PSF to outsize psf=np.double(psf) psfsize=np.shape(psf) psfsize=np.array(psfsize) padsize=size-psfsize psf=np.lib.pad(psf,((0,padsize[0原创 2022-05-05 18:29:05 · 1755 阅读 · 2 评论 -
error: ROIAlign_cuda.cu(275): error: no instance of function template “THCCeilDiv“ matches
解决ROIAlign_cuda.cu和ROIPool_cuda.cu编译错误(遇到的两个问题)报错1:D:/python/frankmocap-master/frankmocap-master/detectors/hand_object_detector/lib/model/csrc/cuda/ROIAlign_cuda.cu(275): error: no instance of function template "THCCeilDiv" matches the argument list原创 2021-08-17 16:33:24 · 2252 阅读 · 1 评论 -
pytorch和torchvision安装、卸载、版本查看
打开终端,如果安装在虚拟环境中,切换进虚拟环境中输入:python查看pytorch版本进入python环境中,输入:import torchtorch.__version__查看torchvision版本import torchvisiontorchvision.__version__如下所示:...原创 2021-08-13 17:27:33 · 7981 阅读 · 1 评论 -
python报错:AttributeError: module ‘importlib._bootstrap‘ has no attribute ‘SourceFileLoader‘
python 报错:AttributeError: module ‘importlib._bootstrap’ has no attribute ‘SourceFileLoader’解决方法:以下命令均尝试一下: python -m ensurepip --upgrade python3 -m ensurepip --upgrade原创 2021-08-09 16:41:27 · 4262 阅读 · 2 评论