- 博客(123)
- 资源 (50)
- 收藏
- 关注
原创 解决PyTorch报错:RuntimeError: Expected object of backend CPU but got backend CUDA for argument #2 'other
1. 问题描述在利用PyTorch报错:RuntimeError: Expected object of backend CPU but got backend CUDA for argument #2 'other'报错时,对应Python语句的写法为:szl = torch.max(sz.round(), torch.Tensor([2])).long()2. 解决办法...
2020-01-10 15:58:19 8021
原创 解决Python报错:RuntimeError: Can't call numpy() on Variable that requires grad. Use var.detach().numpy()
1. 问题描述如题,将PyTorch Tensor类型的变量转换成numpy时报错:RuntimeError: Can't call numpy() on Variable that requires grad. Use var.detach().numpy() instead.2. 解决办法出现这个现象的原因是:待转换类型的PyTorch Tensor变量带有梯度,直接将其转换为...
2020-01-09 09:58:03 41925 10
原创 Python实现图像扩展(expand)支持自定义四个方向的扩展量
可以利用Pillow的ImageOps模块实现图像的边界扩展(有点类似于Photoshop扩大画布的操作),示例代码:from PIL import Image, ImageOpsimg = Image.open('test.jpg')img.show()left_pad = 100top_pad = 50right_pad = 160bottom_pad = 80padd...
2020-01-03 22:08:08 3347
原创 Python实现图像模糊的三种方式(包含默认的标准模糊、高斯模糊和均值模糊)
示例代码(注意高斯模糊和均值模糊中配置的参数):from PIL import Image, ImageFilterimg = Image.open('test.jpg')img2 = img.filter(ImageFilter.BLUR)img2.show()img2.save('img2.jpg', quality=100)img3 = img.filter(ImageFi...
2019-12-30 22:00:17 4320
原创 解决Windows 10下PyTorch报错“Error checking compiler version for cl”
1. 问题描述如题,调用ninja对源码进行编译时报错,如下所示:\cpp_extension.py:189: UserWarning: Error checking compiler version for cl: [WinError 2] 系统找不到指定的文件。 warnings.warn('Error checking compiler version for {}: {}'.for...
2019-12-18 15:15:53 28743 19
原创 Mask RCNN目标检测源码运行笔记(Demo模式)
1. 论文基本信息论文标题:Mask R-CNN论文作者:Kaiming He(Facebook AI Research (FAIR))等人论文出处:ICCV 2017在线阅读:https://arxiv.org/pdf/1703.06870.pdf源码链接:https://github.com/facebookresearch/maskrcnn-benchmark2. 运行...
2019-12-11 09:52:05 2384 1
原创 解决Ubuntu 18.04下CUDA报错:ImportError: libcudart.so.10.1: cannot open shared object file
1. 问题描述如题,CUDA报错:ImportError: libcudart.so.10.1: cannot open shared object file: No such file or directory2. 解决办法S1. 在终端中运行命令:sudo gedit /etc/ld.so.conf.d/nvidia.confS2. 在打开的gedit编辑器中输入如下内容...
2019-12-10 17:25:43 9264 1
原创 解决Anaconda删除虚拟环境时报错:PackagesNotFoundError: The following packages are missing from the target enviro
1. 问题描述如题,Ubuntu 18.04系统下,在删除Anaconda虚拟环境时报错:PackagesNotFoundError: The following packages are missing from the target environment: - 终端提示有缺失的包,然而并没有列出任何包,并且虚拟环境并没有删除。2. 解决办法S1. 在Ubuntu系统中点...
2019-12-09 15:58:09 24953
原创 DiMP视频目标跟踪算法中hinge-like loss的理解
1. 论文基本信息- 论文标题:Learning Discriminative Model Prediction for Tracking- 论文作者:Goutam Bhat () 等人- 论文出处:ICCV 2019- 在线阅读:[http://openaccess.thecvf.com/content_ICCV_2019/papers/Bhat_Learning_Discriminative_Model_Prediction_for_Tracking_ICCV_2019_paper.pdf](h
2019-12-06 22:30:03 1654
原创 Ubuntu 18.04开机自动挂载Windows下的硬盘分区
S1. 运行如下命令查看Windows分区:sudo blkid可以看到类似如下输出:/dev/loop0: TYPE="squashfs"/dev/loop1: TYPE="squashfs"/dev/loop2: TYPE="squashfs"/dev/loop3: TYPE="squashfs"/dev/loop4: TYPE="squashfs"/dev/loop5: T...
2019-11-27 14:18:25 2564
原创 解决Ubuntu 18.04报错:Called "net usershare info" but it failed: Failed to execute child process “net”
1. 问题描述Ubuntu 18.04用着用着突然遇到如下错误:Called "net usershare info" but it failed: Failed to execute child process “net” (No such file or directory)错误来源是Ubuntu nautilus,触发时机是关闭nautilus时,如下图所示:2. 解决S...
2019-11-13 17:10:53 6930 2
原创 PyCharm调试过程中查看PyTorch的Tensor类型图像数据
S1. 在PyCharm的Debug视图中点击`Console`标签页,再点击左侧工具栏的`Show Python Prompt`小按钮,点击后会进入运行时Python环境,它是一个命令行窗口,如下图所示:
2019-11-12 09:00:42 6876
原创 Python 3.x中将NumPy ndarray数据转换为PIL Image类型数据
写法如下所示:from PIL import Image import numpy as npimg_pil = Image.fromarray(img_arr)可以通过附上img_pil.show()语句来检验结果。
2019-11-09 23:56:24 12198 2
原创 Ubuntu 18.04下创建PyCharm快捷方式(带sudo管理员权限运行)
S1. 在终端中cd到目录/usr/share/applicationsS2. 运行sudo gedit pycharm-sudo.desktopS3. 在打开的编辑器中输入如下文本,注意需要自行修改Icon和Exec中对应的路径[Desktop Entry]Type=ApplicationName=PyCharm [sudo]Icon=/home/test/Software/pych...
2019-11-09 09:58:26 3097 1
原创 解决Ubuntu 18.04下报错“Using the 'memory' GSettings backend. Your settings will not be saved or ...”
1. 问题描述如题,设置gsetting时遇到错误Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.,如下图所示:2. 解决方法S1. 用文本编辑器打开环境变量配置:sudo gedit ~/.bashrcS2. 修改环境变...
2019-11-05 15:58:13 1716
原创 Windows 10 x64下编译安装ninja
1. 准备工作S1. 安装git for Windows,下载地址:https://git-scm.com/download/winS2. 安装Visual Studio 2015S3. 安装Python 3.x2. Clone ninja库打开git bash,分别运行如下两行命令:git clone git://github.com/ninja-build/ninja.git...
2019-10-24 23:12:09 11176 5
原创 ADNet视频目标跟踪论文笔记
1. 论文基本信息论文标题:Action-Decision Networks for Visual Tracking with Deep ReinforcementLearning论文作者:Sangdoo Yun(Seoul National University, South Korea)等人论文出处:CVPR 2017在线阅读:http://openaccess.thecvf.co...
2019-10-18 09:00:13 1671 5
原创 Ubuntu 18.04下VoTT图像/视频标注工具安装及使用笔记
1. 准备S1. 安装gitS2. 安装npmS3.2. 安装VoTTS1. 运行如下命令: git clone https://github.com/Microsoft/VoTT.git cd VoTT npm ci npm start
2019-10-17 09:00:04 1658 4
原创 Ubuntu 18.04安装node.js最新稳定版
S1. 安装npm,具体方法可以参考这篇文章:https://blog.csdn.net/discoverer100/article/details/102372904S2. 安装nodejs,命令如下sudo apt-get install node.js sudo npm install n -gsudo n stable运行后两行命令时会有类似如下的输出:S3. 安装完...
2019-10-17 08:58:09 621
原创 Ubuntu 18.04安装npm包
分别运行如下命令(顺序不能变):sudo apt install libssl1.0-devsudo apt install nodejs-devsudo apt install node-gypsudo apt install npm参考资料:https://stackoverflow.com/questions/48721094/how-to-install-npm-and...
2019-10-17 08:58:05 4333
原创 Ubuntu 18.04安装CUDA 10.0笔记
1. 下载在CUDA官网上下载CUDA 10.0的Ubuntu 18.04安装包:https://developer.nvidia.com/cuda-10.0-download-archive?target_os=Linux&target_arch=x86_64&target_distro=Ubuntu&target_version=1804&target_ty...
2019-10-14 09:58:32 2332 2
原创 Ubuntu 18.04安装NVIDIA官方显卡驱动
1. 下载驱动S1. 弄清楚显卡型号,可以在终端中用如下命令查看:ubuntu-drivers devicesS2. 在NVIDIA网站上寻找显卡驱动:https://www.nvidia.com/Download/index.aspxS3. 在搜索出来的结果中进行下载,如下图所示:2. 准备工作S1. 在终端中运行如下命令:sudo gedit /etc/modpro...
2019-10-14 09:58:10 1682 1
原创 Ubuntu 18.04下安装TexLive 2019和TeXstudio
1. 安装TexLive 2019S1. 在官网上下载TexLive 2019完整版镜像文件,下载地址:https://mirrors.ustc.edu.cn/CTAN/systems/texlive/Images/S2. 挂载TexLive ISO文件,命令:sudo mkdir /media/isosudo mount -o loop texlive2019-20190410.iso ...
2019-10-14 09:37:54 924
原创 Python保存数据为MATLAB格式的mat文件 (支持MATLAB结构体和cell数组)
利用SciPy库,可以将Python的dictionary数据保存为MATLAB的结构体mat文件,示例代码如下所示:# Construct MATLAB struct data# Here, bboxes is a numpy arrayresults_inner = {'type': 'rect', 'res': bboxes, 'len': len(bboxes), 'annoBegi...
2019-10-08 10:40:53 6132 1
原创 Ubuntu 18.04下可用的效率工具集合
[TO1. OneDrive云同步软件一款开源软件,利用onedrive提供的接口实现的网盘及云同步功能,下载地址、安装及使用说明:https://github.com/skilion/onedrive2. Flameshot开源截图软件,安装命令:sudo apt install flameshot3. Diodon剪贴板增强工具,安装命令:sudo add-ap...
2019-10-07 02:51:03 1476
原创 解决Windows 10上torchvision报错“ImportError: DLL load failed: 找不到指定的模块”
1. 问题描述在Windows 10上调用torchvision时报错,如下所示: from torchvision import _CImportError: DLL load failed: 找不到指定的模块。2. 问题分析Python环境中原先安装PyTorch、torchvision等Python包的时候,用的是pip安装的,可能存在某些编译或链接的问题。3...
2019-10-04 10:45:57 3567
原创 解决Windows 10下pip安装pycocotools报错“ERROR: Failed building wheel for pycocotools”
1. 问题描述如题,在Windows 10 x64主机的Python Anaconda虚拟环境中安装pycocotools包时报错。安装命令为:pip install pycocotools执行后报错,如下所示:Collecting pycocotools Using cached https://files.pythonhosted.org/packages/96/84/9a07b...
2019-09-27 23:15:42 26924 16
原创 ICCV 2019视频目标跟踪算法Pipeline集合
文章目录1. ARCF: "Learning Aberrance Repressed Correlation Filters for Real-Time UAV Tracking"2. MLT: "Deep Meta Learning for Real-Time Target-Aware Visual Tracking"3. "Joint Monocular 3D Vehicle Detectio...
2019-09-25 10:18:08 5534
原创 解决“ValueError: Unknown resampling filter (107). Use Image.NEAREST (0), Image.LANCZOS (1), Image.BIL”
1. 问题描述利用Pillow进行图像resize操作,结果报错:File "C:\Users\yafux\Anaconda3\envs\cu80_py36_tf140\lib\site-packages\PIL\Image.py", line 1869, in resize message + " Use " + ", ".join(filters[:-1]) + " or " +...
2019-09-21 15:28:28 12278 3
原创 MDNet视频目标跟踪算法中的重检测机制分析
1. 论文基本信息- 论文标题:Learning Multi-Domain Convolutional Neural Networks for Visual Tracking- 论文作者:Hyeonseob Nam(Dept. of Computer Science and Engineering, POSTECH, Korea)等人- 论文出处:CVPR 2016- 在线阅读:[htt...
2019-09-15 14:56:29 979
原创 SiamMask视频目标跟踪源码运行笔记——Demo模式
1. 论文基本信息论文标题:Fast Online Object Tracking and Segmentation: A Unifying Approach论文作者:Qiang Wang(Institute of Automation, Chinese Academy of Sciences, CASIA)等论文出处:CVPR 2019在线阅读:https://arxiv.org/p...
2019-09-05 11:28:08 2679 10
原创 CVPR 2019视频目标跟踪算法Pipeline集合
SiamMask: Qiang Wang, Li Zhang, Luca Bertinetto, Weiming Hu, Philip H.S. Torr.“Fast Online Object Tracking and Segmentation: A Unifying Approach.” CVPR (2019). [paper] [project] [code]SiamRPN++: Bo ...
2019-08-28 08:58:13 3898
原创 解决“ImportError: Could not find 'cudnn64_6.dll'”
1. 问题描述运行一个基于Tensorflow的代码时报错,如下所示:ImportError: Could not find 'cudnn64_6.dll'. TensorFlow requires that this DLL be installed in a directory that is named in your %PATH% environment variable. Note...
2019-08-27 09:18:23 4155
原创 MDNet视频目标跟踪源码运行笔记(Python 3.6版本)——Testing模式
1. 论文基本信息论文标题:Learning Multi-Domain Convolutional Neural Networks for Visual Tracking论文作者:Hyeonseob Nam(Dept. of Computer Science and Engineering, POSTECH, Korea)等人论文出处:CVPR 2016在线阅读:https://arxi...
2019-08-22 17:30:18 1369 2
原创 解决PyCharm调试查看变量时一直显示collecting data并报错Timeout waiting for response且看不到任何内容
1. 问题描述如题,在用PyCharm进行Python代码调试查看具体变量时,会随机遇到一直显示collecting data,到最后报错Timeout waiting for response,在界面中看不到变量内部的内容,如下图所示:2. 解决办法在PyCharm,打开Setting界面,在如下设置项中勾选“Gevent compatible”即可,如下图所示:至此,问题得到解决。...
2019-08-14 17:13:42 28590 47
原创 解决Python2代码移植到Python3报错:AttributeError: 'collections.OrderedDict' object has no attribute 'iteritems
1. 问题描述如题,将Python 2.x代码迁移到Python 3.x时报错:AttributeError: 'collections.OrderedDict' object has no attribute 'iteritems'报错指向的Python 2语句写法为:for k,p in child._parameters.iteritems():2. 解决方法上述出错的原...
2019-07-21 10:58:14 17651
原创 解决“ImportError: cannot import name 'imresize'”
1. 问题描述如题,Python代码报错,其完整错误信息如下:from scipy.misc import imresizeImportError: cannot import name 'imresize'在某些情形下,可以通过安装Pillow来解决,然而自己的环境中已经安装了Pillow却还是报上述错误,那么应该是别的原因引起的。2. 原因分析通过查找资料得知,imresize已...
2019-07-12 08:53:46 34539
原创 升级VMware至15.1.0版本解决Windows 10 1903下VMware Workstation 15 Pro虚拟机死机问题
如题,在几乎全新的Windows 10 1903操作系统下,在VMware Workstation中安装虚拟机经常出现死机现象,主要表现在以下两个方面:创建好虚拟机后,虚拟机开机加电准备安装操作系统,可是连虚拟机开机自检都没有通过就一直黑屏,处于死机状态,无法对虚拟机进行关机、重启或者挂起等操作,其关键进程“VMware Workstation VMX”也无法被结束。只能重启物理机再来。尝...
2019-07-07 03:59:17 23559 5
原创 解决Win 10系统下conda虚拟环境本地安装文件失败的问题
1. 问题描述如题,用如下命令行安装PyTorch的whl文件均失败:pip install torch-1.0.0-cp36-cp36m-win_amd64-cu80.whl或者conda install --use-local torch-1.0.0-cp36-cp36m-win_amd64-cu80.whl上述两种方法均报错,如下所示:ERROR: torch-1.0.0-c...
2019-07-05 21:33:03 3897 1
漫画微分方程.佐藤实.著.科学出版社.高清扫描版PDF
2017-12-03
数字图像处理 第三版 冈萨雷斯 英文版PDF非扫描版 Digital Image Processing_3ed_Gonzalez
2017-11-27
The Matrix Cookbook (矩阵小书) Kaare Brandt Petersen 英文版PDF非扫描版
2017-11-27
[漫画线性代数](日)高桥信 科学出版社 高清扫描版PDF
2017-11-27
[漫画统计学之因子分析].(日)高桥信著 科学出版社 高清扫描版PDF
2017-11-25
Context Aware CF Tracking目标跟踪官方源码CVPR 2017(含论文原文及补充材料)
2017-11-21
MIL视频目标跟踪官方源码(MATLAB与C++两种版本同时包含,可运行)及论文原文
2017-11-14
全球计算机专业学术会议排名
2017-11-13
CCF会议和期刊等级目录
2017-11-12
texstudio 2.12.6 for Windows
2017-11-12
Distributed Optimization and Statistical Learning via the Alternating Direction
2017-10-23
泛函分析讲义 黎永锦 - 科学出版社
2017-10-16
MATLAB神经网络30个案例分析完整pdf和源码
2014-11-30
texstudio-2.12.22-win-qt5.exe
2020-03-02
texstudio 2.12.16 for Ubuntu 18.04 (官方deb安装包)
2019-12-17
texstudio 2.12.16 for Windows (支持LaTEX和PDF双向定位)
2019-07-16
MDNet视频目标跟踪PyTorch源码(Python 2.7版本)
2019-04-29
YOLO v3目标检测算法的PyTorch实现(压缩包中包含240MB的预训练网络文件)
2019-03-23
PyTorch 0.4.0 for Python 3.5 on CUDA 8.0(Linux)离线安装包
2019-03-11
RT-MDNet视频目标跟踪论文官方预训练网络文件rt-mdnet.pth
2019-03-09
视频目标跟踪数据集VOT2013-源自官网下载
2019-01-17
ADNet视频目标跟踪算法源码(MATLAB源码+TensorFlow源码+论文+官方补充材料)代
2019-01-16
texstudio 2.12.14 for Windows (支持LaTEX和PDF双向定位)
2018-12-07
texlive2018离线安装包ISO镜像(适合Linux和Windows)
2018-07-06
cfnet_imdb_video_2016-10.mat
2018-07-05
阿里巴巴《不止代码》PDF电子书
2018-07-03
texstudio 2.12.8 for Windows
2018-04-08
Qt Creator for Mac苹果 qt-creator-mac-opensource-2.5.2.dmg
2017-12-19
2017阿里技术年度精选(上、下全集)PDF电子书 文字版 非扫描版
2017-12-19
Qt Creator for Windows qt-creator-win-opensource-2.5.2.exe
2017-12-18
Qt Creator for Linux 64位 qt-creator-linux-x86_64-opensource-2.5.2.bin
2017-12-18
Qt Creator for Linux 32位 qt-creator-linux-x86-opensource-2.5.2.bin
2017-12-18
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人