Python
yaked19
这个作者很懒,什么都没留下…
展开
-
python脚本中文注释
写法1:#!/usr/bin/python# -*- coding: utf8 -*-写法2:#!/usr/bin/python# coding=utf8参考了下PEP 0263:# coding=<encoding name>or (using formats recognized by popular editors)#!/usr/bin/python # -*- coding: <encoding name> -*-所以,支持# -*..原创 2021-08-28 12:19:02 · 285 阅读 · 0 评论 -
python pip常用基本指令
从清华源下载(临时) packagesudo -H pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python opencv-contrib-python设为默认pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple升级pippython -m pip install --upgrade pippip inst原创 2020-06-14 11:58:53 · 1080 阅读 · 0 评论 -
python 打印print与fprint
print('my name is %s, age is %s' %(name,age))#第二种方法print('my name is {0} age is {1}'.format(name,age))#第三种方法原创 2020-06-03 23:20:27 · 2069 阅读 · 0 评论 -
Conda虚拟环境及常用指令(创建、删除、更换源)
ASUS本机环境pytorch winAnaconda 3 版本5.1.0Python 3.6.4Pytorch-cpu-1.1.0-py3.6=============================查看虚拟工作空间conda info --envs查看安装的软件conda list软件源路径C:\Users\yaked19\.cond...原创 2020-03-10 22:08:16 · 2312 阅读 · 0 评论 -
Python调用OpenCV的目标跟踪算法(csrt、kcf、boosting、mil、tld、medianflow、mosse)
https://www.pyimagesearch.com/2018/07/30/opencv-object-tracking/不加参数调用本地摄像头,否则追踪视频中的框选物体s,然后鼠标框选,来选择目标,空格键确认,c键取消选择的目标。# _*_ coding:utf-8 _*_# # 安装imutils和opencv-contrib-python# USAGE# py...原创 2019-05-15 21:36:06 · 12203 阅读 · 8 评论 -
ROS python 代码转换到 C++
背景:ROS python 代码转换到 用C++实现,我的关于ar_marker追踪的时候发现点云跳动比较明显。找到了yoc他们的,测试了一下,发现效果还可以,无奈了他们前面的几个代码都是C++的,最后测试demo用Python写的,因此有了这个。其实早在以前学习ROS by Example这本书的时候,尝试用C++写过一部分,这次算是个学习笔记吧。yujin_ocs/yocs_ar_原创 2016-11-03 10:35:02 · 3465 阅读 · 0 评论 -
Python中的继承和override(由类的实例获取类的字符串信息)
今天有时间将Python中的继承敲了些代码来加深理解。class Animal(object): """ Inherit and override function. """ def __init__(self,name , weight, height): self.name = name self.weight = weight self.height = h原创 2015-01-21 16:00:45 · 9800 阅读 · 0 评论 -
Python sum函数的改进(用到的知识:静态变量、list、可变长参数等)
这些天来,一直在看《Think Python:How to think like a computer scientist 》这本书。学到其中关于元组那一章,作者布置了一道题目,因为python 内置的函数sum()只能接受两个参数,利用学习的可变长参数知识,自定义一个sum_all 函数。 函数可以接受不定长参数,以*打头的参数会gather所有参数到一个元组上...原创 2015-01-18 18:47:09 · 1618 阅读 · 0 评论 -
阿里python
阿里python,最开始参加阿里天池大赛,看到这个学习目录https://tianchi.aliyun.com/course/?spm=5176.12282013.0.0.4fdf13de2sqr4RPython基础https://tianchi.aliyun.com/course/courseDetail?spm=5176.12282042.0.0.14f92042n1sGu3&am...原创 2019-09-28 13:21:44 · 874 阅读 · 1 评论 -
Python numpy pandas数据处理
https://docs.python.org/3.7/tutorial/index.html====================================eval函数就是实现list、dict、tuple与str之间的转化。str函数把list,dict,tuple转为为字符串。# 字符串转换成列表a = "[[1,2], [3,4], [5,6], [7,8]...原创 2019-09-28 12:51:38 · 273 阅读 · 0 评论