1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-21 23:01:45 +08:00

Added size_t conversion for class Bridge. Need when compiling extra modules into matlab.

This commit is contained in:
andrewk-mccann
2016-11-08 15:53:52 -05:00
parent eb8f5b88d8
commit d353fe1507

View File

@@ -293,6 +293,10 @@ public:
int toInt() { return ptr_.scalar<int>(); }
operator int() { return toInt(); }
// --------------------------- size_t -----------------------------------------
Bridge& operator=(const size_t&) { return *this; }
size_t toSizeT() { return ptr_.scalar<size_t>(); }
operator size_t() { return toSizeT(); }