struct cv::SparseMat::Node

Overview

sparse matrix node - element of a hash table Moreā€¦

#include <mat.hpp>

struct Node
{
    // fields

    size_t hashval;
    int idx[MAX_DIM];
    size_t next;
};

Detailed Documentation

sparse matrix node - element of a hash table

Fields

size_t hashval

hash value

int idx[MAX_DIM]

index of the matrix element

size_t next

index of the next node in the same hash table entry