GPUWhiteBalanceFilter constructor

GPUWhiteBalanceFilter({
  1. double? temperature,
  2. double? tint,
})

temperature: The temperature to adjust the image by, in ºK. A value of 4000 is very cool and 7000 very warm. The default value is 5000. Note that the scale between 4000 and 5000 is nearly as visually significant as that between 5000 and 7000.

Implementation

// tint: The tint to adjust the image by. A value of -200 is very green and 200 is very pink. The default value is 0.
GPUWhiteBalanceFilter({this.temperature,this.tint}) {
  type = "whiteBalance";
}