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
Container Registry
Model registry
Operate
Environments
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
Antoine Belvire
otb
Commits
0f8669c6
Commit
0f8669c6
authored
16 years ago
by
Julien Michel
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Display color difference images in the dashboard
parent
3cc7306d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Common/otbDifferenceImageFilter.txx
+4
-0
4 additions, 0 deletions
Code/Common/otbDifferenceImageFilter.txx
Code/Common/otbTestMain.h
+24
-36
24 additions, 36 deletions
Code/Common/otbTestMain.h
with
28 additions
and
36 deletions
Code/Common/otbDifferenceImageFilter.txx
+
4
−
0
View file @
0f8669c6
...
...
@@ -76,6 +76,10 @@ DifferenceImageFilter<TInputImage, TOutputImage>
::GenerateOutputInformation()
{
Superclass::GenerateOutputInformation();
if(this->GetInput(0)->GetNumberOfComponentsPerPixel()!=this->GetInput(1)->GetNumberOfComponentsPerPixel())
{
itkExceptionMacro(<<"Image 1 has "<<this->GetInput(0)->GetNumberOfComponentsPerPixel()<<" bands, whereas image 2 has "<<this->GetInput(1)->GetNumberOfComponentsPerPixel());
}
this->GetOutput()->SetNumberOfComponentsPerPixel(this->GetInput(0)->GetNumberOfComponentsPerPixel());
}
//----------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Code/Common/otbTestMain.h
+
24
−
36
View file @
0f8669c6
...
...
@@ -26,6 +26,7 @@
#include
"itkNumericTraits.h"
#include
"itkMultiThreader.h"
#include
"otbVectorImage.h"
#include
"otbImage.h"
#include
"otbImageFileReader.h"
...
...
@@ -37,9 +38,10 @@
#include
"itkImageRegionConstIterator.h"
#include
"itkSubtractImageFilter.h"
#include
"itkRescaleIntensityImageFilter.h"
//#include "itkRescaleIntensityImageFilter.h"
#include
"otbPrintableImageFilter.h"
#include
"itkExtractImageFilter.h"
#include
"
itk
DifferenceImageFilter.h"
#include
"
otb
DifferenceImageFilter.h"
#include
"itkImageRegion.h"
#define ITK_TEST_DIMENSION_MAX 6
...
...
@@ -905,9 +907,9 @@ int RegressionTestImage (int cpt, const char *testImageFilename, const char *bas
{
// Use the factory mechanism to read the test and baseline files and convert them to double
typedef
otb
::
Image
<
double
,
ITK_TEST_DIMENSION_MAX
>
ImageType
;
typedef
otb
::
Image
<
unsigned
char
,
ITK_TEST_DIMENSION_MAX
>
OutputType
;
typedef
otb
::
Image
<
unsigned
char
,
2
>
DiffOutputType
;
typedef
otb
::
Vector
Image
<
double
,
2
>
ImageType
;
typedef
otb
::
Vector
Image
<
unsigned
char
,
2
>
OutputType
;
typedef
otb
::
Vector
Image
<
unsigned
char
,
2
>
DiffOutputType
;
typedef
otb
::
ImageFileReader
<
ImageType
>
ReaderType
;
// Read the baseline file
...
...
@@ -954,14 +956,14 @@ int RegressionTestImage (int cpt, const char *testImageFilename, const char *bas
// Now compare the two images
typedef
itk
::
DifferenceImageFilter
<
ImageType
,
ImageType
>
DiffType
;
typedef
otb
::
DifferenceImageFilter
<
ImageType
,
ImageType
>
DiffType
;
DiffType
::
Pointer
diff
=
DiffType
::
New
();
diff
->
SetValidInput
(
baselineReader
->
GetOutput
());
diff
->
SetTestInput
(
testReader
->
GetOutput
());
diff
->
SetDifferenceThreshold
(
toleranceDiffPixelImage
);
diff
->
UpdateLargestPossibleRegion
();
doubl
e
status
=
diff
->
GetTotalDifference
();
ImageType
::
PixelTyp
e
status
=
diff
->
GetTotalDifference
();
unsigned
long
numberOfPixelsWithDifferences
=
diff
->
GetNumberOfPixelsWithDifferences
();
//Write only one this message
...
...
@@ -971,37 +973,17 @@ int RegressionTestImage (int cpt, const char *testImageFilename, const char *bas
otbGenericMsgDebugMacro
(
<<
"Status diff->GetTotalDifference: "
<<
status
<<
" for "
<<
numberOfPixelsWithDifferences
<<
" pixel(s)."
);
}
// if there are discrepencies, create an diff image
if
(
status
&&
reportErrors
)
if
(
status
.
GetSquaredNorm
()
>
0
&&
reportErrors
)
{
typedef
itk
::
RescaleIntensityImageFilter
<
ImageType
,
OutputType
>
RescaleType
;
typedef
itk
::
ExtractImageFilter
<
OutputType
,
DiffOutputType
>
ExtractType
;
typedef
otb
::
ImageFileWriter
<
DiffOutputType
>
WriterType
;
typedef
itk
::
ImageRegion
<
ITK_TEST_DIMENSION_MAX
>
RegionType
;
OutputType
::
IndexType
index
;
index
.
Fill
(
0
);
OutputType
::
SizeType
size
;
size
.
Fill
(
0
);
typedef
otb
::
PrintableImageFilter
<
ImageType
>
RescaleType
;
typedef
RescaleType
::
OutputImageType
OutputType
;
/* typedef itk::ExtractImageFilter<OutputType,DiffOutputType> ExtractType; */
typedef
otb
::
ImageFileWriter
<
RescaleType
::
OutputImageType
>
WriterType
;
RescaleType
::
Pointer
rescale
=
RescaleType
::
New
();
rescale
->
SetOutputMinimum
(
itk
::
NumericTraits
<
unsigned
char
>::
NonpositiveMin
());
rescale
->
SetOutputMaximum
(
itk
::
NumericTraits
<
unsigned
char
>::
max
());
rescale
->
SetInput
(
diff
->
GetOutput
());
rescale
->
UpdateLargestPossibleRegion
();
RegionType
region
;
region
.
SetIndex
(
index
);
size
=
rescale
->
GetOutput
()
->
GetLargestPossibleRegion
().
GetSize
();
for
(
unsigned
int
i
=
2
;
i
<
ITK_TEST_DIMENSION_MAX
;
i
++
)
{
size
[
i
]
=
0
;
}
region
.
SetSize
(
size
);
ExtractType
::
Pointer
extract
=
ExtractType
::
New
();
extract
->
SetInput
(
rescale
->
GetOutput
());
extract
->
SetExtractionRegion
(
region
);
WriterType
::
Pointer
writer
=
WriterType
::
New
();
writer
->
SetInput
(
extract
->
GetOutput
());
writer
->
SetInput
(
rescale
->
GetOutput
());
// std::cout << "<DartMeasurement name=\"ImageError\" type=\"numeric/double\">";
std
::
cout
<<
"<DartMeasurement name=
\"
ImageError "
<<
cpt
<<
"
\"
type=
\"
numeric/double
\"
>"
;
...
...
@@ -1020,8 +1002,14 @@ int RegressionTestImage (int cpt, const char *testImageFilename, const char *bas
diffName
<<
testImageFilename
<<
".diff.png"
;
try
{
rescale
->
SetInput
(
diff
->
GetOutput
());
rescale
->
Update
();
rescale
->
SetInput
(
diff
->
GetOutput
());
for
(
unsigned
int
i
=
1
;
i
<=
min
(
diff
->
GetOutput
()
->
GetNumberOfComponentsPerPixel
(),
3U
);
++
i
)
{
rescale
->
SetChannel
(
i
);
}
rescale
->
Update
();
}
catch
(...)
{
...
...
@@ -1096,7 +1084,7 @@ int RegressionTestImage (int cpt, const char *testImageFilename, const char *bas
}
return
(
status
!=
0
)
?
1
:
0
;
return
(
status
.
GetSquaredNorm
()
>
0
)
?
1
:
0
;
}
int
RegressionTestMetaData
(
const
char
*
testImageFilename
,
const
char
*
baselineImageFilename
,
int
reportErrors
,
const
double
toleranceDiffPixelImage
)
...
...
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