Biomedical Image Analysis Library
The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on.
|
Minimum spanning three algorithm. More...
#include <MinimumSpanningTree.hpp>
Static Public Member Functions | |
template<template< class D > class C, class D > | |
static void | MST (const Feature< D > &feature, C< D > &distance_map, C< int > &predecessor_map) |
Computes the minimum spanning tree for the vectors in the given feature space. It returns the predecessors and arc lengths in predecessor_map and distance_map, respectively. More... | |
Minimum spanning three algorithm.
Definition at line 29 of file MinimumSpanningTree.hpp.
|
static |
Computes the minimum spanning tree for the vectors in the given feature space. It returns the predecessors and arc lengths in predecessor_map and distance_map, respectively.
feature | A feature vector whose space will be used to compute the MST. |
distance_map | Resulting distance map. |
predecessor_map | Resulting predecessor_map. |