VTK/Examples/Cxx/Filtering/SelectionSource
From KitwarePublic
< VTK | Examples | Cxx
Jump to navigationJump to searchRevision as of 21:59, 9 December 2012 by Lorensen (talk | contribs) (moved VTK/Examples/Broken/vtkSelectionSource to VTK/Examples/Broken/SelectionSource)
The output currently has 50 points when it should only have 10.
Contents
SelectionSource.cxx
#include <vtkSmartPointer.h>
#include <vtkPointSource.h>
#include <vtkExtractSelection.h>
//#include <vtkSelection.h>
#include <vtkSelectionNode.h>
#include <vtkSelectionSource.h>
#include <vtkPolyData.h>
#include <vtkUnstructuredGrid.h>
#include <vtkIdTypeArray.h>
int main(int argc, char *argv[])
{
vtkSmartPointer<vtkPointSource> pointSource =
vtkSmartPointer<vtkPointSource>::New();
pointSource->SetNumberOfPoints(50);
pointSource->Update();
cout << "There are " << pointSource->GetOutput()->GetNumberOfPoints() << " input points." << endl;
vtkSmartPointer<vtkSelectionSource> selectionSource =
vtkSmartPointer<vtkSelectionSource>::New();
selectionSource->SetContentType(vtkSelectionNode::INDICES);
selectionSource->SetFieldType(vtkSelectionNode::POINT);
for (int i = 10; i <= 20; i++)
{
selectionSource->AddID(-1, i);
}
selectionSource->Update();
vtkSmartPointer<vtkExtractSelection> extractSelection =
vtkSmartPointer<vtkExtractSelection>::New();
extractSelection->SetInput(0, pointSource->GetOutput());
extractSelection->SetInput(1, selectionSource->GetOutput());
extractSelection->Update();
vtkDataSet* ds = vtkDataSet::SafeDownCast (extractSelection->GetOutput());
cout << "There are " << ds->GetNumberOfPoints() << " output points." << endl;
return EXIT_SUCCESS;
}
Please try the new VTKExamples website.
CMakeLists.txt
cmake_minimum_required(VERSION 2.8)
PROJECT(SelectionSource)
find_package(VTK REQUIRED)
include(${VTK_USE_FILE})
add_executable(SelectionSource MACOSX_BUNDLE SelectionSource.cxx)
if(VTK_LIBRARIES)
target_link_libraries(SelectionSource ${VTK_LIBRARIES})
else()
target_link_libraries(SelectionSource vtkHybrid vtkWidgets)
endif()
Download and Build SelectionSource
Click here to download SelectionSource. and its CMakeLists.txt file.
Once the tarball SelectionSource.tar has been downloaded and extracted,
cd SelectionSource/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:
./SelectionSource
WINDOWS USERS PLEASE NOTE: Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.