Python
文章平均质量分 61
Tech菌
这个作者很懒,什么都没留下…
展开
-
ubuntu18下安装python-cpl(好使)
事先说明:我的网可以科学上网,因此按照官网说明,进行conda安装首先要激活conda环境,在该环境中安装。命令行输入一下代码,安装依赖:sudo apt-get update -ysudo apt-get install libpcl-dev -y然后输入,安装必要的包,为了能顺利进行,还是都执行一下吧:pip install --upgrade pippip install cythonpip install numpypython setup.py build_ext -ipyt原创 2021-04-06 20:49:01 · 241 阅读 · 1 评论 -
Ubuntu18使用labelme制作多物体语义分割数据集并对其批量处理。
步骤1 使用realsense2相机拍摄物体图片复制下面程序,按键“d”来快速拍摄物体。import pyrealsense2 as rsimport numpy as npimport timeimport cv2import os# 类似相机的拍摄加保存脚本 d:保存并显示保存后的图像;f:切换到下一帧# Configure depth and color streamspipeline = rs.pipeline()config = rs.config()config.enab原创 2021-03-16 14:50:17 · 545 阅读 · 0 评论 -
Ubuntu下切换Python版本问题分析
来源https://www.cnblogs.com/Yanfang20180701/p/10588087.htmlsudo suupdate-alternatives --config python水平分割:Ctrl+Shift+O垂直分割:Ctrl+Shift+E关闭当前终端:Ctrl+Shift+Q原创 2020-05-11 17:23:40 · 240 阅读 · 0 评论 -
列表推导式
1.对列表进行遍历一般的对列表进行遍历格式如下:# Creating our animal parkanimal_park = ['Rabbit','Rabbit','Rabbit','Rabbit','Cat','Cat','Cat','Cat','Cat','Cat','Cat', 'Turtle','Turtle','Turtle','Turtle','Turtle','Turtle'...原创 2019-10-05 14:45:56 · 98 阅读 · 0 评论