VTK/Examples/Cxx/PolyData/GreedyTerrainDecimation

From KitwarePublic

Jump to: navigation, search
VTK Examples Baseline PolyData TestGreedyTerrainDecimation.png

GreedyTerrainDecimation.cxx

#include <vtkVersion.h>
#include <vtkPolyData.h>
#include <vtkProperty.h>
#include <vtkMath.h>
#include <vtkSmartPointer.h>
#include <vtkPolyDataMapper.h>
#include <vtkActor.h>
#include <vtkRenderWindow.h>
#include <vtkRenderer.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkImageData.h>
#include <vtkGreedyTerrainDecimation.h>
 
int main(int argc, char *argv[])
{
  // Create an image
  vtkSmartPointer<vtkImageData> image = 
    vtkSmartPointer<vtkImageData>::New();
  image->SetDimensions(3,3,1);
#if VTK_MAJOR_VERSION <= 5
  image->SetNumberOfScalarComponents(1);
  image->SetScalarTypeToUnsignedChar();
#else
  image->AllocateScalars(VTK_UNSIGNED_CHAR,1);
#endif  
  int dims[3];
  image->GetDimensions(dims);
  for(unsigned int i = 0; i < dims[0]; i++)
    {
    for(unsigned int j = 0; j < dims[1]; j++)
      {
      unsigned char* pixel = static_cast<unsigned char*>(image->GetScalarPointer(i,j,0));
      //pixel[0] = vtkMath::Round(vtkMath::Random(0, 255));
      pixel[0] = vtkMath::Round(vtkMath::Random(0, 1));
      }
    }
 
  vtkSmartPointer<vtkGreedyTerrainDecimation> decimation =
    vtkSmartPointer<vtkGreedyTerrainDecimation>::New();
#if VTK_MAJOR_VERSION <= 5
  decimation->SetInputConnection(image->GetProducerPort());
#else
  decimation->SetInputData(image);
#endif
  decimation->Update();
 
  // Visualize
  vtkSmartPointer<vtkPolyDataMapper> mapper = 
      vtkSmartPointer<vtkPolyDataMapper>::New();
  mapper->SetInputConnection(decimation->GetOutputPort());
 
  vtkSmartPointer<vtkActor> actor = 
      vtkSmartPointer<vtkActor>::New();
  actor->SetMapper(mapper);
  actor->GetProperty()->SetInterpolationToFlat();
  actor->GetProperty()->EdgeVisibilityOn();
  actor->GetProperty()->SetEdgeColor(1,0,0);
 
  vtkSmartPointer<vtkRenderer> renderer = 
      vtkSmartPointer<vtkRenderer>::New();
  vtkSmartPointer<vtkRenderWindow> renderWindow = 
      vtkSmartPointer<vtkRenderWindow>::New();
  renderWindow->AddRenderer(renderer);
  vtkSmartPointer<vtkRenderWindowInteractor> renderWindowInteractor = 
      vtkSmartPointer<vtkRenderWindowInteractor>::New();
  renderWindowInteractor->SetRenderWindow(renderWindow);
 
  renderer->AddActor(actor);
  renderer->SetBackground(1,1,1); // Background color white
 
  renderWindow->Render();
  renderWindowInteractor->Start();
 
  return EXIT_SUCCESS;
}

CMakeLists.txt

cmake_minimum_required(VERSION 2.8)
 
PROJECT(GreedyTerrainDecimation)
 
find_package(VTK REQUIRED)
include(${VTK_USE_FILE})
 
if (APPLE)
  add_executable(GreedyTerrainDecimation MACOSX_BUNDLE GreedyTerrainDecimation.cxx)
else()
  add_executable(GreedyTerrainDecimation GreedyTerrainDecimation.cxx)
endif()
 
if(VTK_LIBRARIES)
  target_link_libraries(GreedyTerrainDecimation ${VTK_LIBRARIES})
else()
  target_link_libraries(GreedyTerrainDecimation vtkHybrid )
endif()
Personal tools