Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Youssefi
otb
Commits
1dad6d22
Commit
1dad6d22
authored
12 years ago
by
Manuel Grizonnet
Browse files
Options
Downloads
Patches
Plain Diff
COMP: forget to add the test for extended box definition
parent
460be60a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Testing/Code/IO/otbImageFileWriterWithExtendedOptionBox.cxx
+119
-0
119 additions, 0 deletions
Testing/Code/IO/otbImageFileWriterWithExtendedOptionBox.cxx
with
119 additions
and
0 deletions
Testing/Code/IO/otbImageFileWriterWithExtendedOptionBox.cxx
0 → 100644
+
119
−
0
View file @
1dad6d22
/*=========================================================================
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
"otbVectorImage.h"
#include
"itkMacro.h"
#include
<iostream>
#include
"otbImageFileReader.h"
#include
"otbImageFileWriter.h"
#include
"otbMultiChannelExtractROI.h"
int
otbImageFileWriterWithExtendedOptionBox
(
int
argc
,
char
*
argv
[])
{
// Verify the number of parameters in the command line
const
std
::
string
inputFilename
=
argv
[
1
];
const
std
::
string
outputFilename
=
argv
[
2
];
const
unsigned
int
startx
=
atoi
(
argv
[
3
]);
const
unsigned
int
starty
=
atoi
(
argv
[
4
]);
const
unsigned
int
sizex
=
atoi
(
argv
[
5
]);
const
unsigned
int
sizey
=
atoi
(
argv
[
6
]);
const
std
::
string
separator
=
":"
;
typedef
float
InputPixelType
;
typedef
float
OutputPixelType
;
typedef
otb
::
VectorImage
<
InputPixelType
,
2
>
InputImageType
;
typedef
typename
InputImageType
::
PixelType
PixelType
;
typedef
otb
::
MultiChannelExtractROI
<
InputImageType
::
InternalPixelType
,
InputImageType
::
InternalPixelType
>
ExtractROIFilterType
;
typedef
otb
::
ImageFileReader
<
InputImageType
>
ReaderType
;
typedef
otb
::
ImageFileWriter
<
InputImageType
>
WriterType
;
typedef
itk
::
ImageRegionIterator
<
InputImageType
>
IteratorType
;
typedef
itk
::
ImageRegionConstIterator
<
InputImageType
>
ConstIteratorType
;
ReaderType
::
Pointer
reader
=
ReaderType
::
New
();
ExtractROIFilterType
::
Pointer
extractROIFilter
=
ExtractROIFilterType
::
New
();
WriterType
::
Pointer
writer
=
WriterType
::
New
();
reader
->
SetFileName
(
inputFilename
);
//Build output filename with extended box
std
::
ostringstream
outputFilenameExtended
;
outputFilenameExtended
<<
outputFilename
<<
"?&box="
<<
startx
<<
separator
<<
starty
<<
separator
<<
sizex
<<
separator
<<
sizey
;
std
::
cout
<<
"Output image with user defined path "
<<
outputFilenameExtended
.
str
()
<<
std
::
endl
;
writer
->
SetFileName
(
outputFilenameExtended
.
str
());
writer
->
SetInput
(
reader
->
GetOutput
());
extractROIFilter
->
SetStartX
(
startx
);
extractROIFilter
->
SetStartY
(
starty
);
extractROIFilter
->
SetSizeX
(
sizex
);
extractROIFilter
->
SetSizeY
(
sizey
);
extractROIFilter
->
SetInput
(
reader
->
GetOutput
());
writer
->
Update
();
extractROIFilter
->
Update
();
ReaderType
::
Pointer
reader2
=
ReaderType
::
New
();
reader2
->
SetFileName
(
outputFilename
);
reader2
->
Update
();
typename
InputImageType
::
ConstPointer
readImage
=
reader2
->
GetOutput
();
typename
InputImageType
::
ConstPointer
extractImage
=
extractROIFilter
->
GetOutput
();
ConstIteratorType
ritr
(
readImage
,
readImage
->
GetLargestPossibleRegion
()
);
ConstIteratorType
extractitr
(
extractImage
,
extractImage
->
GetLargestPossibleRegion
()
);
ritr
.
GoToBegin
();
extractitr
.
GoToBegin
();
std
::
cout
<<
"Comparing the pixel values.. :"
<<
std
::
endl
;
while
(
!
ritr
.
IsAtEnd
()
&&
!
extractitr
.
IsAtEnd
()
)
{
if
(
ritr
.
Get
()
!=
extractitr
.
Get
()
)
{
std
::
cerr
<<
"Pixel comparison failed at index = "
<<
ritr
.
GetIndex
()
<<
std
::
endl
;
std
::
cerr
<<
"Expected pixel value "
<<
extractitr
.
Get
()
<<
std
::
endl
;
std
::
cerr
<<
"Read Image pixel value "
<<
ritr
.
Get
()
<<
std
::
endl
;
return
EXIT_FAILURE
;
}
++
extractitr
;
++
ritr
;
}
std
::
cout
<<
std
::
endl
;
std
::
cout
<<
"Test PASSED !"
<<
std
::
endl
;
return
EXIT_SUCCESS
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment