Hi,
i am using pow command quite frequently in my codes, and i have a feeling that i may be using it incorrectly.
foe ex:
pow(image[x][y],2);
image[x][y] is unsigned char and 2 is numeric, so is the arguments ok.
std_dev=pow(((ur_mean/(R*C))-(im_mean*im_mean)),.5);
this a bit complicated, will it work this way?
is it not a problem if the data types of the POW arguments are different.
:?: