Matx::col does not compiles (Bug #1375)
Description
template<typename _Tp, int m, int n> inline
Matx<_Tp, m, 1> Matx<_Tp, m, n>::col(int j) const
At Line 417
v[i] = val[i*n + j];
should be
v(i) = val[i*n + j]; or v.val[i] = val[i*n + j];
Related issues
duplicates Feature #1326: Problem in Vec assignment in Matx::col | Done |
Associated revisions
Merge pull request #1375 from jet47:gpu-examples-build
History
Updated by Andrey Kamaev almost 13 years ago
Duplicate of #1326
- Status changed from Open to Cancelled
- Target version set to 2.4.0