You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Plan to implement RasterPipeline, which is an image processing API based on native Skia API, and optionally integrate OpenCV WASM. This API allows users to generate and process images by creating a DAG (Directed Acyclic Graph) pipeline. Each node in the DAG could process or generate images, and they are connected together so that a node can take another node's output as its input. This is very similar to AVFilterDAG class in utau module, which process video or audio frames by a DAG constructed by ffmpeg's DSL (AVFilterDAG.MakeFromDSL()). But RasterPipeline is for static images, which means it is simplified and does not consider some complex things in multimedia processing, like frame timing. And RasterPipeline is designed for glamor module, supporting Skia APIs instead of VideoFrame or AudioFrame API in utau module.
Development of RasterPipeline is in progress.
The text was updated successfully, but these errors were encountered:
Plan to implement
RasterPipeline
, which is an image processing API based on native Skia API, and optionally integrate OpenCV WASM. This API allows users to generate and process images by creating a DAG (Directed Acyclic Graph) pipeline. Each node in the DAG could process or generate images, and they are connected together so that a node can take another node's output as its input. This is very similar toAVFilterDAG
class inutau
module, which process video or audio frames by a DAG constructed by ffmpeg's DSL (AVFilterDAG.MakeFromDSL()
). ButRasterPipeline
is for static images, which means it is simplified and does not consider some complex things in multimedia processing, like frame timing. AndRasterPipeline
is designed forglamor
module, supporting Skia APIs instead ofVideoFrame
orAudioFrame
API inutau
module.Development of
RasterPipeline
is in progress.The text was updated successfully, but these errors were encountered: