Home | History | Annotate | Download | only in imageproc

Lines Matching defs:brightness

26   float brightness;
43 if (strcmp(key, "brightness") == 0)
44 ((BrightnessParameters*)user_data)->brightness = atof(value);
57 LOGE("Brightness: Incorrect input count! Expected 1 but got %d!", input_count);
63 LOGE("Brightness: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
72 LOGE("Brightness: No input or output pointer found!");
78 const float brightness = params->brightness;
80 // Run the brightness adjustment
81 const int factor = (int)(brightness * 255.0f);