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
9f6c1235
Commit
9f6c1235
authored
16 years ago
by
Otmane Lahlou
Browse files
Options
Downloads
Patches
Plain Diff
BUG: Correct Warnings in LSD by adding a castImageFilter in the begining of the pipeline
parent
fa84842a
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/FeatureExtraction/otbLineSegmentDetector.h
+6
-7
6 additions, 7 deletions
Code/FeatureExtraction/otbLineSegmentDetector.h
Code/FeatureExtraction/otbLineSegmentDetector.txx
+18
-13
18 additions, 13 deletions
Code/FeatureExtraction/otbLineSegmentDetector.txx
with
24 additions
and
20 deletions
Code/FeatureExtraction/otbLineSegmentDetector.h
+
6
−
7
View file @
9f6c1235
...
...
@@ -60,7 +60,8 @@ namespace Functor
inline
TOutputPixel
operator
()(
const
TInputPixel
&
input
)
{
TOutputPixel
resp
=
vcl_atan2
(
input
[
0
],
-
input
[
1
]);
TOutputPixel
resp
=
static_cast
<
TOutputPixel
>
(
vcl_atan2
(
input
[
0
],
-
input
[
1
]));
if
(
resp
<
itk
::
NumericTraits
<
TOutputPixel
>::
Zero
)
{
resp
=
-
resp
;
...
...
@@ -130,19 +131,19 @@ public:
typedef
typename
DirectionVectorType
::
iterator
DirectionVectorIteratorType
;
/** */
typedef
itk
::
GradientRecursiveGaussianImageFilter
<
In
putImageType
>
GradientFilterType
;
typedef
itk
::
GradientRecursiveGaussianImageFilter
<
Out
putImageType
>
GradientFilterType
;
//typedef itk::GradientImageFilter<InputImageType > GradientFilterType;
typedef
typename
GradientFilterType
::
Pointer
GradientFilterPointerType
;
typedef
typename
GradientFilterType
::
OutputImageType
GradientOutputImageType
;
typedef
itk
::
UnaryFunctorImageFilter
<
GradientOutputImageType
,
In
putImageType
,
typedef
itk
::
UnaryFunctorImageFilter
<
GradientOutputImageType
,
Out
putImageType
,
Functor
::
MagnitudeFunctor
<
typename
GradientOutputImageType
::
PixelType
,
TPrecision
>
>
MagnitudeFilterType
;
typedef
typename
MagnitudeFilterType
::
Pointer
MagnitudeFilterPointerType
;
typedef
typename
MagnitudeFilterType
::
OutputImageType
::
PixelType
MagnitudePixelType
;
typedef
typename
MagnitudeFilterType
::
OutputImageType
MagnitudeImageType
;
typedef
itk
::
UnaryFunctorImageFilter
<
GradientOutputImageType
,
In
putImageType
,
typedef
itk
::
UnaryFunctorImageFilter
<
GradientOutputImageType
,
Out
putImageType
,
Functor
::
OrientationFunctor
<
typename
GradientOutputImageType
::
PixelType
,
TPrecision
>
>
OrientationFilterType
;
typedef
typename
OrientationFilterType
::
Pointer
OrientationFilterPointerType
;
typedef
typename
OrientationFilterType
::
OutputImageType
OutputImageDirType
;
...
...
@@ -153,13 +154,11 @@ public:
typedef
typename
LabelImageType
::
Pointer
LabelImagePointerType
;
/** Vector to store the rectangle characteization center, width, orientation ,( begin ,end ) of the central line*/
typedef
std
::
vector
<
double
>
RectangleType
;
typedef
std
::
vector
<
double
>
RectangleType
;
typedef
typename
RectangleType
::
iterator
RectangleIteratorType
;
typedef
std
::
vector
<
RectangleType
>
RectangleListType
;
typedef
typename
RectangleListType
::
iterator
RectangleListTypeIterator
;
//typedef otb::ImageFileWriter<MagnitudeImageType > writerType;
//typedef typename writerType::Pointer writerPointerType;
protected:
LineSegmentDetector
();
...
...
This diff is collapsed.
Click to expand it.
Code/FeatureExtraction/otbLineSegmentDetector.txx
+
18
−
13
View file @
9f6c1235
...
...
@@ -25,6 +25,7 @@
#include "itkConstNeighborhoodIterator.h"
#include "itkNeighborhoodIterator.h"
#include "otbPolygon.h"
#include "itkCastImageFilter.h"
#include "otbMath.h"
...
...
@@ -81,15 +82,20 @@ LineSegmentDetector<TInputImage,TPrecision >
m_UsedPointImage->Allocate();
m_UsedPointImage->FillBuffer(0);
/** Cast the MagnitudeOutput Image in */
typedef itk::CastImageFilter<InputImageType, OutputImageType> castFilerType;
typename castFilerType::Pointer castFilter = castFilerType::New();
castFilter->SetInput(this->GetInput());
/** Compute the modulus and the orientation gradient image*/
m_GradientFilter->SetInput(
this
->Get
In
put());
m_GradientFilter->SetInput(
castFilter
->Get
Out
put());
m_GradientFilter->SetSigma(1.1);
m_MagnitudeFilter->SetInput(m_GradientFilter->GetOutput());
m_OrientationFilter->SetInput(m_GradientFilter->GetOutput());
m_MagnitudeFilter->Update();
m_OrientationFilter->Update();
/** Comupute the seed histogram to begin the search*/
CoordinateHistogramType CoordinateHistogram;
CoordinateHistogram = this->SortImageByModulusValue(m_MagnitudeFilter->GetOutput());
...
...
@@ -133,8 +139,8 @@ LineSegmentDetector<TInputImage,TPrecision >
/** Definition of the min & the max of an image*/
OutputPixelType min = itk::NumericTraits<MagnitudePixelType
>::Zero;
OutputPixelType max = itk::NumericTraits<MagnitudePixelType
>::Zero;
OutputPixelType min = itk::NumericTraits<
/*
MagnitudePixelType
*/TPrecision
>::Zero;
OutputPixelType max = itk::NumericTraits<
/*
MagnitudePixelType
*/TPrecision
>::Zero;
/** Computing the min & max of the image*/
typedef itk::MinimumMaximumImageCalculator<OutputImageType> MinMaxCalculatorFilter;
...
...
@@ -151,14 +157,13 @@ LineSegmentDetector<TInputImage,TPrecision >
/** Computing the length of the bins*/
unsigned int NbBin = 10;
MagnitudePixelType lengthBin =
(max - min)/static_cast<
MagnitudePixelTyp
e>(NbBin-1) ;
double lengthBin = static_cast<double>(
(max - min)
)
/static_cast<
doubl
e>(NbBin-1) ;
CoordinateHistogramType tempHisto(NbBin); /** Initializing the histogram */
itk::ImageRegionIterator<OutputImageType> it(modulusImage,
modulusImage->GetRequestedRegion());
//std::cout << "min "<< min<< " max " << max << " lengthBin " << lengthBin << " et thresh" << m_Threshold << std::endl;
it.GoToBegin();
while(!it.IsAtEnd())
{
...
...
@@ -457,7 +462,7 @@ LineSegmentDetector<TInputImage, TPrecision>
this->SetPixelToUsed(index);
/** Neighborhooding */
typedef itk::ConstNeighborhoodIterator<
In
putImageType> NeighborhoodIteratorType;
typedef itk::ConstNeighborhoodIterator<
Out
putImageType> NeighborhoodIteratorType;
typename NeighborhoodIteratorType::SizeType radius;
radius.Fill(1);
NeighborhoodIteratorType itNeigh(radius,m_MagnitudeFilter->GetOutput(),
...
...
@@ -550,7 +555,7 @@ LineSegmentDetector<TInputImage, TPrecision>
double l_min = 0., l_max = 0.,l =0., w=0. , w_min = 0. , w_max =0.;
/** Neighborhooding again*/
typedef itk::ConstNeighborhoodIterator<
In
putImageType> NeighborhoodIteratorType;
typedef itk::ConstNeighborhoodIterator<
Out
putImageType> NeighborhoodIteratorType;
typename NeighborhoodIteratorType::SizeType radius;
radius.Fill(0);
NeighborhoodIteratorType itNeigh(radius,m_MagnitudeFilter->GetOutput(),
...
...
@@ -602,8 +607,8 @@ LineSegmentDetector<TInputImage, TPrecision>
if(l<l_min) l_min = l; if(l>l_max) l_max = l;
if(w<w_min) w_min = w; if(w>w_max) w_max = w;
sum_l[static_cast< int>(vcl_floor(l)+0.5)+ Diagonal ] += weight;
sum_w[static_cast< int>(vcl_floor(w)+0.5)+ Diagonal ] += weight;
sum_l[static_cast< int>(vcl_floor(l)+0.5)+ Diagonal ] +=
static_cast<MagnitudePixelType>(
weight
)
;
sum_w[static_cast< int>(vcl_floor(w)+0.5)+ Diagonal ] +=
static_cast<MagnitudePixelType>(
weight
)
;
++it;
}
...
...
@@ -677,7 +682,7 @@ LineSegmentDetector<TInputImage, TPrecision>
double weight = 0.,sum = 0.;
/** Neighborhooding again*/
typedef itk::ConstNeighborhoodIterator<
In
putImageType> NeighborhoodIteratorType;
typedef itk::ConstNeighborhoodIterator<
Out
putImageType> NeighborhoodIteratorType;
typename NeighborhoodIteratorType::SizeType radius;
radius.Fill(0);
NeighborhoodIteratorType itNeigh(radius,m_MagnitudeFilter->GetOutput(),
...
...
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