PolygonalSurfaceContourLineInterpolator
VTKEx/Cxx/PolyData/PolygonalSurfaceContourLineInterpolator
Other languages
See (CSharp)
Question
If you have a simple question about this example contact us at VTKExProject If your question is more complex and may require extended discussion, please use the VTK Discourse Forum
Code¶
PolygonalSurfaceContourLineInterpolator.cxx
#include <vtkSmartPointer.h>
#include <vtkActor.h>
#include <vtkCamera.h>
#include <vtkCellArray.h>
#include <vtkImageDataGeometryFilter.h>
#include <vtkPoints.h>
#include <vtkPolyData.h>
#include <vtkPolyDataCollection.h>
#include <vtkPolyDataMapper.h>
#include <vtkProperty.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkRenderer.h>
#include <vtkSphereSource.h>
#include <vtkTriangleFilter.h>
#include <vtkXMLPolyDataReader.h>
#include <vtkContourWidget.h>
#include <vtkOrientedGlyphContourRepresentation.h>
#include <vtkPolygonalSurfacePointPlacer.h>
#include <vtkPolygonalSurfaceContourLineInterpolator.h>
int main(int argc, char *argv[])
{
vtkSmartPointer<vtkPolyData> polyData;
if (argc < 2)
{
vtkSmartPointer<vtkSphereSource> sphereSource =
vtkSmartPointer<vtkSphereSource>::New();
sphereSource->SetThetaResolution(40);
sphereSource->SetPhiResolution(20);
sphereSource->Update();
polyData = sphereSource->GetOutput();
}
else
{
vtkSmartPointer<vtkXMLPolyDataReader> reader =
vtkSmartPointer<vtkXMLPolyDataReader>::New();
reader->SetFileName(argv[1]);
reader->Update();
polyData = reader->GetOutput();
}
// The Dijkistra interpolator will not accept cells that aren't triangles
vtkSmartPointer<vtkTriangleFilter> triangleFilter =
vtkSmartPointer<vtkTriangleFilter>::New();
triangleFilter->SetInputData( polyData );
triangleFilter->Update();
vtkSmartPointer<vtkPolyData> pd = triangleFilter->GetOutput();
//Create a mapper and actor
vtkSmartPointer<vtkPolyDataMapper> mapper =
vtkSmartPointer<vtkPolyDataMapper>::New();
mapper->SetInputConnection(triangleFilter->GetOutputPort());
vtkSmartPointer<vtkActor> actor =
vtkSmartPointer<vtkActor>::New();
actor->SetMapper(mapper);
actor->GetProperty()->SetInterpolationToFlat();
// Create the render window, renderer and interactor.
vtkSmartPointer<vtkRenderer> renderer =
vtkSmartPointer<vtkRenderer>::New();
vtkSmartPointer<vtkRenderWindow> renderWindow =
vtkSmartPointer<vtkRenderWindow>::New();
renderWindow->AddRenderer(renderer);
vtkSmartPointer<vtkRenderWindowInteractor> interactor =
vtkSmartPointer<vtkRenderWindowInteractor>::New();
interactor->SetRenderWindow(renderWindow);
// Add the actors to the renderer, set the background and size
renderer->AddActor(actor);
renderer->SetBackground (.3, .4, .5);
// Here comes the contour widget stuff...
vtkSmartPointer<vtkContourWidget> contourWidget =
vtkSmartPointer<vtkContourWidget>::New();
contourWidget->SetInteractor(interactor);
vtkSmartPointer<vtkOrientedGlyphContourRepresentation> rep =
dynamic_cast<vtkOrientedGlyphContourRepresentation*>(
contourWidget->GetRepresentation());
rep->GetLinesProperty()->SetColor(1, 0.2, 0);
rep->GetLinesProperty()->SetLineWidth(3.0);
vtkSmartPointer<vtkPolygonalSurfacePointPlacer> pointPlacer =
vtkSmartPointer<vtkPolygonalSurfacePointPlacer>::New();
pointPlacer->AddProp(actor);
pointPlacer->GetPolys()->AddItem( pd );
rep->SetPointPlacer(pointPlacer);
vtkSmartPointer<vtkPolygonalSurfaceContourLineInterpolator> interpolator =
vtkSmartPointer<vtkPolygonalSurfaceContourLineInterpolator>::New();
interpolator->GetPolys()->AddItem( pd );
rep->SetLineInterpolator(interpolator);
renderWindow->Render();
interactor->Initialize();
contourWidget->EnabledOn();
interactor->Start();
return EXIT_SUCCESS;
}
CMakeLists.txt¶
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
project(PolygonalSurfaceContourLineInterpolator)
find_package(VTK COMPONENTS
vtkvtkCommonCore
vtkvtkCommonDataModel
vtkvtkFiltersCore
vtkvtkFiltersGeometry
vtkvtkFiltersSources
vtkvtkIOXML
vtkvtkInteractionStyle
vtkvtkInteractionWidgets
vtkvtkRenderingContextOpenGL2
vtkvtkRenderingCore
vtkvtkRenderingFreeType
vtkvtkRenderingGL2PSOpenGL2
vtkvtkRenderingOpenGL2 QUIET)
if (NOT VTK_FOUND)
message("Skipping PolygonalSurfaceContourLineInterpolator: ${VTK_NOT_FOUND_MESSAGE}")
return ()
endif()
message (STATUS "VTK_VERSION: ${VTK_VERSION}")
if (VTK_VERSION VERSION_LESS "8.90.0")
# old system
include(${VTK_USE_FILE})
add_executable(PolygonalSurfaceContourLineInterpolator MACOSX_BUNDLE PolygonalSurfaceContourLineInterpolator.cxx )
target_link_libraries(PolygonalSurfaceContourLineInterpolator PRIVATE ${VTK_LIBRARIES})
else ()
# include all components
add_executable(PolygonalSurfaceContourLineInterpolator MACOSX_BUNDLE PolygonalSurfaceContourLineInterpolator.cxx )
target_link_libraries(PolygonalSurfaceContourLineInterpolator PRIVATE ${VTK_LIBRARIES})
# vtk_module_autoinit is needed
vtk_module_autoinit(
TARGETS PolygonalSurfaceContourLineInterpolator
MODULES ${VTK_LIBRARIES}
)
endif ()
Download and Build PolygonalSurfaceContourLineInterpolator¶
Click here to download PolygonalSurfaceContourLineInterpolator and its CMakeLists.txt file. Once the tarball PolygonalSurfaceContourLineInterpolator.tar has been downloaded and extracted,
cd PolygonalSurfaceContourLineInterpolator/build
If VTK is installed:
cmake ..
If VTK is not installed but compiled on your system, you will need to specify the path to your VTK build:
cmake -DVTK_DIR:PATH=/home/me/vtk_build ..
Build the project:
make
and run it:
./PolygonalSurfaceContourLineInterpolator
WINDOWS USERS
Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.