#include <feature/InterestPoint.h>
#include <feature/Detector.h>
#include <utils/Convolution.h>
#include <utils/PeakFinder.h>
#include <boost/graph/adjacency_matrix.hpp>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/prim_minimum_spanning_tree.hpp>
#include <boost/graph/johnson_all_pairs_shortest.hpp>
#include <boost/graph/graph_utility.hpp>
#include <vector>
Go to the source code of this file.
Classes | |
class | CurvatureDetector |
Typedefs | |
typedef boost::property < boost::vertex_distance_t, double > | DistanceVertexProperty |
typedef boost::adjacency_list < boost::vecS, boost::vecS, boost::undirectedS, DistanceVertexProperty, WeightEdgeProperty > | Graph |
typedef std::pair< unsigned int, unsigned int > | GraphEdge |
typedef boost::adjacency_matrix < boost::undirectedS, DistanceVertexProperty, WeightEdgeProperty > | MatrixGraph |
typedef boost::property < boost::edge_weight_t, double > | WeightEdgeProperty |
typedef boost::property<boost::vertex_distance_t, double> DistanceVertexProperty |
Definition at line 38 of file CurvatureDetector.h.
typedef boost::adjacency_list< boost::vecS, boost::vecS, boost::undirectedS, DistanceVertexProperty, WeightEdgeProperty> Graph |
Definition at line 41 of file CurvatureDetector.h.
typedef std::pair<unsigned int, unsigned int> GraphEdge |
Definition at line 43 of file CurvatureDetector.h.
typedef boost::adjacency_matrix< boost::undirectedS, DistanceVertexProperty, WeightEdgeProperty > MatrixGraph |
Definition at line 42 of file CurvatureDetector.h.
typedef boost::property< boost::edge_weight_t, double > WeightEdgeProperty |
Definition at line 39 of file CurvatureDetector.h.