UNPKG

image-in-browser

Version:

Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)

21 lines (20 loc) 526 B
/** @format */ import { VP8BandProbas } from './vp8-band-probas.js'; /** * Struct collecting all frame-persistent probabilities */ export declare class VP8Proba { /** * Segments array initialized with VP8.mbFeatureTreeProbs */ segments: Uint8Array; /** * Bands array containing VP8BandProbas objects * Type: 0=Intra16-AC, 1=Intra16-DC, 2=Chroma, 3=Intra4 */ bands: Array<Array<VP8BandProbas>>; /** * Constructor to initialize bands and segments */ constructor(); }