Reputation: 6873
I am multiplying two big matrices of size 360x25600 and 25600x360. A error occurs as memory access violation.
a - size of 360x25600
b - size of 25600x360
cv::Mat L_mat;
cv::Multiply(a,b,L_mat);
Upvotes: 0
Views: 161
Reputation: 79531
cv::muliply
is element-wise multiplication. You want operator *
.
Upvotes: 1