Add support for broadcasting arithmetical and logic operands (Feature #3839)
Description
This allows for easy and efficient vectorization for basic arithmetic and logic, similar to NumPy:
http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html
This is possible when using OpenCV in Python because of the NumPy interface, but it would be very desirable to be able to do this in C++ as well.
Also, it would be nice to be able to do this without resorting to intermediate buffer allocations and the use of cv::repeat (again, identical to NumPy broadcasting).
Associated revisions
Merge pull request #3839 from hyperscience:fix-free-space-check-in-grow-seq
History
Updated by Maksim Shabunin over 9 years ago
Issue has been transferred to GitHub: https://github.com/Itseez/opencv/issues/4801