| 122 | } |
| 123 | |
| 124 | unsigned char* Matrix::data() |
| 125 | { |
| 126 | try |
| 127 | { |
| 128 | return spImpl->mCvMat.data; |
| 129 | } |
| 130 | catch (const std::exception& e) |
| 131 | { |
| 132 | error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| 133 | return nullptr; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | const unsigned char* Matrix::dataConst() const |
| 138 | { |
no test coverage detected