使用Python写简单的点云SUSAN关键点检测

这篇博客介绍了如何使用Python进行SUSAN关键点检测,核心在于一个并行计算响应值的函数,该函数基于KD树找到邻域内的点,计算响应值,并根据阈值筛选关键点。参数如邻域半径、相似距离阈值、响应值阈值和并行处理进程数会影响关键点检测的效果。博客展示了处理前后的点云结果。
摘要由CSDN通过智能技术生成

一、代码

Python

import numpy as np
import open3d as o3d
from scipy.spatial import cKDTree
from joblib import Parallel, delayed


def calculate_response(idx, points, radius, t, kdtree):
    # 使用KD树找到半径内的所有点
    neighbor_indices = kdtree.query_ball_point(points[idx], radius)
    neighbor_points = points[neighbor_indices]

    # 计算距离
    distances = np.linalg.norm(neighbor_points - points[idx], axis=1)

    # 计算响应值
    response = np.sum(distances < t) / len(neighbor_indices)
    return response if response > 0 else 0, idx


def susan_keypoint_detection_optimized(pcd, radius=0.05, t=0.01, response_threshold=0.5, n_jobs=-1):
    points = np.asarray(pcd.points)
    kdtree = cKDTree(points)

    #
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

jjm2002

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值