mirror of
https://github.com/opencv/opencv.git
synced 2025-06-13 04:52:53 +08:00
Add missing implementation to one of the Mat_<_Tp> constructor. (#5945)
This commit is contained in:
parent
7a62a8213b
commit
1e0928633d
@ -1338,6 +1338,11 @@ Mat_<_Tp>::Mat_(int _dims, const int* _sz, const _Tp& _s)
|
|||||||
: Mat(_dims, _sz, DataType<_Tp>::type, Scalar(_s))
|
: Mat(_dims, _sz, DataType<_Tp>::type, Scalar(_s))
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
template<typename _Tp> inline
|
||||||
|
Mat_<_Tp>::Mat_(int _dims, const int* _sz, _Tp* _data, const size_t* _steps)
|
||||||
|
: Mat(_dims, _sz, DataType<_Tp>::type, _data, _steps)
|
||||||
|
{}
|
||||||
|
|
||||||
template<typename _Tp> inline
|
template<typename _Tp> inline
|
||||||
Mat_<_Tp>::Mat_(const Mat_<_Tp>& m, const Range* ranges)
|
Mat_<_Tp>::Mat_(const Mat_<_Tp>& m, const Range* ranges)
|
||||||
: Mat(m, ranges)
|
: Mat(m, ranges)
|
||||||
|
Loading…
Reference in New Issue
Block a user