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
Main Repositories
otb
Commits
c4ec6148
Commit
c4ec6148
authored
7 years ago
by
Rashad Kanavath
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/develop' into update_superbuild_6.2
parents
1fe140ca
328eebdb
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Modules/Filtering/Convolution/include/otbConvolutionImageFilter.txx
+4
-1
4 additions, 1 deletion
...ltering/Convolution/include/otbConvolutionImageFilter.txx
RELEASE_NOTES.txt
+5
-5
5 additions, 5 deletions
RELEASE_NOTES.txt
SuperBuild/CMakeLists.txt
+5
-0
5 additions, 0 deletions
SuperBuild/CMakeLists.txt
with
14 additions
and
6 deletions
Modules/Filtering/Convolution/include/otbConvolutionImageFilter.txx
+
4
−
1
View file @
c4ec6148
...
...
@@ -124,6 +124,8 @@ ConvolutionImageFilter<TInputImage, TOutputImage, TBoundaryCondition, TFilterPre
inputIt.GoToBegin();
unsigned int neighborhoodSize = inputIt.Size();
double norm_double = 1.;
// Compute the norm of the filter
if (m_NormalizeFilter)
{
...
...
@@ -132,6 +134,7 @@ ConvolutionImageFilter<TInputImage, TOutputImage, TBoundaryCondition, TFilterPre
{
norm += static_cast<InputRealType>(vcl_abs(m_Filter(i)));
}
norm_double = static_cast<double>(vcl_abs(norm));
}
while (!inputIt.IsAtEnd())
...
...
@@ -146,7 +149,7 @@ ConvolutionImageFilter<TInputImage, TOutputImage, TBoundaryCondition, TFilterPre
// get the mean value
if (m_NormalizeFilter)
{
outputIt.Set(static_cast<OutputPixelType>(sum / double
(vcl_abs(norm))
));
outputIt.Set(static_cast<OutputPixelType>(sum /
norm_
double));
}
else
{
...
...
This diff is collapsed.
Click to expand it.
RELEASE_NOTES.txt
+
5
−
5
View file @
c4ec6148
...
...
@@ -147,7 +147,7 @@ OTB-v.5.8.0 - Changes since version 5.6.1 (November 8th, 2016)
* 0001300: monteverdi $input_filename crash with relative path
* 0001303: Memory issue in Monteverdi with images with subdatasets (HDF4)
* 0001299: Monteverdi shortcuts list needs some updates
* 0001291: Word "
É
chiquier" is not displayed properly in layer stack (effect column)
* 0001291: Word "
E
chiquier" is not displayed properly in layer stack (effect column)
* OTB-Packaging
* 0001290: Unable to run OTB applications from Mapla.app on Mac OS X
...
...
@@ -1758,7 +1758,7 @@ OTB-v.3.12.0 - Changes since version 3.10.0 (2011/01/31)
are missing)
* Documentation
* 0000483: "<" or ">" are interpreted as
¿
in Cookbook
* 0000483: "<" or ">" are interpreted as
inverted ?
in Cookbook
* 0000370: Cookbook : make a HTML documentation
* 0000378: Doxygen not updated
...
...
@@ -2251,10 +2251,10 @@ OTB-v.3.0.0 - Changes since version 2.8.0 (2009/05/11)
--------------------------------------------------------
* Applications
- Urban area extraction (Pl
é
aides, QB, Ikonos, SPOT5). For more
- Urban area extraction (Pl
e
aides, QB, Ikonos, SPOT5). For more
details,
see the README file
- Image to Data Base registration (Pl
é
iades, QB). For more details, see
- Image to Data Base registration (Pl
e
iades, QB). For more details, see
the README file
- Feature Extraction: add new textures, new radiometric indexes and
add MeanShift capabilities
...
...
@@ -2262,7 +2262,7 @@ OTB-v.3.0.0 - Changes since version 2.8.0 (2009/05/11)
* Library
The library includes these additions
- Cloud detection for QB/Pl
é
iades images
- Cloud detection for QB/Pl
e
iades images
- Alignment and right angle detection (Burns, Grompone)
- Radiometric indices (vegetation, water, soil)
- Optimized texture computations including Haralick, SFS, Pantex,
...
...
This diff is collapsed.
Click to expand it.
SuperBuild/CMakeLists.txt
+
5
−
0
View file @
c4ec6148
...
...
@@ -340,6 +340,11 @@ endif()
message
(
STATUS
"OTB_TARGET_SYSTEM_ARCH=
${
OTB_TARGET_SYSTEM_ARCH
}
"
)
message
(
STATUS
"OTB_TARGET_SYSTEM_ARCH_IS_X64=
${
OTB_TARGET_SYSTEM_ARCH_IS_X64
}
"
)
if
(
DOWNLOAD_LOCATION
)
message
(
STATUS
"Source archives for dependencies will be taken from '
${
DOWNLOAD_LOCATION
}
'"
)
else
()
message
(
STATUS
"DOWNLOAD_LOCATION is not set. We will download all source archives during build!"
)
endif
()
message
(
STATUS
"SuperBuild will be installed to
${
CMAKE_INSTALL_PREFIX
}
"
)
message
(
STATUS
"To install to a different directory, re-run cmake -DCMAKE_INSTALL_PREFIX=/your/preferred/path"
)
...
...
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