02 2020 档案

摘要:sudo ps -ef | grep dpkg | awk -F ' ' '{print $2}' | xargs sudo kill -9;sudo ps -ef | grep apt | awk -F ' '... 阅读全文 »
posted @ 2020-02-17 16:28 龙雪 阅读(517) 评论(0) 推荐(0) 编辑
摘要:Python2到Python3,很多基本的函数接口变了,甚至有些库或函数被去掉或改名了 在Python 3.x中,print是函数,这意味着需要编写print (a)而不是print a,除此之外,它的工作方式和... 阅读全文 »
posted @ 2020-02-16 23:05 龙雪 阅读(972) 评论(0) 推荐(0) 编辑
摘要:安装过程(以cmake版本3.11.1为例)1.首先从网站上下载,https://cmake.org/download/,下载源码包cmake-3.11.1.tar.gz然后放到服务器的某个位置进行解压tar -... 阅读全文 »
posted @ 2020-02-14 14:44 龙雪 阅读(1584) 评论(0) 推荐(1) 编辑
摘要:这个应该是很多github新手经常出错的问题,这个就是没有在你github上添加一个公钥。下面就直接说步骤:1 可以用 ssh -T git@github.com去测试一下图上可以明显看出缺少了公钥2 直接上图3... 阅读全文 »
posted @ 2020-02-13 22:03 龙雪 阅读(325) 评论(0) 推荐(0) 编辑
摘要:基于skimage的transform模块,实现3D图像的缩放(reszie),.nii格式图像。1. 代码功能:实现91*109*91图像,压缩为56*56*56大小 结果示意:size: 109*91size... 阅读全文 »
posted @ 2020-02-07 23:33 龙雪 阅读(1120) 评论(0) 推荐(0) 编辑
摘要:SIFT:(注意,现仅个别opencv版本支持开源免费的SIFT、SURF算法函数,如3.4.2)import cv2import numpy as np img = cv2.imread('xxx.jpg')... 阅读全文 »
posted @ 2020-02-03 11:04 龙雪 阅读(1870) 评论(0) 推荐(0) 编辑
摘要:查看模块成员:dir()函数通过 dir() 函数,我们可以查看某指定模块包含的全部成员(包括变量、函数和类)。注意这里所指的全部成员,不仅包含可供我们调用的模块成员,还包含所有名称以双下划线“__”开头和结尾的... 阅读全文 »
posted @ 2020-02-02 21:55 龙雪 阅读(1176) 评论(0) 推荐(0) 编辑
摘要:安装notepad++sudo add-apt-repository ppa:notepadqq-team/notepadqq sudo apt-get update sudo apt-get i... 阅读全文 »
posted @ 2020-02-02 15:52 龙雪 阅读(963) 评论(0) 推荐(0) 编辑
摘要:sudo apt-get -y install gcc g++ make protobuf-compiler protobuf-c-compiler libprotoc-dev cmake-gui libtess... 阅读全文 »
posted @ 2020-02-01 12:17 龙雪 阅读(142) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示