A Dora dataflow node for real-time Sobel edge detection using Kornia-RS.
This node applies Sobel edge detection to incoming image frames, highlighting edges and boundaries in the image.
nodes:
- id: sobel_filter
build: cargo build -p kornia-imgproc-sobel --release
path: target/release/kornia-imgproc-sobel
inputs:
frame: v4l-capture/frame
outputs:
- outputThe node automatically adapts to incoming frame dimensions and encoding. No additional configuration is required.
- Sobel operator: 3x3 kernel for edge detection
- Color conversion: YUYV converted using BT.601 Full range
- Output format: Float32 Sobel values mapped to U8 range
- dora-node-api - Dora runtime integration
- kornia-image - Image data structures
- kornia-imgproc - Image processing operations
- kornia-io - JPEG decoding
See the parent dora-nodes-hub for complete pipeline examples using this node.
Apache License 2.0 - see LICENSE for details.