国产探花免费观看_亚洲丰满少妇自慰呻吟_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實現點云投影到平面顯示就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林站長站。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 巩留县| 拉孜县| 合阳县| 泽州县| 平罗县| 肇庆市| 夏河县| 濉溪县| 龙州县| 江孜县| 拉萨市| 鄱阳县| 汉寿县| 高密市| 潜山县| 沙田区| 贵德县| 长葛市| 铁岭县| 通山县| 施秉县| 菏泽市| 乐平市| 华容县| 两当县| 满洲里市| 许昌市| 郁南县| 昭苏县| 上虞市| 栾城县| 荔浦县| 松江区| 鄯善县| 黔江区| 宣化县| 仙游县| 石门县| 宁乡县| 宁乡县| 龙海市|