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
2c295bd7
Commit
2c295bd7
authored
14 years ago
by
Aurélien Bricier
Browse files
Options
Downloads
Patches
Plain Diff
ENH: solved conflicting declaration issue
parent
3e2aa6dd
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
Code/ObjectDetection/otbObjectDetectionClassifier.h
+4
-4
4 additions, 4 deletions
Code/ObjectDetection/otbObjectDetectionClassifier.h
with
4 additions
and
4 deletions
Code/ObjectDetection/otbObjectDetectionClassifier.h
+
4
−
4
View file @
2c295bd7
...
...
@@ -37,7 +37,7 @@ namespace otb
{
template
<
class
TFunctionPrecision
>
class
DefaultDescriptor
s
Type
class
DefaultDescriptorType
{
public:
typedef
itk
::
VariableLengthVector
<
TFunctionPrecision
>
Type
;
...
...
@@ -236,7 +236,7 @@ class ITK_EXPORT ObjectDetectionClassifier :
TOutputVectorData
,
TLabel
,
itk
::
FunctionBase
<
itk
::
Point
<
TCoordRep
,
2
>
,
typename
DefaultDescriptor
s
Type
<
TFunctionPrecision
>::
Type
>
>
typename
DefaultDescriptorType
<
TFunctionPrecision
>::
Type
>
>
>
{
public:
...
...
@@ -248,7 +248,7 @@ public:
TOutputVectorData
,
TLabel
,
itk
::
FunctionBase
<
itk
::
Point
<
TCoordRep
,
2
>
,
typename
DefaultDescriptor
s
Type
<
TFunctionPrecision
>::
Type
>
>
typename
DefaultDescriptorType
<
TFunctionPrecision
>::
Type
>
>
>
Superclass
;
typedef
itk
::
SmartPointer
<
Self
>
Pointer
;
typedef
itk
::
SmartPointer
<
const
Self
>
ConstPointer
;
...
...
@@ -269,7 +269,7 @@ public:
typedef
itk
::
Point
<
TCoordRep
,
2
>
PointType
;
/** The return value of the function */
typedef
typename
DefaultDescriptor
s
Type
<
FunctionPrecision
>::
Type
DescriptorType
;
typedef
typename
DefaultDescriptorType
<
FunctionPrecision
>::
Type
DescriptorType
;
/** The function evaluated on the input image at locations specified by the vector data */
typedef
itk
::
FunctionBase
<
PointType
,
DescriptorType
>
DescriptorsFunctionType
;
...
...
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