You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I came across the problem of having a lot of deprecated warnings of VTK (when using VTK 7.1.1) such as
Generic Warning: In ~/VTK-7.1.1/Common/Core/vtkAOSDataArrayTemplate.txx, line 262
vtkAOSDataArrayTemplate::InsertNextTupleValue was deprecated for VTK 7.1 and will be removed in a future version. Use vtkGenericDataArray::InsertNextTypedTuple instead.
This caused the visualization to fail as the terminal/console was spammed with these warnings. Just wanted to let people know that a simple workaround is to add
vtkObject::GlobalWarningDisplayOff();
in Visualization::Visualization (in external/viz/src/viz.cpp).
The text was updated successfully, but these errors were encountered:
I came across the problem of having a lot of deprecated warnings of VTK (when using VTK 7.1.1) such as
This caused the visualization to fail as the terminal/console was spammed with these warnings. Just wanted to let people know that a simple workaround is to add
in
Visualization::Visualization
(inexternal/viz/src/viz.cpp
).The text was updated successfully, but these errors were encountered: