Skip to content
Snippets Groups Projects
Commit d727b5d6 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

ENH: integer CompareImages application

parents 185c8749 4dfb5ebd
No related branches found
No related tags found
No related merge requests found
......@@ -46,3 +46,8 @@ OTB_CREATE_APPLICATION(NAME OSMDownloader
OTB_CREATE_APPLICATION(NAME ConcatenateVectorData
SOURCES otbConcatenateVectorData.cxx
LINK_LIBRARIES OTBIO)
OTB_CREATE_APPLICATION(NAME CompareImages
SOURCES otbCompareImages.cxx
LINK_LIBRARIES OTBIO)
/*=========================================================================
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.
=========================================================================*/
#include "otbCompareImages.h"
#include "otbVectorImage.h"
#include "otbImageFileReader.h"
#include "otbMultiToMonoChannelExtractROI.h"
#include "otbStreamingCompareImageFilter.h"
#include <iostream>
namespace otb
{
int CompareImages::Describe(ApplicationDescriptor* descriptor)
{
descriptor->SetName("CompareImages");
descriptor->SetDescription("Estimator between 2 images");
descriptor->AddOption("InputReference","The reference image","inR", 1, true, ApplicationDescriptor::InputImage);
descriptor->AddOption("InputMeasured","The measured image","inM", 1, true, ApplicationDescriptor::InputImage);
descriptor->AddOption("NumBandRefImage","The channel number to compare in the reference image (between 1 and number of channels)","chR", 1, false, ApplicationDescriptor::Integer);
descriptor->AddOption("NumBandMeasuredImage","The channel number to compare in the measured image (between 1 and number of channels)","chM", 1, false, ApplicationDescriptor::Integer);
descriptor->AddOption("StartX", "first point in x-axis ", "x0", 1, false, ApplicationDescriptor::Real);
descriptor->AddOption("StartY", "first point in y-axis ", "y0", 1, false, ApplicationDescriptor::Real);
descriptor->AddOption("SizeX", "size in x-axis ", "Nx", 1, false, ApplicationDescriptor::Integer);
descriptor->AddOption("SizeY", "size in y-axis ", "Ny", 1, false, ApplicationDescriptor::Integer);
descriptor->AddOption("AvailableMemory","Set the maximum of available memory for the pipeline execution in mega bytes (optional, 256 by default)","ram", 1, false, otb::ApplicationDescriptor::Integer);
return EXIT_SUCCESS;
}
int CompareImages::Execute(otb::ApplicationOptionsResult* parseResult)
{
typedef double PixelType;
typedef otb::VectorImage<PixelType, 2> ImageType;
typedef otb::ImageFileReader<ImageType> ReaderType;
typedef otb::MultiToMonoChannelExtractROI<PixelType, PixelType> ExtractROIMonoFilterType;
typedef otb::StreamingCompareImageFilter<ExtractROIMonoFilterType::OutputImageType> StreamingCompareImageFilterType;
//typedef otb::StreamingStatisticsImageFilter<ExtractROIMonoFilterType::OutputImageType> StreamingCompareImageFilterType;
// Read input images information
ReaderType::Pointer reader1= ReaderType::New();
reader1->SetFileName(parseResult->GetParameterString("InputReference"));
reader1->GenerateOutputInformation();
ReaderType::Pointer reader2= ReaderType::New();
reader2->SetFileName(parseResult->GetParameterString("InputMeasured"));
reader2->GenerateOutputInformation();
unsigned int layer1 = 1;
unsigned int layer2 = 1;
if (parseResult->IsOptionPresent("NumBandRefImage"))
{
layer1 = parseResult->GetParameterUInt("NumBandRefImage");
}
if (parseResult->IsOptionPresent("NumBandMeasuredImage"))
{
layer2 = parseResult->GetParameterUInt("NumBandMeasuredImage");
}
ExtractROIMonoFilterType::Pointer extractROIMonoFilter1= ExtractROIMonoFilterType::New();
extractROIMonoFilter1->SetInput(reader1->GetOutput());
extractROIMonoFilter1->SetChannel( layer1 );
ExtractROIMonoFilterType::Pointer extractROIMonoFilter2= ExtractROIMonoFilterType::New();
extractROIMonoFilter2->SetInput(reader2->GetOutput());
extractROIMonoFilter2->SetChannel( layer2 );
if (parseResult->IsOptionPresent("StartX"))
{
extractROIMonoFilter1->SetStartX(parseResult->GetParameterULong("StartX"));
extractROIMonoFilter2->SetStartX(parseResult->GetParameterULong("StartX"));
}
if (parseResult->IsOptionPresent("StartY"))
{
extractROIMonoFilter1->SetStartY(parseResult->GetParameterULong("StartY"));
extractROIMonoFilter2->SetStartY(parseResult->GetParameterULong("StartY"));
}
if (parseResult->IsOptionPresent("SizeX"))
{
extractROIMonoFilter1->SetSizeX(parseResult->GetParameterULong("SizeX"));
extractROIMonoFilter2->SetSizeX(parseResult->GetParameterULong("SizeX"));
}
if (parseResult->IsOptionPresent("SizeY"))
{
extractROIMonoFilter1->SetSizeY(parseResult->GetParameterULong("SizeY"));
extractROIMonoFilter2->SetSizeY(parseResult->GetParameterULong("SizeY"));
}
StreamingCompareImageFilterType::Pointer filter = StreamingCompareImageFilterType::New();
filter->SetInput1(extractROIMonoFilter1->GetOutput());
filter->SetInput2(extractROIMonoFilter2->GetOutput());
unsigned int ram = 256;
if (parseResult->IsOptionPresent("AvailableMemory"))
{
ram = parseResult->GetParameterUInt("AvailableMemory");
}
filter->GetStreamer()->SetAutomaticTiledStreaming(ram);
filter->Update();
std::cout << "MSE: " << filter->GetMSE() << std::endl;
std::cout << "MAE: " << filter->GetMAE() << std::endl;
std::cout << "PSNR: " << filter->GetPSNR() << std::endl;
return EXIT_SUCCESS;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment