6、 } 23. } 24. } 25. } 26. 27. // now normalise to 255 and put in format for a pixel array 28. int max = 0; 29. 30. // Find max acc value 31. for (int x = 0; x < width; x++) { 32. for (int y = 0; y < height; y++) { 33. 34.
7、 if (acc[x + (y * width)] > max) { 35. max = acc[x + (y * width)]; 36. } 37. } 38. } 39. 40. // 根据最大值,实现极坐标空间的灰度值归一化处理 41. int value; 42. for (int x = 0; x < width; x++) { 43. for (int y = 0; y < height; y++) { 1