Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check that vtk SafeDownCast worked #1245

Merged
merged 1 commit into from
Jun 9, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -620,12 +620,16 @@ pcl::visualization::PCLVisualizer::updateSphere (const PointT &center, double ra
// Get the actor pointer
ShapeActorMap::iterator am_it = shape_actor_map_->find (id);
vtkLODActor* actor = vtkLODActor::SafeDownCast (am_it->second);
if (!actor)
return (false);
#if VTK_MAJOR_VERSION < 6
vtkAlgorithm *algo = actor->GetMapper ()->GetInput ()->GetProducerPort ()->GetProducer ();
#else
vtkAlgorithm *algo = actor->GetMapper ()->GetInputAlgorithm ();
#endif
vtkSphereSource *src = vtkSphereSource::SafeDownCast (algo);
if (!src)
return (false);

src->SetCenter (double (center.x), double (center.y), double (center.z));
src->SetRadius (radius);
Expand Down Expand Up @@ -1170,6 +1174,8 @@ pcl::visualization::PCLVisualizer::addCorrespondences (
else
{
vtkSmartPointer<vtkLODActor> actor = vtkLODActor::SafeDownCast (am_it->second);
if (!actor)
return (false);
// Update the mapper
#if VTK_MAJOR_VERSION < 6
reinterpret_cast<vtkPolyDataMapper*>(actor->GetMapper ())->SetInput (line_data);
Expand Down Expand Up @@ -1764,6 +1770,8 @@ pcl::visualization::PCLVisualizer::updatePolygonMesh (

// Update colors
vtkUnsignedCharArray* colors = vtkUnsignedCharArray::SafeDownCast (polydata->GetPointData ()->GetScalars ());
if (!colors)
return (false);
int rgb_idx = -1;
std::vector<pcl::PCLPointField> fields;
rgb_idx = pcl::getFieldIndex (*cloud, "rgb", fields);
Expand Down
37 changes: 33 additions & 4 deletions visualization/src/pcl_visualizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ namespace
int
getDefaultScalarInterpolationForDataSet (vtkDataSet* data)
{
vtkPolyData* polyData = vtkPolyData::SafeDownCast (data);
vtkPolyData* polyData = vtkPolyData::SafeDownCast (data); // Check that polyData != NULL in case of segfault
return (polyData && polyData->GetNumberOfCells () != polyData->GetNumberOfVerts ());
}

Expand Down Expand Up @@ -1271,6 +1271,8 @@ pcl::visualization::PCLVisualizer::setPointCloudRenderingProperties (
}
// Get the actor pointer
vtkLODActor* actor = vtkLODActor::SafeDownCast (am_it->second.actor);
if (!actor)
return (false);

switch (property)
{
Expand Down Expand Up @@ -1301,6 +1303,8 @@ pcl::visualization::PCLVisualizer::getPointCloudRenderingProperties (int propert
return (false);
// Get the actor pointer
vtkLODActor* actor = vtkLODActor::SafeDownCast (am_it->second.actor);
if (!actor)
return (false);

switch (property)
{
Expand Down Expand Up @@ -1346,6 +1350,8 @@ pcl::visualization::PCLVisualizer::setPointCloudRenderingProperties (
}
// Get the actor pointer
vtkLODActor* actor = vtkLODActor::SafeDownCast (am_it->second.actor);
if (!actor)
return (false);

switch (property)
{
Expand Down Expand Up @@ -1401,6 +1407,8 @@ pcl::visualization::PCLVisualizer::setPointCloudSelected (const bool selected, c
}
// Get the actor pointer
vtkLODActor* actor = vtkLODActor::SafeDownCast (am_it->second.actor);
if (!actor)
return (false);

if (selected)
{
Expand Down Expand Up @@ -1432,6 +1440,8 @@ pcl::visualization::PCLVisualizer::setShapeRenderingProperties (
}
// Get the actor pointer
vtkActor* actor = vtkActor::SafeDownCast (am_it->second);
if (!actor)
return (false);

switch (property)
{
Expand Down Expand Up @@ -1477,6 +1487,8 @@ pcl::visualization::PCLVisualizer::setShapeRenderingProperties (
}
// Get the actor pointer
vtkActor* actor = vtkActor::SafeDownCast (am_it->second);
if (!actor)
return (false);

switch (property)
{
Expand All @@ -1501,6 +1513,8 @@ pcl::visualization::PCLVisualizer::setShapeRenderingProperties (
case PCL_VISUALIZER_FONT_SIZE:
{
vtkTextActor* text_actor = vtkTextActor::SafeDownCast (am_it->second);
if (!text_actor)
return (false);
vtkSmartPointer<vtkTextProperty> tprop = text_actor->GetTextProperty ();
tprop->SetFontSize (int (value));
text_actor->Modified ();
Expand Down Expand Up @@ -1710,6 +1724,9 @@ pcl::visualization::PCLVisualizer::updateShapePose (const std::string &id, const
else
actor = vtkLODActor::SafeDownCast (am_it->second);

if (!actor)
return (false);

vtkSmartPointer<vtkMatrix4x4> matrix = vtkSmartPointer<vtkMatrix4x4>::New ();

convertToVtkMatrix (pose.matrix (), matrix);
Expand All @@ -1733,6 +1750,9 @@ pcl::visualization::PCLVisualizer::updateCoordinateSystemPose (const std::string
else
actor = vtkLODActor::SafeDownCast (am_it->second);

if (!actor)
return (false);

vtkSmartPointer<vtkMatrix4x4> matrix = vtkSmartPointer<vtkMatrix4x4>::New ();

convertToVtkMatrix (pose.matrix (), matrix);
Expand Down Expand Up @@ -2664,11 +2684,12 @@ pcl::visualization::PCLVisualizer::updateText (const std::string &text, int xpos

// Retrieve the Actor
vtkTextActor* actor = vtkTextActor::SafeDownCast (am_it->second);
if (!actor)
return (false);

actor->SetPosition (xpos, ypos);
actor->SetInput (text.c_str ());

actor->Modified ();

return (true);
}

Expand All @@ -2689,6 +2710,8 @@ pcl::visualization::PCLVisualizer::updateText (const std::string &text, int xpos

// Create the Actor
vtkTextActor* actor = vtkTextActor::SafeDownCast (am_it->second);
if (!actor)
return (false);
actor->SetPosition (xpos, ypos);
actor->SetInput (text.c_str ());

Expand Down Expand Up @@ -2716,6 +2739,8 @@ pcl::visualization::PCLVisualizer::updateText (const std::string &text, int xpos

// Retrieve the Actor
vtkTextActor *actor = vtkTextActor::SafeDownCast (am_it->second);
if (!actor)
return (false);

actor->SetPosition (xpos, ypos);
actor->SetInput (text.c_str ());
Expand Down Expand Up @@ -3210,6 +3235,8 @@ pcl::visualization::PCLVisualizer::addTextureMesh (const pcl::TextureMesh &mesh,

vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New ();
vtkOpenGLHardwareSupport* hardware = vtkOpenGLRenderWindow::SafeDownCast (win_)->GetHardwareSupport ();
if (!hardware)
return (false);
bool supported = hardware->GetSupportsMultiTexturing ();
// Check if hardware support multi texture
std::size_t texture_units (hardware->GetNumberOfFixedTextureUnits ());
Expand Down Expand Up @@ -3745,8 +3772,10 @@ pcl::visualization::PCLVisualizer::renderViewTesselatedSphere (
continue;
}

vtkSmartPointer<vtkIdTypeArray> ids = vtkSmartPointer<vtkIdTypeArray>::New ();
vtkSmartPointer<vtkIdTypeArray> ids;
ids = vtkIdTypeArray::SafeDownCast(hdw_selection->GetNode(0)->GetSelectionList());
if (!ids)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can remove New() two lines above by the way.

return;
double visible_area = 0;
for (int sel_id = 0; sel_id < (ids->GetNumberOfTuples ()); sel_id++)
{
Expand Down