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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
|
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Software Guide : BeginCommandLineArgs
// INPUTS: {qb_RoadExtract.tif}
// OUTPUTS: {ExtractRoadOutput.png}
// 337 557 432 859 1.0 0.00005 1.0 0.39269 1.0 10.0 25.
// Software Guide : EndCommandLineArgs
// Software Guide : BeginLatex
//
// The easiest way to use the road extraction filter provided by OTB is to use the composite
// filter. If a modification in the pipeline is required to adapt to a particular situation,
// the step by step example, described in the next section can be adapted.
//
// This example demonstrates the use of the \doxygen{otb}{RoadExtractionFilter}.
// This filter is a composite filter achieving road extraction according to the algorithm
// adapted by E. Christophe and J. Inglada \cite{Christophe2007} from an original method
// proposed in \cite{Lacroix1998}.
//
// The first step toward the use of this filter is the inclusion of the proper header files.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
#include "otbPolyLineParametricPathWithValue.h"
#include "otbRoadExtractionFilter.h"
#include "otbDrawPathListFilter.h"
// Software Guide : EndCodeSnippet
#include "otbImage.h"
#include "otbImageFileReader.h"
#include "otbImageFileWriter.h"
#include "itkRescaleIntensityImageFilter.h"
#include "otbMath.h"
#include "itkInvertIntensityImageFilter.h"
#include "itkGrayscaleDilateImageFilter.h"
#include "itkBinaryBallStructuringElement.h"
int main(int argc, char * argv[])
{
if (argc != 14)
{
std::cerr << "Usage: " << argv[0];
std::cerr <<
" inputFileName outputFileName firstPixelComponent secondPixelComponent ";
std::cerr <<
"thirdPixelComponent fourthPixelComponent alpha amplitudeThrehsold tolerance ";
std::cerr <<
"angularThreshold-maxAngle firstMeanDistanceThreshold secondMeanDistanceThreshold ";
std::cerr << "distanceThreshold" << std::endl;
return EXIT_FAILURE;
}
const unsigned int Dimension = 2;
// Software Guide : BeginLatex
//
// Then we must decide what pixel type to use for the image. We choose to do
// all the computation in floating point precision and rescale the results
// between 0 and 255 in order to export PNG images.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef double InputPixelType;
typedef unsigned char OutputPixelType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// The images are defined using the pixel type and the dimension. Please note that
// the \doxygen{otb}{RoadExtractionFilter} needs an \doxygen{otb}{VectorImage} as input
// to handle multispectral images.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef otb::VectorImage<InputPixelType, Dimension> InputVectorImageType;
typedef otb::Image<InputPixelType, Dimension> InputImageType;
typedef otb::Image<OutputPixelType, Dimension> OutputImageType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// We define the type of the polyline that the filter produces. We use the
// \doxygen{otb}{PolyLineParametricPathWithValue}, which allows the filter to produce
// a likehood value along with each polyline. The filter is able to produce
// \doxygen{itk}{PolyLineParametricPath} as well.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef otb::PolyLineParametricPathWithValue<InputPixelType,
Dimension> PathType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Now we can define the \doxygen{otb}{RoadExtractionFilter} that takes a multi-spectral
// image as input and produces a list of polylines.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef otb::RoadExtractionFilter<InputVectorImageType,
PathType> RoadExtractionFilterType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// We also define an \doxygen{otb}{DrawPathListFilter} to draw the output
// polylines on an image, taking their likehood values into account.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef otb::DrawPathListFilter<InputImageType, PathType,
InputImageType> DrawPathFilterType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// The intensity rescaling of the results will be carried out by the
// \doxygen{itk}{RescaleIntensityImageFilter} which is templated by the
// input and output image types.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef itk::RescaleIntensityImageFilter<InputImageType,
OutputImageType> RescalerType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// An \doxygen{otb}{ImageFileReader} class is also instantiated in order to read
// image data from a file. Then, an \doxygen{otb}{ImageFileWriter}
// is instantiated in order to write the output image to a file.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef otb::ImageFileReader<InputVectorImageType> ReaderType;
typedef otb::ImageFileWriter<OutputImageType> WriterType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// The different filters composing our pipeline are created by invoking their
// \code{New()} methods, assigning the results to smart pointers.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
ReaderType::Pointer reader = ReaderType::New();
RoadExtractionFilterType::Pointer roadExtractionFilter
= RoadExtractionFilterType::New();
DrawPathFilterType::Pointer drawingFilter = DrawPathFilterType::New();
RescalerType::Pointer rescaleFilter = RescalerType::New();
WriterType::Pointer writer = WriterType::New();
// Software Guide : EndCodeSnippet
reader->SetFileName(argv[1]);
// Software Guide : BeginLatex
//
// The \doxygen{otb}{RoadExtractionFilter} needs to have a reference pixel
// corresponding to the spectral content likely to represent a road. This is done
// by passing a pixel to the filter. Here we suppose that the input image
// has four spectral bands.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
InputVectorImageType::PixelType ReferencePixel;
ReferencePixel.SetSize(4);
ReferencePixel.SetElement(0, ::atof(argv[3]));
ReferencePixel.SetElement(1, ::atof(argv[4]));
ReferencePixel.SetElement(2, ::atof(argv[5]));
ReferencePixel.SetElement(3, ::atof(argv[6]));
roadExtractionFilter->SetReferencePixel(ReferencePixel);
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// We must also set the alpha parameter of the filter which allows us to tune the width of the roads
// we want to extract. Typical value is $1.0$ and should be working in most situations.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
roadExtractionFilter->SetAlpha(atof(argv[7]));
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// All other parameter should not influence the results too much in most situation and can
// be kept at the default value.
//
// The amplitude threshold parameter tunes the sensitivity of the vectorization step. A typical
// value is $5 \cdot 10^{-5}$.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
roadExtractionFilter->SetAmplitudeThreshold(atof(argv[8]));
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// The tolerance threshold tunes the sensitivity of the path simplification step.
// Typical value is $1.0$.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
roadExtractionFilter->SetTolerance(atof(argv[9]));
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Roads are not likely to have sharp turns. Therefore we set the max angle parameter,
// as well as the link angular threshold. The value is typically $\frac{\pi}{8}$.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
roadExtractionFilter->SetMaxAngle(atof(argv[10]));
roadExtractionFilter->SetAngularThreshold(atof(argv[10]));
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// The \doxygen{otb}{RoadExtractionFilter} performs two odd path removing operations at different stage of
// its execution. The first mean distance threshold and the second mean distance threshold set their criterion
// for removal. Path are removed if their mean distance between nodes is to small, since such path coming
// from previous filters are likely to be tortuous. The first removal operation as a typical mean distance
// threshold parameter of $1.0$, and the second of $10.0$.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
roadExtractionFilter->SetFirstMeanDistanceThreshold(atof(argv[11]));
roadExtractionFilter->SetSecondMeanDistanceThreshold(atof(argv[12]));
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// The \doxygen{otb}{RoadExtractionFilter} is able to link path whose ends are near
// according to an euclidean distance criterion. The threshold for this distance
// to link a path is the distance threshold parameter. A typical value is $25$.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
roadExtractionFilter->SetDistanceThreshold(atof(argv[13]));
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// We will now create a black background image to draw the resulting polyline on.
// To achieve this we need to know the size of our input image. Therefore we trigger the
// \code{GenerateOutputInformation()} of the reader.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
reader->GenerateOutputInformation();
InputImageType::Pointer blackBackground = InputImageType::New();
blackBackground->CopyInformation(reader->GetOutput());
blackBackground->SetRegions(blackBackground->GetLargestPossibleRegion());
blackBackground->Allocate();
blackBackground->FillBuffer(0);
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// We tell the \doxygen{otb}{DrawPathListFilter} to try to use the likehood value
// embedded within the polyline as a value for drawing this polyline if possible.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
drawingFilter->UseInternalPathValueOn();
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// The \code{itk::RescaleIntensityImageFilter} needs to know which
// is the minimum and maximum values of the output generated
// image. Those can be chosen in a generic way by using the
// \code{NumericTraits} functions, since they are templated over
// the pixel type.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
rescaleFilter->SetOutputMinimum(itk::NumericTraits<OutputPixelType>::min());
rescaleFilter->SetOutputMaximum(itk::NumericTraits<OutputPixelType>::max());
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Now it is time for some pipeline wiring.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
roadExtractionFilter->SetInput(reader->GetOutput());
drawingFilter->SetInput(blackBackground);
drawingFilter->SetInputPath(roadExtractionFilter->GetOutput());
rescaleFilter->SetInput(drawingFilter->GetOutput());
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// The update of the pipeline is triggered by the \code{Update()} method
// of the rescale intensity filter.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
rescaleFilter->Update();
// Software Guide : EndCodeSnippet
// output image enhancement
typedef itk::BinaryBallStructuringElement<OutputPixelType,
Dimension>
StructuringElementType;
typedef itk::GrayscaleDilateImageFilter<OutputImageType, OutputImageType,
StructuringElementType>
DilateFilterType;
typedef itk::InvertIntensityImageFilter<OutputImageType,
OutputImageType>
InvertFilterType;
StructuringElementType se;
se.SetRadius(1);
se.CreateStructuringElement();
DilateFilterType::Pointer dilater = DilateFilterType::New();
dilater->SetInput(rescaleFilter->GetOutput());
dilater->SetKernel(se);
InvertFilterType::Pointer invertFilter = InvertFilterType::New();
invertFilter->SetInput(dilater->GetOutput());
writer->SetFileName(argv[2]);
writer->SetInput(invertFilter->GetOutput());
writer->Update();
// Software Guide : BeginLatex
//
// Figure~\ref{fig:ROADEXTRACTION_FILTER} shows the result of applying
// the road extraction filter to a fusionned Quickbird image.
// \begin{figure}
// \center
// \includegraphics[width=0.44\textwidth]{qb_ExtractRoad_pretty.eps}
// \includegraphics[width=0.44\textwidth]{ExtractRoadOutput.eps}
// \itkcaption[Road extraction filter application]{Result of applying
// the \doxygen{otb}{RoadExtractionFilter} to a fusionned Quickbird
// image. From left to right : original image, extracted road with their
// likehood values (color are inverted for display).}
// \label{fig:ROADEXTRACTION_FILTER}
// \end{figure}
//
// Software Guide : EndLatex
return EXIT_SUCCESS;
}
|