Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NoiseReducerFilter

import type { NoiseReducerFilter } from "https://aws-api.deno.dev/v0.4/services/mediaconvert.ts?docs=full";

Use Noise reducer filter (NoiseReducerFilter) to select one of the following spatial image filtering functions. To use this setting, you must also enable Noise reducer (NoiseReducer). * Bilateral preserves edges while reducing noise. * Mean (softest), Gaussian, Lanczos, and Sharpen (sharpest) do convolution filtering. * Conserve does min/max noise reduction. * Spatial does frequency-domain filtering based on JND principles. * Temporal optimizes video quality for complex motion.

type NoiseReducerFilter =
| "BILATERAL"
| "MEAN"
| "GAUSSIAN"
| "LANCZOS"
| "SHARPEN"
| "CONSERVE"
| "SPATIAL"
| "TEMPORAL"

§Type

§
"BILATERAL" | "MEAN" | "GAUSSIAN" | "LANCZOS" | "SHARPEN" | "CONSERVE" | "SPATIAL" | "TEMPORAL" | cmnP.UnexpectedEnumValue
[src]