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
Sébastien Peillet
otb
Commits
99288da8
Commit
99288da8
authored
7 years ago
by
Antoine Regimbeau
Browse files
Options
Downloads
Patches
Plain Diff
BUG: restore multithreading in computehisto filter
parent
f294e853
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
Modules/Filtering/Contrast/include/otbApplyGainFilter.txx
+2
-0
2 additions, 0 deletions
Modules/Filtering/Contrast/include/otbApplyGainFilter.txx
Modules/Filtering/Contrast/include/otbComputeHistoFilter.txx
+18
-20
18 additions, 20 deletions
Modules/Filtering/Contrast/include/otbComputeHistoFilter.txx
with
20 additions
and
20 deletions
Modules/Filtering/Contrast/include/otbApplyGainFilter.txx
+
2
−
0
View file @
99288da8
...
...
@@ -25,6 +25,7 @@
#include "itkImageRegionIterator.h"
#include "itkImageRegionConstIteratorWithIndex.h"
#include <limits>
namespace otb
...
...
@@ -37,6 +38,7 @@ ApplyGainFilter < TInputImage , TLut , TOutputImage >
m_Min = std::numeric_limits< InputPixelType >::quiet_NaN();
m_Max = std::numeric_limits< InputPixelType >::quiet_NaN();
m_NoData = std::numeric_limits< InputPixelType >::quiet_NaN();
m_Step = -1;
}
...
...
This diff is collapsed.
Click to expand it.
Modules/Filtering/Contrast/include/otbComputeHistoFilter.txx
+
18
−
20
View file @
99288da8
...
...
@@ -234,7 +234,9 @@ void ComputeHistoFilter < TInputImage , TOutputImage >
// Initializing shared variable with thread number parameter
SizeType outSize ( output->GetRequestedRegion().GetSize() );
m_HistoThread.resize( m_ValidThreads * outSize[0] * outSize[1] , zeroPixel );
m_HistoThread.resize( m_ValidThreads * outSize[0] * outSize[1] );
m_HistoThread.shrink_to_fit();
std::fill( m_HistoThread.begin() , m_HistoThread.end() , zeroPixel );
m_Step = static_cast<double>( m_Max - m_Min ) \
/ static_cast<double>( m_NbBin -1 );
...
...
@@ -242,8 +244,7 @@ void ComputeHistoFilter < TInputImage , TOutputImage >
template <class TInputImage, class TOutputImage >
void ComputeHistoFilter < TInputImage , TOutputImage >
::ThreadedGenerateData(const OutputImageRegionType &
itkNotUsed(outputRegionForThread) ,
::ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread ,
itk::ThreadIdType threadId )
{
assert(m_Step>0);
...
...
@@ -253,13 +254,14 @@ void ComputeHistoFilter < TInputImage , TOutputImage >
// outputRegionForThread.GetNumberOfPixels() );
typename InputImageType::ConstPointer input ( this->GetInput() );
typename OutputImageType::Pointer output ( this->GetHistoOutput() );
OutputImageRegionType histoRegion (
GetHistoOutput()->GetRequestedRegion() );
SizeType outSize ( histoRegion.GetSize() );
IndexType outIndex ( histoRegion.GetIndex() );
typename InputImageType::RegionType region;
region.SetSize( m_ThumbSize );
unsigned int threadIndex ( threadId * outSize[0] * outSize[1] ) , pixel(0) ;
...
...
@@ -267,24 +269,18 @@ void ComputeHistoFilter < TInputImage , TOutputImage >
nthHisto < outSize[0] * outSize[1] ; nthHisto++ )
{
IndexType start;
start[0] = (outIndex[0] + nthHisto % outSize[0] ) * m_ThumbSize[0];
start[1] = (outIndex[1] + nthHisto / outSize[0] ) * m_ThumbSize[1];
start[0] = ( outIndex[0] + nthHisto % outSize[0] ) * m_ThumbSize[0];
start[1] = ( outIndex[1] + nthHisto / outSize[0] ) * m_ThumbSize[1];
region.SetSize( m_ThumbSize );
region.SetIndex(start);
if ( !region.Crop( input->GetRequestedRegion() ) )
{
// Couldn't crop the region (region is outside the requested
// region). Throw an exception.
// build an exception
itk::InvalidRequestedRegionError e(__FILE__, __LINE__);
e.SetLocation(ITK_LOCATION);
e.SetDescription("Asked region is outside requested region");
// e.SetDataObject( input );
throw e;
}
if ( !region.Crop( outputRegionForThread ) )
continue;
typename itk::ImageRegionConstIterator < InputImageType >
it( input , region );
InputPixelType currentPixel(0);
int i (0);
for ( it.GoToBegin() ; !it.IsAtEnd() ; ++it )
{
currentPixel = it.Get();
...
...
@@ -295,7 +291,9 @@ void ComputeHistoFilter < TInputImage , TOutputImage >
pixel = static_cast< unsigned int >(
std::round( ( currentPixel - m_Min ) / m_Step ) );
++m_HistoThread[threadIndex + nthHisto][pixel];
++i;
}
}
}
...
...
@@ -324,8 +322,8 @@ void ComputeHistoFilter < TInputImage , TOutputImage >
for ( unsigned int threadId = 0 ; threadId < m_ValidThreads ; threadId++ )
{
agreg += m_HistoThread[ threadId * outSize[0] * outSize[1]
+ (
(
oit.GetIndex()[
0
] - outIndex[
0
] )
)
+ ( oit.GetIndex()[
1
] - outIndex[
1
] )
* outSize[0]
][i] ;
+ ( oit.GetIndex()[
1
] - outIndex[
1
] )
* outSize[0]
+ (
(
oit.GetIndex()[
0
] - outIndex[
0
] )
)
][i] ;
}
oit.Get()[i] = agreg;
total += agreg;
...
...
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