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
8e5c9964
Commit
8e5c9964
authored
15 years ago
by
Manuel Grizonnet
Browse files
Options
Downloads
Patches
Plain Diff
DOC:sift example
parent
72a30034
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/DisparityMap/EstimateAffineTransformationExample.cxx
+29
-51
29 additions, 51 deletions
...ples/DisparityMap/EstimateAffineTransformationExample.cxx
with
29 additions
and
51 deletions
Examples/DisparityMap/EstimateAffineTransformationExample.cxx
+
29
−
51
View file @
8e5c9964
...
...
@@ -238,9 +238,9 @@ int main (int argc, char* argv[])
bool
useBackMatching
=
0
;
filter1
->
SetInput
(
0
,
fixedReader
->
GetOutput
()
);
filter1
->
SetInput
(
fixedReader
->
GetOutput
()
);
//filter1->SetScalesNumber(3);
filter2
->
SetInput
(
0
,
movingReader
->
GetOutput
()
);
filter2
->
SetInput
(
movingReader
->
GetOutput
()
);
//filter2->SetScalesNumber(3);
// Software Guide : BeginCodeSnippet
...
...
@@ -257,86 +257,64 @@ int main (int argc, char* argv[])
filter2
->
SetEdgeThreshold
(
ratio
);
// Software Guide : EndCodeSnippet
std
::
cout
<<
"SIFT process fixed image"
<<
std
::
endl
;
filter1
->
Update
();
std
::
cout
<<
"SIFT process moving image"
<<
std
::
endl
;
filter2
->
Update
();
//filter1->SetNumberOfThreads(1);
//filter2->SetNumberOfThreads(1);
//Take the minimum point set to compute euclidian diff
//Take the minimum point set to compute euclidian diff
(vector lengths must be equal)
PointSetType
::
Pointer
ptSet1
=
filter1
->
GetOutput
();
PointSetType
::
Pointer
ptSet2
=
filter2
->
GetOutput
();
typedef
PointSetType
::
PointsContainer
PointsContainer
;
PointsContainer
::
Pointer
ptContainer
;
PointsContainer
::
Pointer
ptContainer1
,
ptContainer2
;
unsigned
int
minPtSetSize
=
ptSet1
->
GetNumberOfPoints
();
//Save point container to extract 2 points container with size = min (container1, container2)
//TODO simplify subset selection in this itk::PointSet
ptContainer1
=
ptSet1
->
GetPoints
();
ptContainer2
=
ptSet2
->
GetPoints
();
if
(
ptSet1
->
GetNumberOfPoints
()
>
ptSet2
->
GetNumberOfPoints
()
)
{
//minPtSetSize = ptSet2->GetNumberOfPoints();
//minPtSetSize = ptSet2->GetNumberOfPoints();
ptContainer1
=
ptSet2
->
GetPoints
();
ptContainer2
=
ptSet1
->
GetPoints
();
}
PointsContainer
::
Pointer
ptContainerRes
=
PointsContainer
::
New
();
typedef
PointsContainer
::
Iterator
PointsIterator
;
PointsIterator
pointsIterator
=
ptContainer2
->
Begin
();
for
(
unsigned
int
id
=
ptContainer1
->
GetSize
();
id
<
ptContainer2
->
GetSize
();
++
id
)
//Construct new point container (subset of input pointset)
for
(
unsigned
int
id
=
0
;
id
<
ptContainer1
->
Size
();
++
id
)
{
ptContainer2
->
DeleteIndex
(
id
);
ptContainerRes
->
InsertElement
(
id
,
pointsIterator
->
Value
());
++
pointsIterator
;
}
if
(
ptSet1
->
GetNumberOfPoints
()
>
ptSet2
->
GetNumberOfPoints
()
)
{
ptSet1
->
SetPoints
(
ptContainer
2
);
ptSet1
->
SetPoints
(
ptContainer
Res
);
}
else
{
ptSet2
->
SetPoints
(
ptContainer
2
);
ptSet2
->
SetPoints
(
ptContainer
Res
);
}
/*
typedef PointSetType::PointsContainer PointsContainer;
typedef PointsContainer::Iterator PointsIterator;
PointSetType::Pointer ptSet1bis = PointSetType::New();
PointSetType::Pointer ptSet2bis = PointSetType::New();
//PointsContainer::Pointer pt1Container;
//PointsContainer::Pointer pt2Container;
//bool 1isMin = ptSet1->GetNumberOfPoints() <= ptSet2->GetNumberOfPoints();
//LandmarkListType::Iterator it
unsigned int sizeMin=ptSet2->GetNumberOfPoints();
if ( ptSet1->GetNumberOfPoints() < ptSet2->GetNumberOfPoints() )
{
sizeMin = ptSet1->GetNumberOfPoints();
}
//PointsIterator pointIterator = points->Begin();
//PointsIterator end = points->End();
unsigned int dataId = 0;
//while ( pointIterator != end )
//typedef PointSetType::PointContainer PointDataContainer;
PointsContainer::Pointer points1 = ptSet1->GetPoints();
PointsContainer::Pointer points2 = ptSet2->GetPoints();
typedef PointsContainer::Iterator PointsIterator;
PointsIterator pointsIterator1 = points1->Begin();
PointsIterator pointsIterator2 = points2->Begin();
for (unsigned int dataId=0;dataId < sizeMin;++dataId)
{
ptSet1bis->SetPoint( dataId , pointsIterator1->Value() );
ptSet2bis->SetPoint( dataId , pointsIterator2->Value() );
std::cout << pointsIterator1->Value() << std::endl;
++pointsIterator1;
++pointsIterator2;
}
*/
euclideanMatcher
->
SetInput1
(
ptSet1
);
euclideanMatcher
->
SetInput2
(
ptSet2
);
std
::
cout
<<
"SIFT points size"
<<
std
::
endl
;
std
::
cout
<<
ptSet1
->
GetNumberOfPoints
()
<<
std
::
endl
;
std
::
cout
<<
ptSet2
->
GetNumberOfPoints
()
<<
std
::
endl
;
//euclideanMatcher->SetInput1(ptSet1);
//euclideanMatcher->SetInput2(ptSet2);
euclideanMatcher
->
SetInput1
(
filter1
->
GetOutput
());
euclideanMatcher
->
SetInput2
(
filter2
->
GetOutput
());
euclideanMatcher
->
SetDistanceThreshold
(
secondOrderThreshold
);
euclideanMatcher
->
SetUseBackMatching
(
useBackMatching
);
std
::
cout
<<
"Update euclidian distance"
<<
std
::
endl
;
euclideanMatcher
->
Update
();
// Software Guide : EndCodeSnippet
...
...
@@ -353,7 +331,7 @@ int main (int argc, char* argv[])
LandmarkListType
::
Pointer
landmarkList
;
landmarkList
=
euclideanMatcher
->
GetOutput
();
std
::
cout
<<
"Get landmark"
<<
std
::
endl
;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
...
...
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