#
Grayscale
The block processes the video stream and makes it black and white.
#
Block info
Name: GrayscaleBlock.
#
The sample pipeline
graph LR; UniversalSourceBlock-->GrayscaleBlock; GrayscaleBlock-->VideoRendererBlock;
#
Sample code
var pipeline = new MediaBlocksPipeline();
var filename = "test.mp4";
var fileSource = new UniversalSourceBlock(await UniversalSourceSettings.CreateAsync(new Uri(filename)));
var grayscale = new GrayscaleBlock());
pipeline.Connect(fileSource.VideoOutput, grayscale.Input);
var videoRenderer = new VideoRendererBlock(pipeline, VideoView1);
pipeline.Connect(grayscale.Output, videoRenderer.Input);
await pipeline.StartAsync();
#
Platforms
Windows, macOS, Linux, iOS, Android.