@@ -30,8 +30,8 @@ void surfelwarp::Visualizer::DrawPointCloud(const PointCloud3f_Pointer &point_cl
30
30
viewer.addCoordinateSystem (2.0 , " point cloud" , 0 );
31
31
viewer.setBackgroundColor (0.05 , 0.05 , 0.05 , 1 );
32
32
viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 2 , " point cloud" );
33
- while (!viewer-> wasStopped ()) {
34
- viewer-> spinOnce ();
33
+ while (!viewer. wasStopped ()) {
34
+ viewer. spinOnce ();
35
35
}
36
36
#elif defined(WITH_CILANTRO)
37
37
cilantro::Visualizer viewer (window_title, " display" );
@@ -507,7 +507,7 @@ void surfelwarp::Visualizer::DrawMatchedRGBCloudPair(
507
507
PointCloud3fRGB_Pointer transformed_cloud_1 = transformPointCloudRGB (cloud_1, from1To2);
508
508
509
509
// Hand in to drawer
510
- DrawMatchedCloudPair (transformed_cloud_1, cloud_2);
510
+ DrawMatchedRGBCloudPair (transformed_cloud_1, cloud_2);
511
511
}
512
512
513
513
void surfelwarp::Visualizer::DrawMatchedCloudPair (
@@ -521,7 +521,7 @@ void surfelwarp::Visualizer::DrawMatchedCloudPair(
521
521
DeviceArray<float4>((float4 *) surfel_array.RawPtr (), surfel_array.Size ()),
522
522
DeviceArray<float4>((float4 *) color_time_array.RawPtr (), color_time_array.Size ())
523
523
);
524
- DrawMatchedCloudPair (cloud_1, cloud_2, camera2world);
524
+ DrawMatchedRGBCloudPair (cloud_1, cloud_2, camera2world);
525
525
}
526
526
527
527
0 commit comments