Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

C++ allocate and copy matrix take too much time

Good morning,

When I copy a part of a cv::Mat of size 5000X46357 and type=CV_32F to a cv::Mat of size 100X46357 and type=CV_32F, it take 3ms. To reduce this time, I initialize the cv::Mat of size 100X46357 to ones, but this take 7ms and it doesn't reduce the time of copy. Is it normal that cv::Mat::ones take this time?

I have also a problem with this matrix when I pass it in a function after the copy, if I don't initialize it with ones, the function take 9.5ms but if I initialize with ones, the function take 2.5ms; is it normal that the initialization of the matrix outside the function affect the time of the function?

My final problem is that I do a matrix operation who take 0.014ms and when I affect this operation to a matrix, it take 4.7ms. The result matrix has a size of 2X46357 and type=CV_32F .

So, is it normal that allocation and give data to a matrix take too much time?

Thank you for your respond.

C++ allocate and copy matrix take too much time

Good morning,

When I copy a part of a cv::Mat of size 5000X46357 and type=CV_32F to a cv::Mat of size 100X46357 and type=CV_32F, it take 3ms. To reduce this time, I initialize the cv::Mat of size 100X46357 to ones, but this take 7ms and it doesn't reduce the time of copy. Is it normal that cv::Mat::ones take this time?

I have also a problem with this matrix when I pass it in a function after the copy, if I don't initialize it with ones, the function take 9.5ms but if I initialize with ones, the function take 2.5ms; is it normal that the initialization of the matrix outside the function affect the time of the function?

My final problem is that I do a matrix operation who take 0.014ms and when I affect this operation to a matrix, it take 4.7ms. The result matrix has a size of 2X46357 and type=CV_32F .

So, is it normal that allocation and give data to a matrix take too much time?

I Work on Windows 10 Pro 1909 X64, AMD Ryzen Threadripper 1900X8-core cpu, NVidia titan V gpu, with opencv X64 version 4.1.1 , I work on visual studio 2017 and I compile on mode Release X64.

Here a part of code:

Copy of matrix image description

Matrix operation and assignment image description

Thank you for your respond.