1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
// Software Guide : BeginCommandLineArgs
// INPUTS: {StereoFixed.png}, {StereoMoving.png}
// OUTPUTS: {fcDisplacementFieldOutput-horizontal.png}, {fcDisplacementFieldOutput-vertical.png}, {fcCorrelFieldOutput.png}, {fcDResampledOutput2.png}
// 1.0 5 3 0.1
// Software Guide : EndCommandLineArgs
// Software Guide : BeginCommandLineArgs
// INPUTS: {StereoFixed.png}, {StereoMoving.png}
// OUTPUTS: {fcMRSDDisplacementFieldOutput-horizontal.png}, {fcMRSDDisplacementFieldOutput-vertical.png}, {fcMRSDCorrelFieldOutput.png}, {fcMRSDDResampledOutput2.png}
// 1.0 5 3 0.1 mrsd
// Software Guide : EndCommandLineArgs
// Software Guide : BeginLatex
//
// This example demonstrates the use of the \doxygen{otb}{FineRegistrationImageFilter}. This filter performs deformation estimation
// using the classical extrema of image-to-image metric look-up in a search window.
//
// The first step toward the use of these filters is to include the proper header files.
//
// Software Guide : EndLatex
#include "otbImageFileWriter.h"
#include "otbImageFileReader.h"
#include "itkUnaryFunctorImageFilter.h"
#include "itkRecursiveGaussianImageFilter.h"
#include "otbWarpImageFilter.h"
#include "itkMeanReciprocalSquareDifferenceImageToImageMetric.h"
// Software Guide : BeginCodeSnippet
#include "otbFineRegistrationImageFilter.h"
// Software Guide : EndCodeSnippet
#include "otbImageOfVectorsToMonoChannelExtractROI.h"
#include "itkRescaleIntensityImageFilter.h"
#include "itkCastImageFilter.h"
#include <iostream>
int main(int argc, char** argv)
{
if (argc < 11)
{
std::cerr << "Usage: " << argv[0];
std::cerr <<
" fixedFileName movingFileName fieldOutNameHorizontal fieldOutNameVertical fieldMetric warped ";
std::cerr << "smoothingSigma metricRadius explorationRadius subpixelPrecision";
return EXIT_FAILURE;
}
const unsigned int ImageDimension = 2;
typedef double PixelType;
typedef itk::Vector<double, ImageDimension> DisplacementPixelType;
typedef unsigned char OutputPixelType;
typedef otb::Image<OutputPixelType, ImageDimension> OutputImageType;
// Software Guide : BeginLatex
//
// Several type of \doxygen{otb}{Image} are required to represent the input image, the metric field,
// and the deformation field.
//
// Software Guide : EndLatex
//Allocate Images
// Software Guide : BeginCodeSnippet
typedef otb::Image<PixelType, ImageDimension> InputImageType;
typedef otb::Image<PixelType, ImageDimension> MetricImageType;
typedef otb::Image<DisplacementPixelType,
ImageDimension> DisplacementFieldType;
// Software Guide : EndCodeSnippet
typedef otb::ImageFileReader<InputImageType> InputReaderType;
InputReaderType::Pointer fReader = InputReaderType::New();
fReader->SetFileName(argv[1]);
InputReaderType::Pointer mReader = InputReaderType::New();
mReader->SetFileName(argv[2]);
// Software Guide : BeginLatex
//
// To make the metric estimation more robust, the first
// required step is to blur the input images. This is done using the
// \doxygen{itk}{RecursiveGaussianImageFilter}:
//
// Software Guide : EndLatex
//Blur input images
// Software Guide : BeginCodeSnippet
typedef itk::RecursiveGaussianImageFilter<InputImageType,
InputImageType> InputBlurType;
InputBlurType::Pointer fBlur = InputBlurType::New();
fBlur->SetInput(fReader->GetOutput());
fBlur->SetSigma(atof(argv[7]));
InputBlurType::Pointer mBlur = InputBlurType::New();
mBlur->SetInput(mReader->GetOutput());
mBlur->SetSigma(atof(argv[7]));
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Now, we declare and instantiate the \doxygen{otb}{FineCorrelationImageFilter} which is going to perform the registration:
//
// Software Guide : EndLatex
//Create the filter
// Software Guide : BeginCodeSnippet
typedef otb::FineRegistrationImageFilter<InputImageType,
MetricImageType,
DisplacementFieldType>
RegistrationFilterType;
RegistrationFilterType::Pointer registrator = RegistrationFilterType::New();
registrator->SetMovingInput(mBlur->GetOutput());
registrator->SetFixedInput(fBlur->GetOutput());
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Some parameters need to be specified to the filter:
// \begin{itemize}
// \item The area where the search is performed. This area is defined by its radius:
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef RegistrationFilterType::SizeType RadiusType;
RadiusType searchRadius;
searchRadius[0] = atoi(argv[8]);
searchRadius[1] = atoi(argv[8]);
registrator->SetSearchRadius(searchRadius);
// Software Guide : EndCodeSnippet
std::cout << "Exploration radius " << registrator->GetSearchRadius() << std::endl;
// Software Guide : BeginLatex
//
// \item The window used to compute the local metric. This window is also defined by its radius:
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
RadiusType metricRadius;
metricRadius[0] = atoi(argv[9]);
metricRadius[1] = atoi(argv[9]);
registrator->SetRadius(metricRadius);
// Software Guide : EndCodeSnippet
std::cout << "Metric radius " << registrator->GetRadius() << std::endl;
// Software Guide : BeginLatex
//
// We need to set the sub-pixel accuracy we want to obtain:
//
// Software Guide : EndLatex
registrator->SetConvergenceAccuracy(atof(argv[10]));
// Software Guide : BeginLatex
//
// The default matching metric used by the \doxygen{FineRegistrationImageFilter} is standard correlation.
// However, we may also use any other image-to-image metric provided by ITK. For instance, here is how we
// would use the \doxygen{itk}{MutualInformationImageToImageMetric} (do not forget to include the proper header).
//
// Software Guide : EndLatex
if(argc > 11)
{
// Software Guide : BeginCodeSnippet
typedef itk::MeanReciprocalSquareDifferenceImageToImageMetric
<InputImageType, InputImageType> MRSDMetricType;
MRSDMetricType::Pointer mrsdMetric = MRSDMetricType::New();
registrator->SetMetric(mrsdMetric);
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// The \doxygen{itk}{MutualInformationImageToImageMetric} produces low value for poor matches, therefore, the filter has
// to maximize the metric :
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
registrator->MinimizeOff();
// Software Guide : EndCodeSnippet
}
// Software Guide : BeginLatex
//
// \end{itemize}
// The execution of the \doxygen{otb}{FineRegistrationImageFilter} will be triggered by
// the \code{Update()} call on the writer at the end of the
// pipeline. Make sure to use a
// \doxygen{otb}{ImageFileWriter} if you want to benefit
// from the streaming features.
//
// Software Guide : EndLatex
typedef otb::ImageOfVectorsToMonoChannelExtractROI<DisplacementFieldType,
InputImageType>
ChannelExtractionFilterType;
ChannelExtractionFilterType::Pointer channelExtractor =
ChannelExtractionFilterType::New();
channelExtractor->SetInput(registrator->GetOutputDisplacementField());
channelExtractor->SetChannel(1);
typedef itk::RescaleIntensityImageFilter<InputImageType,
OutputImageType> RescalerType;
RescalerType::Pointer fieldRescaler = RescalerType::New();
fieldRescaler->SetInput(channelExtractor->GetOutput());
fieldRescaler->SetOutputMaximum(255);
fieldRescaler->SetOutputMinimum(0);
typedef otb::ImageFileWriter<OutputImageType> DFWriterType;
DFWriterType::Pointer dfWriter = DFWriterType::New();
dfWriter->SetFileName(argv[3]);
dfWriter->SetInput(fieldRescaler->GetOutput());
dfWriter->Update();
channelExtractor->SetChannel(2);
dfWriter->SetFileName(argv[4]);
dfWriter->Update();
typedef otb::WarpImageFilter<InputImageType, InputImageType,
DisplacementFieldType> WarperType;
WarperType::Pointer warper = WarperType::New();
InputImageType::PixelType padValue = 4.0;
warper->SetInput(mReader->GetOutput());
warper->SetDisplacementField(registrator->GetOutputDisplacementField());
warper->SetEdgePaddingValue(padValue);
typedef itk::RescaleIntensityImageFilter<MetricImageType,
OutputImageType> MetricRescalerType;
MetricRescalerType::Pointer metricRescaler = MetricRescalerType::New();
metricRescaler->SetInput(registrator->GetOutput());
metricRescaler->SetOutputMinimum(0);
metricRescaler->SetOutputMaximum(255);
typedef otb::ImageFileWriter<OutputImageType> WriterType;
WriterType::Pointer writer1 = WriterType::New();
writer1->SetInput(metricRescaler->GetOutput());
writer1->SetFileName(argv[5]);
writer1->Update();
typedef itk::CastImageFilter<InputImageType, OutputImageType> CastFilterType;
CastFilterType::Pointer caster = CastFilterType::New();
caster->SetInput(warper->GetOutput());
WriterType::Pointer writer2 = WriterType::New();
writer2->SetFileName(argv[6]);
writer2->SetInput(caster->GetOutput());
writer2->Update();
// Software Guide : BeginLatex
//
// Figure~\ref{fig:FineCorrelationImageFilterOUTPUT} shows the result of
// applying the \doxygen{otb}{FineRegistrationImageFilter}.
//
// \begin{figure}
// \center
// \includegraphics[width=0.2\textwidth]{StereoFixed.eps}
// \includegraphics[width=0.2\textwidth]{StereoMoving.eps}
// \includegraphics[width=0.2\textwidth]{fcCorrelFieldOutput.eps}
// \includegraphics[width=0.2\textwidth]{fcMRSDCorrelFieldOutput.eps}
// \includegraphics[width=0.2\textwidth]{fcDResampledOutput2.eps}
// \includegraphics[width=0.2\textwidth]{fcMRSDDResampledOutput2.eps}
// \includegraphics[width=0.2\textwidth]{fcDisplacementFieldOutput-horizontal.eps}
// \includegraphics[width=0.2\textwidth]{fcMRSDDisplacementFieldOutput-horizontal.eps}
// \itkcaption[Displacement field and resampling from fine registration]{From left
// to right and top to bottom: fixed input image, moving image with a low stereo angle,
// local correlation field, local mean reciprocal square difference field,
// resampled image based on correlation, resampled image based on mean reciprocal square difference,
// estimated epipolar deformation using on correlation,
// estimated epipolar deformation using mean reciprocal square difference.
// }
// \label{fig:FineCorrelationImageFilterOUTPUT}
// \end{figure}
//
// Software Guide : EndLatex
return EXIT_SUCCESS;
}
|