29 for (
size_t i = 0; i < N; i++)
31 rnd.drawUniform<
float>(p_min.
x, p_max.
x),
32 rnd.drawUniform<
float>(p_min.
y, p_max.
y),
33 rnd.drawUniform<
float>(p_min.
z, p_max.
z));
49 for (
size_t i = 0; i < N; i++)
51 const double ang = i * 0.01;
52 TPoint3D pp = p + up * 30 * cos(ang) +
lat * 30 * sin(ang);
54 gl->insertPoint(ppf.x, ppf.y, ppf.z);
64 for (
size_t i = 0; i < N; i++)
66 rnd.drawGaussian1D<
float>(p_mean.
x, p_stddevs.
x),
67 rnd.drawGaussian1D<
float>(p_mean.
y, p_stddevs.
y),
68 rnd.drawGaussian1D<
float>(p_mean.
z, p_stddevs.
z));
85 theScene->insert(gl_pointcloud);
87 gl_pointcloud->setPointSize(3.0);
88 gl_pointcloud->enableColorFromZ();
94 cout <<
"Building point cloud...";
97 for (
int XX = -10; XX <= 10; XX++)
99 const double off_x = XX * 2 * L;
101 for (
int YY = -10; YY <= 10; YY++)
103 const double off_y = YY * 2 * L;
106 1e4, gl_pointcloud,
TPoint3D(off_x + 0, off_y + 0, 0),
107 TPoint3D(off_x + L, off_y + 0, 500));
110 1e4, gl_pointcloud,
TPoint3D(off_x + L, off_y + 0, 500),
111 TPoint3D(off_x + L, off_y + L, -500));
114 1e4, gl_pointcloud,
TPoint3D(off_x + L, off_y + L, -500),
115 TPoint3D(off_x + 0, off_y + L, 500));
118 1e4, gl_pointcloud,
TPoint3D(off_x + 0, off_y + L, 500),
126 printf(
"Point count: %e\n", (
double)gl_pointcloud->size());
131 gl_pointcloud->octree_get_graphics_boundingboxes(*gl_bb);
132 theScene->insert(gl_bb);
136 win.setCameraZoom(600);
139 view->setViewportClipDistances(0.1f, 1e6f);
143 win.unlockAccess3DScene();
146 cout <<
"Close the window or press any key to end.\n";
148 while (
win.isOpen() && !
end)
150 std::this_thread::sleep_for(5ms);
154 switch (
win.getPushedKey())
160 gl_bb->setVisibility(!gl_bb->isVisible());
167 "FPS=%5.02f | Rendered points=%.02e/%.02e (%.02f%%) | " 168 "Visib.oct.nodes: %u/%u",
169 win.getRenderingFPS(), (double)gl_pointcloud->getActuallyRendered(),
170 (double)gl_pointcloud->size(),
171 100 * double(gl_pointcloud->getActuallyRendered()) /
172 double(gl_pointcloud->size()),
173 (
unsigned int)gl_pointcloud->octree_get_visible_nodes(),
174 (
unsigned int)gl_pointcloud->octree_get_node_count());
176 win.get3DSceneAndLock();
177 win.addTextMessage(5, 5, s, 0);
179 5, 35,
"'b': switch bounding-boxes visible, 'q': quit", 1);
180 win.unlockAccess3DScene();
194 std::this_thread::sleep_for(500ms);
198 catch (
const std::exception& e)
205 printf(
"Untyped exception!!");
void TestOctreeRenderHugePointCloud()
std::string std::string format(std::string_view fmt, ARGS &&... args)
void insertRandomPoints_gauss(const size_t N, opengl::CPointCloud::Ptr &gl, const TPoint3D &p_mean, const TPoint3D &p_stddevs)
static Ptr Create(Args &&... args)
void crossProduct3D(const T &v0, const U &v1, V &vOut)
Computes the cross product of two 3D vectors, returning a vector normal to both.
This base provides a set of functions for maths stuff.
double lat
[deg], [deg], hgt over sea level[m]
TPoint3D_< double > TPoint3D
Lightweight 3D point.
mrpt::gui::CDisplayWindow3D::Ptr win
void insertRandomPoints_uniform(const size_t N, opengl::CPointCloud::Ptr &gl, const TPoint3D &p_min, const TPoint3D &p_max)
const_iterator end() const
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
The namespace for 3D scene representation and rendering.
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Classes for creating GUI windows for 2D and 3D visualization.
TPoint3D_< float > TPoint3Df
void insertRandomPoints_screw(const size_t N, opengl::CPointCloud::Ptr &gl, const TPoint3D &p_start, const TPoint3D &p_end)
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.