Skip to content

Commit

Permalink
Merge pull request opencv#5947 from takacsd:patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
alalek committed Jan 12, 2016
2 parents 7a62a82 + 1e09286 commit 70cb17b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/core/include/opencv2/core/mat.inl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1338,6 +1338,11 @@ Mat_<_Tp>::Mat_(int _dims, const int* _sz, const _Tp& _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
Mat_<_Tp>::Mat_(const Mat_<_Tp>& m, const Range* ranges)
: Mat(m, ranges)
Expand Down

0 comments on commit 70cb17b

Please sign in to comment.