Open3D makes heat map based on point cloud elevation

I. Overview

  As in the title, based on the elevation of the point cloud to make a heat map rendering color point cloud. The result is shown in the figure below:
insert image description here

2. Code implementation

import numpy as np
import open3d as o3d
from matplotlib import pyplot as plt

# -----------------------------------读取点云-----------------------------------
pcd = o3d.io.

Guess you like

Origin blog.csdn.net/qq_36686437/article/details/130039083