Find point cloud 2D edge points (with open3d python code)
Idea details: Project 3D points onto a 2D image, find the edges of the image, and then reverse map to find the corresponding edge points.
# coding:utf-8
import open3d as o3d
import numpy as np
import cv2…