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
7fd9fc3d
Commit
7fd9fc3d
authored
13 years ago
by
Julien Malik
Browse files
Options
Downloads
Plain Diff
MRG
parents
c03c5098
3eb00b8e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Applications/FeatureExtraction/otbLineSegmentDetection.cxx
+194
-0
194 additions, 0 deletions
Applications/FeatureExtraction/otbLineSegmentDetection.cxx
with
194 additions
and
0 deletions
Applications/FeatureExtraction/otbLineSegmentDetection.cxx
0 → 100644
+
194
−
0
View file @
7fd9fc3d
/*=========================================================================
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
"otbWrapperApplication.h"
#include
"otbWrapperApplicationFactory.h"
#include
"otbStreamingLineSegmentDetector.h"
#include
"otbImage.h"
#include
"otbVectorImage.h"
#include
"otbVectorImageToAmplitudeImageFilter.h"
#include
"otbVectorData.h"
#include
"otbImageFileReader.h"
#include
"otbVectorDataFileWriter.h"
#include
"otbStandardFilterWatcher.h"
#include
"otbStreamingStatisticsImageFilter.h"
#include
"itkShiftScaleImageFilter.h"
#include
"otbVectorDataProjectionFilter.h"
#include
"otbVectorDataTransformFilter.h"
#include
"itkAffineTransform.h"
namespace
otb
{
namespace
Wrapper
{
class
LineSegmentDetection
:
public
Application
{
public:
/** Standard class typedefs. */
typedef
LineSegmentDetection
Self
;
typedef
Application
Superclass
;
typedef
itk
::
SmartPointer
<
Self
>
Pointer
;
typedef
itk
::
SmartPointer
<
const
Self
>
ConstPointer
;
/** Standard macro */
itkNewMacro
(
Self
);
itkTypeMacro
(
LineSegmentDetection
,
otb
::
Wrapper
::
Application
);
private:
LineSegmentDetection
()
{
SetName
(
"LineSegmentDetection"
);
SetDescription
(
"Detect line segments in raster"
);
}
virtual
~
LineSegmentDetection
()
{
}
void
DoCreateParameters
()
{
AddParameter
(
ParameterType_InputImage
,
"in"
,
"Input Image"
);
AddParameter
(
ParameterType_OutputVectorData
,
"out"
,
"Output detected line segments"
);
AddParameter
(
ParameterType_Directory
,
"dem"
,
"DEM directory"
);
MandatoryOff
(
"dem"
);
AddParameter
(
ParameterType_Empty
,
"norescale"
,
"No rescaling in [0 255]"
);
MandatoryOff
(
"norescale"
);
}
void
DoUpdateParameters
()
{
}
void
DoExecute
()
{
typedef
otb
::
VectorImageToAmplitudeImageFilter
<
FloatVectorImageType
,
FloatImageType
>
VectorImageToAmplitudeImageFilterType
;
typedef
otb
::
StreamingStatisticsImageFilter
<
FloatImageType
>
StreamingStatisticsImageFilterType
;
typedef
itk
::
ShiftScaleImageFilter
<
FloatImageType
,
FloatImageType
>
ShiftScaleImageFilterType
;
typedef
otb
::
StreamingLineSegmentDetector
<
FloatImageType
>::
FilterType
LSDFilterType
;
VectorImageToAmplitudeImageFilterType
::
Pointer
amplitudeConverter
=
VectorImageToAmplitudeImageFilterType
::
New
();
amplitudeConverter
->
SetInput
(
GetParameterImage
(
"in"
)
);
FloatImageType
::
Pointer
image
=
amplitudeConverter
->
GetOutput
();
StreamingStatisticsImageFilterType
::
Pointer
stats
=
StreamingStatisticsImageFilterType
::
New
();
ShiftScaleImageFilterType
::
Pointer
shiftScale
=
ShiftScaleImageFilterType
::
New
();
// Default behavior is to do the rescaling
if
(
!
IsParameterEnabled
(
"norescale"
)
)
{
stats
->
SetInput
(
amplitudeConverter
->
GetOutput
());
AddProcess
(
stats
->
GetStreamer
(),
"Image statistics"
);
stats
->
Update
();
FloatImageType
::
PixelType
min
=
stats
->
GetMinimum
();
FloatImageType
::
PixelType
max
=
stats
->
GetMaximum
();
shiftScale
->
SetInput
(
amplitudeConverter
->
GetOutput
());
shiftScale
->
SetShift
(
-
min
);
shiftScale
->
SetScale
(
255.0
/
(
max
-
min
)
);
image
=
shiftScale
->
GetOutput
();
}
LSDFilterType
::
Pointer
lsd
=
LSDFilterType
::
New
();
lsd
->
GetFilter
()
->
SetInput
(
image
);
AddProcess
(
lsd
->
GetStreamer
(),
"Running Line Segment Detector"
);
lsd
->
Update
();
/*
* Reprojection of the output VectorData
*
* The output of LSDFilterType is in image physical coordinates,
* projection WKT applied if the input image has one
*
* We need to reproject in WGS84 if the input image is in sensor model geometry
*/
std
::
string
projRef
=
GetParameterImage
(
"in"
)
->
GetProjectionRef
();
ImageKeywordlist
kwl
=
GetParameterImage
(
"in"
)
->
GetImageKeywordlist
();
VectorDataType
::
Pointer
vd
=
lsd
->
GetFilter
()
->
GetOutputVectorData
();
VectorDataType
::
Pointer
projectedVD
=
vd
;
if
(
projRef
.
empty
()
&&
kwl
.
GetSize
()
>
0
)
{
// image is in sensor model geometry
// Reproject VectorData in image projection
typedef
otb
::
VectorDataProjectionFilter
<
VectorDataType
,
VectorDataType
>
VectorDataProjectionFilterType
;
VectorDataProjectionFilterType
::
Pointer
vproj
=
VectorDataProjectionFilterType
::
New
();
vproj
->
SetInput
(
vd
);
vproj
->
SetInputKeywordList
(
GetParameterImage
(
"in"
)
->
GetImageKeywordlist
());
vproj
->
SetInputOrigin
(
GetParameterImage
(
"in"
)
->
GetOrigin
());
vproj
->
SetInputSpacing
(
GetParameterImage
(
"in"
)
->
GetSpacing
());
// Configure DEM directory
if
(
IsParameterEnabled
(
"dem"
))
{
vproj
->
SetDEMDirectory
(
GetParameterString
(
"dem"
)
);
}
else
{
if
(
otb
::
ConfigurationFile
::
GetInstance
()
->
IsValid
()
)
{
vproj
->
SetDEMDirectory
(
otb
::
ConfigurationFile
::
GetInstance
()
->
GetDEMDirectory
());
}
}
AddProcess
(
vproj
,
"Reprojecting output vector data"
);
vproj
->
Update
();
projectedVD
=
vproj
->
GetOutput
();
}
SetParameterOutputVectorData
(
"out"
,
projectedVD
);
}
};
}
}
OTB_APPLICATION_EXPORT
(
otb
::
Wrapper
::
LineSegmentDetection
)
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