learning python
子墨777
Try to make yourself more excellent!
展开
-
python 实现类的基本的继承
class Animal(object): def run(self): print 'it is running' class dog(Animal): def run_dog(self): pass class Cat(Animal): def run_cat(self): pass dod=dog() cat=Cat()原创 2016-11-16 20:31:22 · 336 阅读 · 0 评论 -
python 实现尾递归
def funw(num,product): return fune(num,product) def fune(num,product): if num==1: return product else : return fune(num-1,num *product) print(funw(6,1))原创 2016-11-15 10:57:54 · 1187 阅读 · 0 评论 -
Ubantu 14.04 安装 PCL
我 : Pfofessor,is there any books about the pcl ? Pro : no ,just follws the turtorials. 最近毕设要用到 pcl 来处理 voldyne 雷达 产生的三位数据,根据官网 记录下ubantu14.04 下面安装评pcl 的方法: sudo add-apt-repository ppa:v-launch原创 2017-02-20 19:05:25 · 856 阅读 · 0 评论 -
文章标题
python opencv trackbar 调整参数由于最近需要利用到Python 版本的opencv 但是之前又没有接触过 这个,在此纪念下利用 trackbar 去调整参数的方法。mport cv2 import numpy as np #optional argument def nothing(x): passcv2.namedWindow('image')#easy assigm原创 2017-07-26 21:58:48 · 203 阅读 · 0 评论