D | cvcompat.h | 479 #define cvQueryHistValue_1D( hist, idx0 ) \ argument 480 ((float)cvGetReal1D( (hist)->bins, (idx0))) 481 #define cvQueryHistValue_2D( hist, idx0, idx1 ) \ argument 482 ((float)cvGetReal2D( (hist)->bins, (idx0), (idx1))) 483 #define cvQueryHistValue_3D( hist, idx0, idx1, idx2 ) \ argument 484 ((float)cvGetReal3D( (hist)->bins, (idx0), (idx1), (idx2))) 490 #define cvGetHistValue_1D( hist, idx0 ) \ argument 491 ((float*)cvPtr1D( (hist)->bins, (idx0), 0)) 492 #define cvGetHistValue_2D( hist, idx0, idx1 ) \ argument 493 ((float*)cvPtr2D( (hist)->bins, (idx0), (idx1), 0)) [all …]
|