I
I have a Mat object and a bidimensional array. I need to multiply them and have a new Mat object. I had to realize imf=imf.*filt in Matlab
for(m=0;m<rows;m++){
for(n=0;n<cols;n++){
imfft= imfft*filter[m][n];
}
}
1 | initial version |
I
I have a Mat object and a bidimensional array. I need to multiply them and have a new Mat object. I had to realize imf=imf.*filt in Matlab
for(m=0;m<rows;m++){
for(n=0;n<cols;n++){
imfft= imfft*filter[m][n];
}
}