Home | History | Annotate | Download | only in imageproc

Lines Matching defs:brightness

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