#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main (int argc, char *argv[]) { if (argc < 3) { std::cerr << "Usage: " << argv[0] << " InputPolyDataFile(.vtp) NumberOfContours" << std::endl; return EXIT_FAILURE; } // Read the file vtkSmartPointer reader = vtkSmartPointer::New(); reader->SetFileName( argv[1] ); reader->Update(); // Update so that we can get the scalar range double scalarRange[2]; reader->GetOutput()->GetPointData()->GetScalars()->GetRange(scalarRange); // Check for a reasonable number of contours to avoid excessive // computation. Here we arbitrarily pick an upper limit of 1000 int numberOfContours = atoi(argv[2]); if (numberOfContours > 1000) { std::cout << "ERROR: the number of contours " << numberOfContours << " exceeds 1000" << std::endl; return EXIT_FAILURE; } if (numberOfContours <= 0) { std::cout << "ERROR: the number of contours " << numberOfContours << " is <= 0" << std::endl; return EXIT_FAILURE; } vtkSmartPointer bandedContours = vtkSmartPointer::New(); bandedContours->SetInputConnection(reader->GetOutputPort()); bandedContours->SetScalarModeToValue(); bandedContours->GenerateContourEdgesOn(); bandedContours->GenerateValues( numberOfContours, scalarRange[0], scalarRange[1]); vtkSmartPointer lut = vtkSmartPointer::New(); lut->SetNumberOfTableValues(numberOfContours + 1); lut->Build(); vtkSmartPointer contourMapper = vtkSmartPointer::New(); contourMapper->SetInputConnection(bandedContours->GetOutputPort()); contourMapper->SetScalarRange(scalarRange[0], scalarRange[1]); contourMapper->SetScalarModeToUseCellData(); contourMapper->SetLookupTable(lut); vtkSmartPointer contourActor = vtkSmartPointer::New(); contourActor->SetMapper(contourMapper); contourActor->GetProperty()->SetInterpolationToFlat(); vtkSmartPointer contourLineMapper = vtkSmartPointer::New(); contourLineMapper->SetInputData(bandedContours->GetContourEdgesOutput()); contourLineMapper->SetScalarRange(scalarRange[0], scalarRange[1]); contourLineMapper->ScalarVisibilityOff(); vtkSmartPointer contourLineActor = vtkSmartPointer::New(); contourLineActor->SetMapper(contourLineMapper); contourLineActor->GetProperty()->SetLineWidth(2); // The usual renderer, render window and interactor vtkSmartPointer ren1 = vtkSmartPointer::New(); vtkSmartPointer renWin = vtkSmartPointer::New(); vtkSmartPointer iren = vtkSmartPointer::New(); ren1->SetBackground(.1, .2, .3); renWin->AddRenderer(ren1); iren->SetRenderWindow(renWin); // Add the actors ren1->AddActor(contourActor); ren1->AddActor(contourLineActor); // Begin interaction renWin->Render(); iren->Start(); return EXIT_SUCCESS; }