BrushCue Example: Sobel Edge Detection¶

Open In Colab

You can use this tool online at https://www.brushcue.com/tools/sobel-edge-detection

In [ ]:
!pip install brushcue
In [1]:
import io
from PIL import Image

import brushcue as bc

graph = bc.Composition.monet_women_with_parasol().sobel_edge_detection()

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_15869156322426445765_inarr_false
new pipeline: convolution_rgba16float_compute_false_inarr_false
new pipeline: color_transformer_shader_rgba16float_compute_12222872772815697788_inarr_false
new pipeline: blend_Add_rgba16float_compute_bg_false_fg_false
new pipeline: color_transformer_shader_rgba16float_compute_4147102252781122954_inarr_false
Out[1]:
No description has been provided for this image