struct cvflann::HierarchicalClusteringIndex::Node

Overview

Struture representing a node in the hierarchical k-means tree. Moreā€¦

struct Node
{
    // fields

    Node** childs;
    int* indices;
    int level;
    int pivot;
    int size;
};

Detailed Documentation

Struture representing a node in the hierarchical k-means tree.

Fields

Node** childs

Child nodes (only for non-terminal nodes)

int* indices

Node points (only for terminal nodes)

int level

Level

int pivot

The cluster center index

int size

The cluster size (number of points in the cluster)