ITK/Examples/WishList/ImageProcessing/ColorNormalizedCorrelation

From KitwarePublic
< ITK‎ | Examples
Revision as of 17:21, 25 December 2012 by Lorensen (talk | contribs)
Jump to navigationJump to search

This example extracts a patch from a color image and searches for it using normalized correlation. The output of the correlation filter is a correlation map. The maximum of this map is the "best" position of the query patch. We know the correct location because we extracted the patch from the image, so it will match exactly.

ColorNormalizedCorrelation.cxx

<source lang="cpp">

  1. include "itkImage.h"
  2. include "itkImageFileReader.h"
  3. include "itkNormalizedCorrelationImageFilter.h"
  4. include "itkRegionOfInterestImageFilter.h"
  5. include "itkImageKernelOperator.h"
  6. include "itkRescaleIntensityImageFilter.h"
  7. include "itkImageFileWriter.h"
  8. include "itkMinimumMaximumImageCalculator.h"
  9. include "itkCovariantVector.h"
  1. include "QuickView.h"
  1. include <iostream>
  2. include <string>

// Vector types typedef itk::CovariantVector<float, 3> FloatVectorType; typedef itk::CovariantVector<unsigned char, 3> UnsignedCharVectorType;

// Vector image types typedef itk::Image<FloatVectorType, 2> FloatVectorImageType; typedef itk::Image<UnsignedCharVectorType, 2> UnsignedCharVectorImageType;

// Scalar image types typedef itk::Image<float, 2> FloatImageType; typedef itk::Image<unsigned char, 2> UnsignedCharImageType;

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

 if(argc < 2)
   {
   std::cerr << "Required: filename" << std::endl;
   return EXIT_FAILURE;
   }
 std::string filename = argv[1];
 typedef itk::ImageFileReader<FloatVectorImageType> ReaderType;
 // Read the image
 ReaderType::Pointer reader = ReaderType::New();
 reader->SetFileName(filename.c_str());
 reader->Update();
 // Extract a small region
 typedef itk::RegionOfInterestImageFilter< FloatVectorImageType,
                                           FloatVectorImageType > ExtractFilterType;
 ExtractFilterType::Pointer extractFilter = ExtractFilterType::New();
 FloatImageType::IndexType start;
 start.Fill(50);
 FloatImageType::SizeType patchSize;
 patchSize.Fill(51);
 FloatImageType::RegionType desiredRegion(start,patchSize);
 extractFilter->SetRegionOfInterest(desiredRegion);
 extractFilter->SetInput(reader->GetOutput());
 extractFilter->Update();
 // Perform normalized correlation
 // <input type, mask type (not used), output type>
 typedef itk::NormalizedCorrelationImageFilter<FloatVectorImageType, FloatVectorImageType, FloatImageType> CorrelationFilterType;
 itk::ImageKernelOperator<FloatVectorType> kernelOperator;
 kernelOperator.SetImageKernel(extractFilter->GetOutput());
 // The radius of the kernel must be the radius of the patch, NOT the size of the patch
 itk::Size<2> radius = extractFilter->GetOutput()->GetLargestPossibleRegion().GetSize();
 radius[0] = (radius[0]-1) / 2;
 radius[1] = (radius[1]-1) / 2;
 kernelOperator.CreateToRadius(radius);
 CorrelationFilterType::Pointer correlationFilter = CorrelationFilterType::New();
 correlationFilter->SetInput(reader->GetOutput());
 correlationFilter->SetTemplate(kernelOperator);
 correlationFilter->Update();
 typedef itk::MinimumMaximumImageCalculator <FloatImageType>
         MinimumMaximumImageCalculatorType;
 MinimumMaximumImageCalculatorType::Pointer minimumMaximumImageCalculatorFilter
         = MinimumMaximumImageCalculatorType::New ();
 minimumMaximumImageCalculatorFilter->SetImage(correlationFilter->GetOutput());
 minimumMaximumImageCalculatorFilter->Compute();
 itk::Index<2> maximumCorrelationPatchCenter = minimumMaximumImageCalculatorFilter->GetIndexOfMaximum();
 std::cout << "Maximum: " << maximumCorrelationPatchCenter << std::endl;
 // Note that the best correlation is at the center of the patch we extracted (ie. (75, 75) rather than the corner (50,50)
 typedef itk::RescaleIntensityImageFilter< FloatImageType, UnsignedCharImageType > RescaleFilterType;
 typedef itk::ImageFileWriter<UnsignedCharVectorImageType> WriterType;
 {
 RescaleFilterType::Pointer rescaleFilter = RescaleFilterType::New();
 rescaleFilter->SetInput(correlationFilter->GetOutput());
 rescaleFilter->SetOutputMinimum(0);
 rescaleFilter->SetOutputMaximum(255);
 rescaleFilter->Update();
 WriterType::Pointer writer = WriterType::New();
 writer->SetInput(rescaleFilter->GetOutput());
 writer->SetFileName("correlation.png");
 writer->Update();
 }
 {
 RescaleFilterType::Pointer rescaleFilter = RescaleVectorFilterType::New();
 rescaleFilter->SetInput(extractFilter->GetOutput());
 rescaleFilter->SetOutputMinimum(0);
 rescaleFilter->SetOutputMaximum(255);
 rescaleFilter->Update();
 WriterType::Pointer writer = WriterType::New();
 writer->SetInput(rescaleFilter->GetOutput());
 writer->SetFileName("patch.png");
 writer->Update();
 }
 // Extract the best matching patch
 FloatImageType::IndexType bestPatchStart;
 bestPatchStart[0] = maximumCorrelationPatchCenter[0] - radius[0];
 bestPatchStart[1] = maximumCorrelationPatchCenter[1] - radius[1];
 FloatImageType::RegionType bestPatchRegion(bestPatchStart,patchSize);
 ExtractFilterType::Pointer bestPatchExtractFilter = ExtractFilterType::New();
 bestPatchExtractFilter->SetRegionOfInterest(bestPatchRegion);
 bestPatchExtractFilter->SetInput(reader->GetOutput());
 bestPatchExtractFilter->Update();
 QuickView viewer;
 viewer.AddImage(reader->GetOutput());
 viewer.AddImage(extractFilter->GetOutput());
 viewer.AddImage(correlationFilter->GetOutput());
 viewer.AddImage(bestPatchExtractFilter->GetOutput());
 viewer.Visualize();
 return EXIT_SUCCESS;

}

</source>

CMakeLists.txt

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

project(ColorNormalizedCorrelation)

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(ColorNormalizedCorrelation MACOSX_BUNDLE ColorNormalizedCorrelation.cxx) target_link_libraries(ColorNormalizedCorrelation

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

</syntaxhighlight>

Download and Build ColorNormalizedCorrelation

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

cd ColorNormalizedCorrelation/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:

./ColorNormalizedCorrelation

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.