1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
/*
* Software License Agreement (BSD License)
*
* Point Cloud Library (PCL) - www.pointclouds.org
* Copyright (c) 2010-2012, Willow Garage, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of Willow Garage, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* $Id$
*
*/
/*
* obj_rec_ransac_orr_octree_zprojection.cpp
*
* Created on: Jan 15, 2013
* Author: papazov
*
* Visualizes the specialized octree class used for the ransac-based object
* recognition. Use the left/right arrows to select a full octree leaf which
* will be used to place a sphere at it and to cut the sphere against the
* other full octree leaves which are visualized in yellow.
*/
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/io/pcd_io.h>
#include <pcl/recognition/ransac_based/orr_octree_zprojection.h>
#include <pcl/visualization/pcl_visualizer.h>
#include <vtkVersion.h>
#include <vtkRenderWindow.h>
#include <vtkPolyData.h>
#include <vtkAppendPolyData.h>
#include <vtkPolyDataReader.h>
#include <vtkCubeSource.h>
#include <vtkPointData.h>
#include <vector>
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <thread>
using namespace pcl;
using namespace pcl::visualization;
using namespace pcl::recognition;
using namespace pcl::io;
using namespace std::chrono_literals;
void run (const char *file_name, float voxel_size);
bool vtk_to_pointcloud (const char* file_name, PointCloud<PointXYZ>& points);
void show_octree (ORROctree* octree, PCLVisualizer& viz);
void show_octree_zproj (ORROctreeZProjection* zproj, PCLVisualizer& viz);
void node_to_cube (const ORROctree::Node* node, vtkAppendPolyData* additive_octree);
void rectangle_to_vtk (float x1, float x2, float y1, float y2, float z, vtkAppendPolyData* additive_rectangle);
//#define _SHOW_POINTS_
int main (int argc, char ** argv)
{
if ( argc != 3 )
{
fprintf(stderr, "\nERROR: Syntax is ./pcl_obj_rec_ransac_orr_octree_zprojection <vtk file> <leaf_size>\n"
"EXAMPLE: ./pcl_obj_rec_ransac_orr_octree_zprojection ../../test/tum_table_scene.vtk 6\n\n");
return -1;
}
// Get the voxel size
float voxel_size = static_cast<float> (atof (argv[2]));
if ( voxel_size <= 0.0 )
{
fprintf(stderr, "ERROR: leaf_size has to be positive and not %lf\n", voxel_size);
return -1;
}
run(argv[1], voxel_size);
}
//===============================================================================================================================
void run (const char* file_name, float voxel_size)
{
PointCloud<PointXYZ>::Ptr points_in (new PointCloud<PointXYZ> ());
PointCloud<PointXYZ>::Ptr points_out (new PointCloud<PointXYZ> ());
// Get the points and normals from the input vtk file
if ( !vtk_to_pointcloud (file_name, *points_in) )
return;
// Build the octree with the desired resolution
ORROctree octree;
octree.build (*points_in, voxel_size);
// Now build the octree z-projection
ORROctreeZProjection zproj;
zproj.build (octree, 0.15f*voxel_size, 0.15f*voxel_size);
// The visualizer
PCLVisualizer viz;
show_octree(&octree, viz);
show_octree_zproj(&zproj, viz);
#ifdef _SHOW_POINTS_
// Get the point of every full octree leaf
octree.getFullLeafPoints (*points_out);
// Add the point clouds
viz.addPointCloud (points_in, "cloud in");
viz.addPointCloud (points_out, "cloud out");
// Change the appearance
viz.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 2, "cloud in");
viz.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 5, "cloud out");
viz.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_COLOR, 1.0, 0.0, 0.0, "cloud out");
#endif
// Enter the main loop
while (!viz.wasStopped ())
{
//main loop of the visualizer
viz.spinOnce (100);
std::this_thread::sleep_for(100ms);
}
}
//===============================================================================================================================
bool vtk_to_pointcloud (const char* file_name, PointCloud<PointXYZ>& pcl_points)
{
std::size_t len = strlen (file_name);
if ( file_name[len-3] != 'v' || file_name[len-2] != 't' || file_name[len-1] != 'k' )
{
fprintf (stderr, "ERROR: we need a .vtk object!\n");
return false;
}
// Load the model
vtkSmartPointer<vtkPolyDataReader> reader = vtkSmartPointer<vtkPolyDataReader>::New ();
reader->SetFileName (file_name);
reader->Update ();
// Get the points
vtkPolyData *vtk_poly = reader->GetOutput ();
vtkPoints *vtk_points = vtk_poly->GetPoints ();
vtkIdType num_points = vtk_points->GetNumberOfPoints ();
double p[3];
pcl_points.resize (num_points);
// Copy the points
for ( vtkIdType i = 0 ; i < num_points ; ++i )
{
vtk_points->GetPoint (i, p);
pcl_points[i].x = static_cast<float> (p[0]);
pcl_points[i].y = static_cast<float> (p[1]);
pcl_points[i].z = static_cast<float> (p[2]);
}
return true;
}
//===============================================================================================================================
void show_octree (ORROctree* octree, PCLVisualizer& viz)
{
vtkSmartPointer<vtkPolyData> vtk_octree = vtkSmartPointer<vtkPolyData>::New ();
vtkSmartPointer<vtkAppendPolyData> append = vtkSmartPointer<vtkAppendPolyData>::New ();
std::cout << "There are " << octree->getFullLeaves ().size () << " full leaves.\n";
std::vector<ORROctree::Node*>& full_leaves = octree->getFullLeaves ();
for (const auto &full_leaf : full_leaves)
// Add it to the other cubes
node_to_cube (full_leaf, append);
// Save the result
append->Update();
vtk_octree->DeepCopy (append->GetOutput ());
// Add to the visualizer
vtkRenderer *renderer = viz.getRenderWindow ()->GetRenderers ()->GetFirstRenderer ();
vtkSmartPointer<vtkActor> octree_actor = vtkSmartPointer<vtkActor>::New();
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
mapper->SetInputData (vtk_octree);
octree_actor->SetMapper(mapper);
// Set the appearance & add to the renderer
octree_actor->GetProperty ()->SetColor (1.0, 1.0, 1.0);
renderer->AddActor(octree_actor);
}
//===============================================================================================================================
void show_octree_zproj (ORROctreeZProjection* zproj, PCLVisualizer& viz)
{
std::cout << "There is (are) " << zproj->getFullPixels ().size () << " full pixel(s).\n";
vtkSmartPointer<vtkAppendPolyData> upper_bound = vtkSmartPointer<vtkAppendPolyData>::New (), lower_bound = vtkSmartPointer<vtkAppendPolyData>::New ();
const ORROctreeZProjection::Pixel *pixel;
const float *b = zproj->getBounds ();
float x, y, psize = zproj->getPixelSize ();
int i, j, width, height;
zproj->getNumberOfPixels (width, height);
for ( i = 0, x = b[0] ; i < width ; ++i, x += psize )
{
for ( j = 0, y = b[2] ; j < height ; ++j, y += psize )
{
pixel = zproj->getPixel (i, j);
if ( !pixel )
continue;
rectangle_to_vtk (x, x + psize, y, y + psize, pixel->z1 (), lower_bound);
rectangle_to_vtk (x, x + psize, y, y + psize, pixel->z2 (), upper_bound);
}
}
// Save the result
upper_bound->Update();
lower_bound->Update();
// Add to the visualizer
vtkRenderer *renderer = viz.getRenderWindow ()->GetRenderers ()->GetFirstRenderer ();
vtkSmartPointer<vtkActor> upper_actor = vtkSmartPointer<vtkActor>::New(), lower_actor = vtkSmartPointer<vtkActor>::New();
vtkSmartPointer<vtkDataSetMapper> upper_mapper = vtkSmartPointer<vtkDataSetMapper>::New (), lower_mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
upper_mapper->SetInputData (upper_bound->GetOutput ());
upper_actor->SetMapper(upper_mapper);
lower_mapper->SetInputData (lower_bound->GetOutput ());
lower_actor->SetMapper(lower_mapper);
// Set the appearance & add to the renderer
upper_actor->GetProperty ()->SetColor (1.0, 0.0, 0.0);
renderer->AddActor(upper_actor);
lower_actor->GetProperty ()->SetColor (1.0, 1.0, 0.0);
renderer->AddActor(lower_actor);
}
//===============================================================================================================================
void node_to_cube (const ORROctree::Node* node, vtkAppendPolyData* additive_octree)
{
// Define the cube representing the leaf
const float *b = node->getBounds ();
vtkSmartPointer<vtkCubeSource> cube = vtkSmartPointer<vtkCubeSource>::New ();
cube->SetBounds (b[0], b[1], b[2], b[3], b[4], b[5]);
cube->Update ();
additive_octree->AddInputData (cube->GetOutput ());
}
//===============================================================================================================================
void rectangle_to_vtk (float x1, float x2, float y1, float y2, float z, vtkAppendPolyData* additive_rectangle)
{
// Define the cube representing the leaf
vtkSmartPointer<vtkCubeSource> cube = vtkSmartPointer<vtkCubeSource>::New ();
cube->SetBounds (x1, x2, y1, y2, z, z);
cube->Update ();
additive_rectangle->AddInputData (cube->GetOutput ());
}
//===============================================================================================================================
|