[rrt_algorithm05]技术文档_rrtGraph

Posted AIplusX

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[rrt_algorithm05]技术文档_rrtGraph相关的知识,希望对你有一定的参考价值。


file: rrt_graph.h

brief:这个rrt_graph.h文件是为了绘制rrt的地图,主要内容是包括任意障碍物的绘制方法的功能实现

author:AIplusX

version:beta_v0.0

date:2021_12_01

update:2021_12_01

warning:记得在类的析构函数里面delete掉堆内申请的内存

remarks:无

todo:可以做为之后rrt改进算法绘图类的基类

#pragma once

#include "Graph.h"

class rrtGraph

public:
    rrtGraph();
    ~rrtGraph();
    void init_obs_start_end();

private:
    rrtPara* rrt_graph_para = new rrtPara;
;


[rrt_algorithm05]技术文档_rrtGraph

以上是关于[rrt_algorithm05]技术文档_rrtGraph的主要内容,如果未能解决你的问题,请参考以下文章

[rrt_algorithm07]技术文档_rrt

[rrt_algorithm02]rrt算法实现

[rrt_algorithm]rrt算法以及伪代码

[rrt_algorithm04]基于easyX的任意障碍物绘制

[rrt_algorithm03]基于easyX的交互界面实现

RRT与RRT*算法具体步骤与程序详解(python)