Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Main Repositories
otb
Commits
1f04a4f0
Commit
1f04a4f0
authored
Nov 12, 2013
by
Angelos Tzotsos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG: missing "this->" causes ITK to fail to build under latest gcc
parent
a7eb1178
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Utilities/ITK/Code/Algorithms/itkGeodesicActiveContourLevelSetFunction.h
...ode/Algorithms/itkGeodesicActiveContourLevelSetFunction.h
+1
-1
Utilities/ITK/Code/Algorithms/itkShapeDetectionLevelSetFunction.h
...s/ITK/Code/Algorithms/itkShapeDetectionLevelSetFunction.h
+1
-1
Utilities/ITK/Code/Review/itkValuedRegionalMinimaImageFilter.h
...ties/ITK/Code/Review/itkValuedRegionalMinimaImageFilter.h
+1
-1
No files found.
Utilities/ITK/Code/Algorithms/itkGeodesicActiveContourLevelSetFunction.h
View file @
1f04a4f0
...
...
@@ -114,7 +114,7 @@ public:
virtual
ScalarValueType
CurvatureSpeed
(
const
NeighborhoodType
&
neighborhood
,
const
FloatOffsetType
&
offset
,
GlobalDataStruct
*
gd
)
const
{
return
PropagationSpeed
(
neighborhood
,
offset
,
gd
);
return
this
->
PropagationSpeed
(
neighborhood
,
offset
,
gd
);
}
/** Set/Get the sigma for the Gaussian kernel used to compute the gradient
...
...
Utilities/ITK/Code/Algorithms/itkShapeDetectionLevelSetFunction.h
View file @
1f04a4f0
...
...
@@ -103,7 +103,7 @@ public:
/** The curvature speed is same as the propagation speed. */
virtual
ScalarValueType
CurvatureSpeed
(
const
NeighborhoodType
&
neighborhood
,
const
FloatOffsetType
&
offset
,
GlobalDataStruct
*
gd
)
const
{
return
PropagationSpeed
(
neighborhood
,
offset
,
gd
);
}
{
return
this
->
PropagationSpeed
(
neighborhood
,
offset
,
gd
);
}
virtual
void
Initialize
(
const
RadiusType
&
r
)
{
...
...
Utilities/ITK/Code/Review/itkValuedRegionalMinimaImageFilter.h
View file @
1f04a4f0
...
...
@@ -83,7 +83,7 @@ public:
protected:
ValuedRegionalMinimaImageFilter
()
{
SetMarkerValue
(
NumericTraits
<
ITK_TYPENAME
TOutputImage
::
PixelType
>::
max
());
this
->
SetMarkerValue
(
NumericTraits
<
ITK_TYPENAME
TOutputImage
::
PixelType
>::
max
());
}
virtual
~
ValuedRegionalMinimaImageFilter
()
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment