BrushCue Example: Film Grain¶
You can use this tool online at https://www.brushcue.com/tools/film-grain
In [ ]:
!pip install brushcue
In [1]:
import io
from PIL import Image
import brushcue as bc
graph = bc.Composition.monet_women_with_parasol().film_grain(
1, 1024, 0.5, 512, 0.3, 256, 0.2
)
ctx = bc.Context()
composition = graph.execute(ctx)
data_bytes = composition.to_image_bytes(ctx)
img = Image.open(io.BytesIO(data_bytes))
img.thumbnail((400, 400)) # Remove this line for full resolution
img
new pipeline: color_transformer_shader_rgba16float_compute_16683618810569050274_inarr_false new pipeline: spacial_displacement_shader_rgba16float_compute_15511498967903287358_inarr_false new pipeline: color_transformer_shader_rgba16float_compute_15141207515808804741_inarr_false
Out[1]: