国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

Python實現點云投影到平面顯示

2020-02-15 21:29:13
字體:
來源:轉載
供稿:網友

值得學習的地方:

1.選擇合法索引的方式

2.數組轉圖像顯示

import numpy as npfrom PIL import Image#input : shape(N, 4)#    (x, y, z, intensity)def pointcloud2image(point_cloud):  x_size = 640  y_size = 640  x_range = 60.0  y_range = 60.0  grid_size = np.array([2 * x_range / x_size, 2 * y_range / y_size])  image_size = np.array([x_size, y_size])  # [0, 2*range)  shifted_coord = point_cloud[:, :2] + np.array([x_range, y_range])  # image index  index = np.floor(shifted_coord / grid_size).astype(np.int)  # choose illegal index  bound_x = np.logical_and(index[:, 0] >= 0, index[:, 0] < image_size[0])  bound_y = np.logical_and(index[:, 1] >= 0, index[:, 1] < image_size[1])  bound_box = np.logical_and(bound_x, bound_y)  index = index[bound_box]  # show image  image = np.zeros((640, 640), dtype=np.uint8)  image[index[:, 0], index[:, 1]] = 255  res = Image.fromarray(image)  # rgb = Image.merge('RGB', (res, res, res))  res.show()

以上這篇Python實現點云投影到平面顯示就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林站長站。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 天镇县| 密云县| 耿马| 新绛县| 澄江县| 宁阳县| 贞丰县| 郑州市| 岑巩县| 中卫市| 互助| 始兴县| 宁远县| 兴山县| 十堰市| 邹城市| 广安市| 枣阳市| 栾川县| 卢氏县| 蒲城县| 临海市| 合水县| 泰州市| 合江县| 华阴市| 都匀市| 全州县| 陕西省| 浦城县| 雷山县| 贺州市| 长乐市| 兴化市| 平山县| 四川省| 甘孜| 朔州市| 惠来县| 简阳市| 洛宁县|