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

  /cts/tests/tests/media/libmediandkjni/
codec-utils-jni.cpp 380 void getRawStats(NativeImage *img, jlong rawStats[10])
437 rawStats[0] = img->plane[0].cropWidth * (uint64_t)img->plane[0].cropHeight;
439 rawStats[i + 1] = sum_x[i];
440 rawStats[i + 4] = sum_xx[i];
441 rawStats[i + 7] = sum_xy[i];
445 bool Raw2YUVStats(jlong rawStats[10], jfloat stats[9]) {
449 int64_t num = rawStats[0]; // #Y,U,V
451 sum_x[i] = rawStats[i + 1];
452 sum_xx[i] = rawStats[i + 4];
453 sum_xy[i] = rawStats[i + 7]
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
ImageReaderDecoderTest.java 633 long[][] rawStats = new long[NUM_SIDES][10];
656 rawStats[layer][i] += oneStat[i];
658 rawStats[lastLayer][i] -= oneStat[i];
662 Log.v(TAG, "layer-" + lastLayer + ": " + Arrays.toString(rawStats[lastLayer]));
663 Log.v(TAG, Arrays.toString(CodecUtils.Raw2YUVStats(rawStats[lastLayer])));
677 float[] stats = CodecUtils.Raw2YUVStats(rawStats[layer]);
679 if (VERBOSE) Log.v(TAG, Arrays.toString(rawStats[layer]));
    [all...]
CodecUtils.java 151 public native static float[] Raw2YUVStats(long[] rawStats);
  /cts/apps/CameraITS/pymodules/its/
device.py 524 "dng", "raw", "raw10", "raw12", or "rawStats". The default is a YUV420
623 The "rawStats" format processes the raw image and returns a new image
635 For the rawStats format, if the gridWidth is not provided then the raw
642 "format": "rawStats"
660 "yuv","jpeg","raw","raw10","raw12","rawStats","dng"].
754 raw_formats += 1 if "rawStats" in formats else 0
    [all...]
image.py 80 elif cap["format"] == "raw" or cap["format"] == "rawStats":
89 """Unpack a rawStats capture to the mean and variance images.
98 assert(cap["format"] == "rawStats")
225 For Bayer captures ("raw", "raw10", "raw12", or "rawStats"):
228 is 1/2 x 1/2 of the full res. For "rawStats" images, the mean image
305 elif cap["format"] == "rawStats":
    [all...]

Completed in 955 milliseconds