In [ ]:
!pip install brushcue
In [1]:
import brushcue
from PIL import Image
import io
input_image_1 = brushcue.composition_monet_women_with_parasol() # insert your own image here
composition_sharpen_2 = brushcue.composition_sharpen(input_image_1, 3.5, 2.0)
ctx = brushcue.Context()
result = composition_sharpen_2.execute(ctx)
composition = result.as_composition()
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_10540239407552119869_inarr_false new pipeline: color_transformer_shader_rgba16float_compute_4858939235225026907_inarr_false new pipeline: convolution_rgba16float_compute_true_inarr_false new pipeline: blend_Subtract_rgba16float_compute_bg_false_fg_false new pipeline: color_transformer_shader_rgba16float_compute_14771581779346939367_inarr_false new pipeline: blend_Add_rgba16float_compute_bg_false_fg_false new pipeline: color_transformer_shader_rgba16float_compute_16861657794771480865_inarr_false
Out[1]: