上一页 1 2 3 4 5 6 7 8 ··· 20 下一页
摘要: 尝试了网上众多方法,都没用。最后还是,google搜索 NB啊! sudo apt install uwsgi-plugin-python3 阅读全文
posted @ 2021-02-05 11:04 牛郎 阅读(5273) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/h952520296/article/details/108326507 阅读全文
posted @ 2021-02-05 10:36 牛郎 阅读(527) 评论(0) 推荐(0) 编辑
摘要: tensorflow 1.x: tensorflow.space_to_depth tensorflow 2.x: tensorflow.nn.space_to_depth 阅读全文
posted @ 2021-02-04 10:07 牛郎 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: #from skimage.measure import structural_similarity as ssim from skimage import measure . . . #s = ssim(imageA, imageB) s = measure.compare_ssim(imageA 阅读全文
posted @ 2020-12-21 10:22 牛郎 阅读(10667) 评论(0) 推荐(0) 编辑
摘要: 1. 将本地图像保存在文件夹如:/opt/local/imgs/1.jpg 2. 安装nginx,将/opt/local/写到其配置文件中 3. 对外开放nginx配置中对应的端口:如8080 4. 结合本机IP如:192.168.132.151,拼接url链接如:http://192.168.13 阅读全文
posted @ 2020-12-17 09:20 牛郎 阅读(938) 评论(0) 推荐(0) 编辑
摘要: ... cnt = 0 font = cv2.FONT_HERSHEY_SIMPLEX for n in temp3_value: print(n) x = int(n['x']) y = int(n['y']) point = (x,y) cv2.circle(img, point, 1, (0, 阅读全文
posted @ 2020-12-11 10:25 牛郎 阅读(2494) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/xyisv/article/details/104179697 这坑好深,幸好这个文章不错 阅读全文
posted @ 2020-11-24 23:04 牛郎 阅读(1804) 评论(0) 推荐(0) 编辑
摘要: 使用 from pandas import Series 1. 创建Series a. 常规创建 >>> obj = Series([1,2,3], index=['A','B','C']) >>> obj A 1 B 2 C 3 dtype: int64 b. 根据字典创建 >>> obj = S 阅读全文
posted @ 2020-11-16 11:43 牛郎 阅读(804) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/79489cfc6fb9 阅读全文
posted @ 2020-11-10 11:18 牛郎 阅读(629) 评论(0) 推荐(0) 编辑
摘要: 1. 高精度惯导模块 此模块用于感知飞行器自身姿态,惯导模块与大地坐标系为参考系,能够精准测量自身的位移/角度等的变化速率,再加上时钟模块,也可以测量观测量一定时间段的变化幅度。所有的控制量,会转变成惯导模块的的目标量,如,无人机需要抗风,此时惯导模块的目标就是:与大地坐标系的位移,角度都为0,或, 阅读全文
posted @ 2020-11-02 13:08 牛郎 阅读(264) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 20 下一页