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
Main Repositories
otb
Merge requests
!39
Resolve "API change in HoughTransform2DLinesImageFilter (itk 4.13)"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "API change in HoughTransform2DLinesImageFilter (itk 4.13)"
1537-api-change-in-houghtransform2dlinesimagefilter-itk-4-13
into
develop
Overview
0
Commits
3
Pipelines
0
Changes
1
Merged
Manuel Grizonnet
requested to merge
1537-api-change-in-houghtransform2dlinesimagefilter-itk-4-13
into
develop
7 years ago
Overview
0
Commits
3
Pipelines
0
Changes
1
Expand
Closes
#1537 (closed)
Edited
7 years ago
by
Manuel Grizonnet
2
0
Merge request reports
Compare
develop
version 2
f395da16
7 years ago
version 1
80d384e1
7 years ago
develop (base)
and
latest version
latest version
a48fe445
3 commits,
7 years ago
version 2
f395da16
2 commits,
7 years ago
version 1
80d384e1
1 commit,
7 years ago
1 file
+
4
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Modules/Feature/Edge/include/otbLocalHoughFilter.txx
+
4
−
0
Options
@@ -229,7 +229,11 @@ LocalHoughFilter<TInputImage>
@@ -229,7 +229,11 @@ LocalHoughFilter<TInputImage>
// Get the list of LineSpatialObject lines
// Get the list of LineSpatialObject lines
// ---------------------------------------
// ---------------------------------------
#if !defined(ITK_LEGACY_REMOVE)
lines = houghFilter->GetLines(m_NumberOfLines);
lines = houghFilter->GetLines(m_NumberOfLines);
#else
lines = houghFilter->GetLines();
#endif
LineIterator itLines = lines.begin();
LineIterator itLines = lines.begin();
Loading