Add S-expression based video effects pipeline with modular effect definitions, constructs, and recipe files. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
202 B
Common Lisp
8 lines
202 B
Common Lisp
;; Edge detection effect - highlights edges
|
|
;; @param low int [10, 100] default 50
|
|
;; @param high int [50, 300] default 150
|
|
|
|
(define-effect edge_detect
|
|
((low 50) (high 150))
|
|
(edges frame low high))
|