Commit bcec7a7e authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

minor changes in opencv_stitching

parent 3bb0a5e3
...@@ -370,7 +370,7 @@ void BundleAdjuster::calcJacobian() ...@@ -370,7 +370,7 @@ void BundleAdjuster::calcJacobian()
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
// TODO replace with eigen // TODO replace SVD with eigen
void waveCorrect(vector<Mat> &rmats) void waveCorrect(vector<Mat> &rmats)
{ {
LOGLN("Wave correcting..."); LOGLN("Wave correcting...");
...@@ -527,7 +527,7 @@ vector<int> leaveBiggestComponent(vector<ImageFeatures> &features, vector<Match ...@@ -527,7 +527,7 @@ vector<int> leaveBiggestComponent(vector<ImageFeatures> &features, vector<Match
LOG(indices_removed[0]+1); LOG(indices_removed[0]+1);
for (size_t i = 1; i < indices_removed.size(); ++i) for (size_t i = 1; i < indices_removed.size(); ++i)
LOG(", " << indices_removed[i]+1); LOG(", " << indices_removed[i]+1);
LOGLN("). Try decrease --match_conf value."); LOGLN("). Try to decrease --match_conf value.");
features = features_subset; features = features_subset;
pairwise_matches = pairwise_matches_subset; pairwise_matches = pairwise_matches_subset;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment