Skip to content

Commit

Permalink
Merge branch 'rperrot-fixclang' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoulon committed Apr 20, 2016
2 parents 395ab2b + d0a4505 commit d9b8d2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void Match
const size_t dimension = regionsI.DescriptorLength();

Eigen::Map<BaseMat> mat_I( (ScalarT*)tabI, regionsI.RegionCount(), dimension);
const HashedDescriptions hashed_description = cascade_hasher.CreateHashedDescriptions(mat_I,
HashedDescriptions hashed_description = cascade_hasher.CreateHashedDescriptions(mat_I,
zero_mean_descriptor);
#ifdef OPENMVG_USE_OPENMP
#pragma omp critical
Expand Down Expand Up @@ -144,7 +144,7 @@ void Match
#endif
for (int j = 0; j < (int)indexToCompare.size(); ++j)
{
const size_t J = indexToCompare[j];
size_t J = indexToCompare[j];
const features::Regions &regionsJ = *regions_provider.regions_per_view.at(J).get();

if (regions_provider.regions_per_view.count(J) == 0
Expand Down
2 changes: 1 addition & 1 deletion src/openMVG/matching_image_collection/GeometricFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void ImageCollectionGeometricFilter::Robust_model_estimation
auto iter = putative_matches.begin();
advance(iter,i);

const Pair current_pair = iter->first;
Pair current_pair = iter->first;
const std::vector<IndMatch> & vec_PutativeMatches = iter->second;

//-- Apply the geometric filter (robust model estimation)
Expand Down

0 comments on commit d9b8d2b

Please sign in to comment.