HomeSort by relevance Sort by last modified time
    Searched refs:gradientMap (Results 1 - 2 of 2) sorted by null

  /cts/apps/CtsVerifier/lib/colorchecker/
colorcheckertest.cpp 130 float* gradientMap = new float[height * width * 2];
133 computeGradient(grayImage, gradientMap);
143 sqrt(gradientMap[(i * width + j) * 2] *
144 gradientMap[(i * width + j) * 2] +
145 gradientMap[(i * width + j ) * 2 + 1] *
146 gradientMap[(i * width + j ) * 2 + 1]);
149 if (gradientMap[(i * width + j) * 2] == 0 ) {
157 float gradient = atan(gradientMap[(i * width + j) * 2 + 1]
158 / gradientMap[(i * width + j) * 2])
233 delete[] gradientMap;
    [all...]
  /cts/apps/CtsVerifier/include/colorchecker/
colorcheckertest.h 76 void computeGradient(unsigned char* layer, float* gradientMap);

Completed in 41 milliseconds