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
e92d5a3c
Commit
e92d5a3c
authored
16 years ago
by
Jordi Inglada
Browse files
Options
Downloads
Patches
Plain Diff
DOC: draft of edge density example
parent
4e400cef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Examples/FeatureExtraction/EdgeDensityExample.cxx
+80
-0
80 additions, 0 deletions
Examples/FeatureExtraction/EdgeDensityExample.cxx
with
80 additions
and
0 deletions
Examples/FeatureExtraction/EdgeDensityExample.cxx
0 → 100644
+
80
−
0
View file @
e92d5a3c
/*=========================================================================
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
"otbImage.h"
#include
"otbEdgeDensityImageFilter.h"
#include
"otbBinaryImageDensityFunction.h"
#include
"itkCannyEdgeDetectionImageFilter.h"
#include
"otbImageFileReader.h"
#include
"otbImageFileWriter.h"
int
main
(
int
argc
,
char
*
argv
[]
)
{
const
char
*
infname
=
argv
[
1
];
const
char
*
outfname
=
argv
[
2
];
const
unsigned
int
radius
=
atoi
(
argv
[
3
]);
/** Variables for the canny detector*/
const
double
upperThreshold
=
atof
(
argv
[
4
]);
const
double
lowerThreshold
=
atof
(
argv
[
5
]);
const
double
variance
=
atof
(
argv
[
6
]);
const
double
maximumError
=
atof
(
argv
[
7
]);
/*--*/
const
unsigned
int
Dimension
=
2
;
typedef
float
PixelType
;
typedef
otb
::
Image
<
PixelType
,
Dimension
>
ImageType
;
typedef
ImageType
::
IndexType
IndexType
;
typedef
otb
::
ImageFileReader
<
ImageType
>
ReaderType
;
typedef
otb
::
ImageFileWriter
<
ImageType
>
WriterType
;
typedef
otb
::
BinaryImageDensityFunction
<
ImageType
>
CountFunctionType
;
typedef
itk
::
CannyEdgeDetectionImageFilter
<
ImageType
,
ImageType
>
CannyDetectorType
;
typedef
otb
::
EdgeDensityImageFilter
<
ImageType
,
CannyDetectorType
,
CountFunctionType
,
ImageType
>
EdgeDensityFilterType
;
/**Instancitation of an object*/
EdgeDensityFilterType
::
Pointer
filter
=
EdgeDensityFilterType
::
New
();
ReaderType
::
Pointer
reader
=
ReaderType
::
New
();
CannyDetectorType
::
Pointer
CannyFilter
=
CannyDetectorType
::
New
();
/** Set The input*/
reader
->
SetFileName
(
infname
);
filter
->
SetInput
(
reader
->
GetOutput
());
/** Update the Canny Filter Information*/
CannyFilter
->
SetUpperThreshold
(
static_cast
<
ImageType
::
PixelType
>
(
upperThreshold
));
/** 30*/
CannyFilter
->
SetLowerThreshold
(
static_cast
<
ImageType
::
PixelType
>
(
lowerThreshold
));
/** 10*/
CannyFilter
->
SetVariance
(
variance
);
//1.
CannyFilter
->
SetMaximumError
(
maximumError
);
///0.01f
filter
->
SetDetector
(
CannyFilter
);
/** Write the output*/
WriterType
::
Pointer
writer
=
WriterType
::
New
();
writer
->
SetFileName
(
outfname
);
writer
->
SetInput
(
filter
->
GetOutput
());
writer
->
Update
();
return
EXIT_SUCCESS
;
}
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