ITK/Examples/Broken/Images/InPlace: Difference between revisions

From KitwarePublic
< ITK‎ | Examples
Jump to navigationJump to search
No edit summary
mNo edit summary
Line 16: Line 16:
typedef itk::Image< unsigned char, 2 >  ImageType;
typedef itk::Image< unsigned char, 2 >  ImageType;


void ApplyThresholding(ImageType::Pointer image);
static void ApplyThresholding(ImageType::Pointer image);


int main(int argc, char *argv[])
int main(int argc, char *argv[])

Revision as of 22:55, 2 March 2011

InPlace.cxx

<source lang="cpp">

  1. include "itkImage.h"
  2. include "itkImageFileReader.h"
  3. include "itkBinaryThresholdImageFilter.h"
  1. include <itkImageToVTKImageFilter.h>
  1. include "vtkImageViewer.h"
  2. include "vtkRenderWindowInteractor.h"
  3. include "vtkSmartPointer.h"
  4. include "vtkImageActor.h"
  5. include "vtkInteractorStyleImage.h"
  6. include "vtkRenderer.h"

typedef itk::Image< unsigned char, 2 > ImageType;

static void ApplyThresholding(ImageType::Pointer image);

int main(int argc, char *argv[]) {

 if(argc < 2)
   {
   std::cerr << "Required: filename" << std::endl;
   return EXIT_FAILURE;
   }
   
 std::string inputFilename = argv[1];
 typedef itk::ImageFileReader<ImageType> ReaderType;
 ReaderType::Pointer reader = ReaderType::New();
 reader->SetFileName(inputFilename.c_str());
 reader->Update();
 ImageType::Pointer image = reader->GetOutput();
 ApplyThresholding(image);
 
 // Visualize
 typedef itk::ImageToVTKImageFilter<ImageType> ConnectorType;
 ConnectorType::Pointer connector = ConnectorType::New();
 connector->SetInput(image);
 vtkSmartPointer<vtkImageActor> actor =
   vtkSmartPointer<vtkImageActor>::New();
 actor->SetInput(connector->GetOutput());
 // There will be one render window
 vtkSmartPointer<vtkRenderWindow> renderWindow =
   vtkSmartPointer<vtkRenderWindow>::New();
 vtkSmartPointer<vtkRenderWindowInteractor> interactor =
   vtkSmartPointer<vtkRenderWindowInteractor>::New();
 interactor->SetRenderWindow(renderWindow);
 vtkSmartPointer<vtkRenderer> renderer =
   vtkSmartPointer<vtkRenderer>::New();
 renderWindow->AddRenderer(renderer);
 renderer->AddActor(actor);
 renderer->ResetCamera();
 renderWindow->Render();
 vtkSmartPointer<vtkInteractorStyleImage> style =
   vtkSmartPointer<vtkInteractorStyleImage>::New();
 interactor->SetInteractorStyle(style);
 interactor->Start();
 
 return EXIT_SUCCESS;

}

void ApplyThresholding(ImageType::Pointer image) {

 typedef itk::BinaryThresholdImageFilter <ImageType, ImageType>
         BinaryThresholdImageFilterType;
 BinaryThresholdImageFilterType::Pointer thresholdFilter
         = BinaryThresholdImageFilterType::New();
 thresholdFilter->SetInput(image);
 thresholdFilter->SetLowerThreshold(10);
 thresholdFilter->SetUpperThreshold(50);
 thresholdFilter->SetInsideValue(255);
 thresholdFilter->SetOutsideValue(0);
 thresholdFilter->InPlaceOn();
 thresholdFilter->Update();

} </source>

CMakeLists.txt

<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 3.9.5)

project(InPlace)

find_package(ITK REQUIRED) include(${ITK_USE_FILE}) if (ITKVtkGlue_LOADED)

 find_package(VTK REQUIRED)
 include(${VTK_USE_FILE})

else()

 find_package(ItkVtkGlue REQUIRED)
 include(${ItkVtkGlue_USE_FILE})
 set(Glue ItkVtkGlue)

endif()

add_executable(InPlace MACOSX_BUNDLE InPlace.cxx) target_link_libraries(InPlace

 ${Glue}  ${VTK_LIBRARIES} ${ITK_LIBRARIES})

</syntaxhighlight>

Download and Build InPlace

Click here to download InPlace. and its CMakeLists.txt file. Once the tarball InPlace.tar has been downloaded and extracted,

cd InPlace/build 
  • If ITK is installed:
cmake ..
  • If ITK is not installed but compiled on your system, you will need to specify the path to your ITK build:
cmake -DITK_DIR:PATH=/home/me/itk_build ..

Build the project,

make

and run it:

./InPlace

WINDOWS USERS PLEASE NOTE: Be sure to add the VTK and ITK bin directories to your path. This will resolve the VTK and ITK dll's at run time.

Building All of the Examples

Many of the examples in the ITK Wiki Examples Collection require VTK. You can build all of the the examples by following these instructions. If you are a new VTK user, you may want to try the Superbuild which will build a proper ITK and VTK.

ItkVtkGlue

ITK >= 4

For examples that use QuickView (which depends on VTK), you must have built ITK with Module_ITKVtkGlue=ON.

ITK < 4

Some of the ITK Examples require VTK to display the images. If you download the entire ITK Wiki Examples Collection, the ItkVtkGlue directory will be included and configured. If you wish to just build a few examples, then you will need to download ItkVtkGlue and build it. When you run cmake it will ask you to specify the location of the ItkVtkGlue binary directory.