| 163 | size_t cols() const { return m_cols; } |
| 164 | size_t channels() const { return m_channels; } |
| 165 | size_t step() const { return m_step; } |
| 166 | size_t total_nr_elem() const { return rows() * cols() * channels(); } |
| 167 | size_t total_span_elem() const { return rows() * step(); } |
| 168 | bool equals(const Mat<T>& rhs) const; |
no outgoing calls
no test coverage detected