Searched defs:hBins (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dhistogram.cpp71 JNIEnv* env, jclass clazz, jobject imageBuffer, jobject histogramBuffer, jint hBins, jint sBins)
77 for (int i = 0; i < hBins * sBins; ++i) histOut[i] = 0.0f;
80 float hScaler = hBins / 256.0f;
88 int index = static_cast<int>(s * sScaler) * hBins + static_cast<int>(h * hScaler);
70 Java_androidx_media_filterpacks_histogram_ChromaHistogramFilter_extractChromaHistogram( JNIEnv* env, jclass clazz, jobject imageBuffer, jobject histogramBuffer, jint hBins, jint sBins) argument

Completed in 728 milliseconds