OpenCV
4.0.0
Open Source Computer Vision
|
#include "matrix.h"
Public Types | |
typedef T | type |
Public Member Functions | |
Matrix () | |
Matrix (T *data_, size_t rows_, size_t cols_, size_t stride_=0) | |
void | free () |
T * | operator[] (size_t index) const |
Public Attributes | |
size_t | cols |
T * | data |
size_t | rows |
size_t | stride |
Class that implements a simple rectangular matrix stored in a memory buffer and provides convenient matrix-like access using the [] operators.
typedef T cvflann::Matrix< T >::type |
|
inline |
|
inline |
|
inline |
Convenience function for deallocating the storage data.
|
inline |
Operator that return a (pointer to a) row of the data.
size_t cvflann::Matrix< T >::cols |
T* cvflann::Matrix< T >::data |
size_t cvflann::Matrix< T >::rows |
size_t cvflann::Matrix< T >::stride |