Is this line code correct?
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];
}
}
imfft is the name of Mat object ?
yes it is! in matlab the operation is : imfft= imfft.*filter
but my filter is a bidimensial double array
-1 for not looking into the documentation.