comparison src/MatchPipeline.cpp @ 135:42381e437fcd refactors

The finder is supposed to use normalised path-cost when calculation expand direction (as in Java implementation). Also, provide a way to query the forward path.
author Chris Cannam
date Thu, 18 Dec 2014 17:56:54 +0000
parents 921a88e8859d
children cfba9aec7569
comparison
equal deleted inserted replaced
134:046f51a2ca25 135:42381e437fcd
95 { 95 {
96 m_feeder.finish(); 96 m_feeder.finish();
97 getFinder()->setDurations(m_lastFrameIn1, m_lastFrameIn2); 97 getFinder()->setDurations(m_lastFrameIn1, m_lastFrameIn2);
98 } 98 }
99 99
100 MatchFeatureFeeder *
101 MatchPipeline::getFeeder()
102 {
103 return &m_feeder;
104 }
105
100 Finder * 106 Finder *
101 MatchPipeline::getFinder() 107 MatchPipeline::getFinder()
102 { 108 {
103 return m_feeder.getFinder(); 109 return m_feeder.getFinder();
104 } 110 }