1 Star 0 Fork 1

陈狗翔 / PRM-RS-path-planning

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
map_pgm.h 445 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈狗翔 提交于 2018-01-24 21:54 . PRM RS path planning
#ifndef MAP_PGM_H_H
#define MAP_PGM_H_H
#include <iostream>
#include <opencv2/opencv.hpp>
class Pgm_map
{
public:
int ** getGridMap2D();
Pgm_map(const char * filename);
bool transformMapToGrid();
const int getSizeX();
const int getSizeY();
cv::Mat getImg();
~Pgm_map();
private:
bool isopen;
cv::Mat basemap;
int ** gridmap2D;
int sizeX;
int sizeY;
const Pgm_map & operator=(const Pgm_map &); //must exist but not use
};
#endif
C++
1
https://gitee.com/ChenGouXiang/PRM-RS-path-planning.git
git@gitee.com:ChenGouXiang/PRM-RS-path-planning.git
ChenGouXiang
PRM-RS-path-planning
PRM-RS-path-planning
master

搜索帮助