Skip to content

srivathsanmurali/domsetLibrary

Repository files navigation

Dominant Set Clustering algorithm

Clustering camera poses generated by a SFM pipeline such as openMVG. The library gives a list of view clusters.

The library is sfm appliction agnostic. It requires view poses and sparse point positions. It uses affinity propogation to cluster poses.

This libary is an implementation of "Dominant set clustering" introduced by Maura, Massimo et al. at ETHZ Zurich Computer Vision Lab

Source

Mauro, Massimo, et al. "An integer linear programming model for view selection on overlapping camera clusters." 2014 2nd International Conference on 3D Vision. Vol. 1. IEEE, 2014.

Mauro, Massimo, et al. ["Overlapping camera clustering through dominant sets for scalable 3D reconstruction."] (http://www.vision.ee.ethz.ch/~rhayko/paper/bmvc2013_mauro_view_clustering.pdf) 2013 British Machine Vision Conference.

Terminology in our library

  • Point stores positional informations about the sparse point cloud from SFM.
  • Camera stores the intrinsic properties of distinct cameras used in the sytem.
  • View stores the extrinsic parameters of cameras poses (translation and rotation).

Usage

#include "domsetLibrary/types.h"
#include "domsetLibrary/domset.h"

#include <vector>

int main() {
  std::vector<nomoko::Point> points;
  // Fill points with sparse point cloud generated durign SFM.
  
  std::vector<nomoko::Camera> cameras;
  // Fill with camera parameters of the distinct cameras.
  
  std::vector<nomoko::Views> views;
  // Fill with poses of images.

  const size_t voxelGridSize = 15;
  nomoko::Domset domset(points, views, camera, voxelGridSize)

  // specify sizes of view clusters
  const size_t clusterSizeLowerBound = 10;
  const size_t clusterSizeUpperBound = 15;
  domset.clusterViews(clusterSizeLowerBound, clusterSizeUpperBound);

  std::vector<std::vector<size_t> > clusters;
  clusters = domset.getClusters();
}

ThirdParty Libraries

Examples

The clustering was tested on the fraumunster dataset from CVL ETHZ ([dataset] (https://people.ee.ethz.ch/~rhayko/paper/bmvc2013_mauro_view_clustering/pix/bmvc2013_view_clustering_fraumunster.zip)).

Output from OpenMVG

SFM Output The green points shows the calibrated camera poses.

Output from domset

Domset Output This image shows the output from our dominant set clustering implementation. The various camera view clusters are shown in different colours.

TODO

  • Leveraged Affinity Propogation for datasets for large number of camera views.
  • Overlaping of clustering in library not implemented.

Author

Srivathsan Murali (NomokoAG)

About

a library that clusters set of images with poses into clusters for easier mvs

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •