上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页
摘要: 整理一下怎么开发flask程序应部署到生产环境中 1. 第一个flask 程序 myapp.py from flask import Flask app = Flask(__name__) @app.route('/') def index(): return 'Hi! It works!' if 阅读全文
posted @ 2021-05-04 16:19 mashuai_191 阅读(211) 评论(0) 推荐(0) 编辑
摘要: Ref: Windows Subsystem for Linux Installation Guide for Windows 10 Windows Subsystem for Linux 2: The Complete Guide The Ultimate Guide to Windows Sub 阅读全文
posted @ 2021-05-03 14:17 mashuai_191 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 旋转矩阵的欧拉角表示: Ref: 坐标旋转变换公式的推导 坐标系旋转后的点坐标、坐标点旋转后的点坐标、 3维旋转矩阵推导与助记 阅读全文
posted @ 2021-04-21 10:13 mashuai_191 阅读(234) 评论(0) 推荐(0) 编辑
摘要: Using Websockets with Python https://blog.miguelgrinberg.com/post/easy-websockets-with-flask-and-gevent 阅读全文
posted @ 2021-04-18 23:08 mashuai_191 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 一文图解单目相机标定算法 【3D视觉工坊】第二期公开课:相机标定的基本原理与经验分享 阅读全文
posted @ 2021-04-13 09:17 mashuai_191 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 深度相机哪家强?https://blog.csdn.net/electech6/article/details/78907463 深度相机哪家强?https://zhuanlan.zhihu.com/p/28274727 【相机】3D相机原理—结构光、双目视觉和光飞行时间法 https://zhua 阅读全文
posted @ 2021-03-26 23:05 mashuai_191 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 怎么选监控高速运动物体的摄像头? 首先看精度要求,比如1.5mm/pixel, 然后看物体运动速度,比如40km/h, 换算成11.111m/s, 11111mm/s, 根据每次快门拍摄时间内物体运动距离不超过精度,可以得出选用1/10000s 快门,运动距离为 1.1111mm < 1.5mm, 阅读全文
posted @ 2021-02-27 16:12 mashuai_191 阅读(97) 评论(0) 推荐(0) 编辑
摘要: https://www.geeksforgeeks.org/socket-programming-python/ 瞬间知道python socket怎么写 https://stackoverflow.com/questions/43513337/multiclient-server-in-pytho 阅读全文
posted @ 2021-01-30 14:12 mashuai_191 阅读(37) 评论(0) 推荐(0) 编辑
摘要: operating principles 工作原理 Velodyne 加州,Hokuyo 日本,SICK 德国 TOF 就是用发出去收到的时间差和光速算距离 basic LIDAR models (2D, 3D) 球面坐标系和笛卡尔直角坐标系的转化: cloud point 点云 1. 点云数据结构 阅读全文
posted @ 2021-01-05 14:13 mashuai_191 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 如何表示旋转?三种方法 1. rotation matrix 2. unit quaternions 四元数 3. Euler angles 4. compare 坐标系 ECIF - Earth-Centered Inertial Frame, 用于太空空间,如卫星 ECEF - Earth-Ce 阅读全文
posted @ 2021-01-04 19:42 mashuai_191 阅读(50) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页