一点问题求助。
Created by: enduringstack
if (type == googlenet) { dataBuf[rIndex] = (float) (red(color)) - 148; dataBuf[gIndex] = (float) (green(color)) - 148; dataBuf[bIndex] = (float) (blue(color)) - 148; } else if (type == mobilenet) { dataBuf[rIndex] = (float) ((red(color) - 123.68) * 0.017); dataBuf[gIndex] = (float) ((green(color) - 116.78) * 0.017); dataBuf[bIndex] = (float) ((blue(color) - 103.94) * 0.017); } else if (type == squeezenet) { dataBuf[rIndex] = (float) (red(color)) - 123; dataBuf[gIndex] = (float) (green(color)) - 117; dataBuf[bIndex] = (float) (blue(color)) - 104; }
-148是代表什么意思? *0.017又是什么意思?