File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed
Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 77namespace caf
88{
99 SRCRTSpacePointMatch::SRCRTSpacePointMatch ():
10+ matched (false ),
1011 score (std::numeric_limits<float >::signaling_NaN())
1112 {}
1213}
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ namespace caf
1414 SRCRTSpacePointMatch ();
1515 virtual ~SRCRTSpacePointMatch () {}
1616
17+ bool matched; // whether or not a match was made
1718 SRCRTSpacePoint spacepoint; // the spacepoint
1819 float score; // assessment of quality of matching (depends on alg configuration)
1920 };
Original file line number Diff line number Diff line change 77namespace caf
88{
99 SRSBNDCRTTrackMatch::SRSBNDCRTTrackMatch ():
10+ matched (false ),
1011 score (std::numeric_limits<float >::signaling_NaN())
1112 {}
1213}
Original file line number Diff line number Diff line change @@ -14,8 +14,9 @@ namespace caf
1414 SRSBNDCRTTrackMatch ();
1515 virtual ~SRSBNDCRTTrackMatch () {}
1616
17- SRSBNDCRTTrack track; // the track
18- float score; // assessment of quality of matching (depends on alg configuration)
17+ bool matched; // whether or not a match was made
18+ SRSBNDCRTTrack track; // the track
19+ float score; // assessment of quality of matching (depends on alg configuration)
1920 };
2021}
2122
You can’t perform that action at this time.
0 commit comments