dlib.image.animation

Animated images

Members

Aliases

AnimatedImageL16
alias AnimatedImageL16 = AnimatedImage!(IntegerPixelFormat.L16)

Specialization of AnimatedImage for 16-bit luminance pixel format

AnimatedImageL8
alias AnimatedImageL8 = AnimatedImage!(IntegerPixelFormat.L8)

Specialization of AnimatedImage for 8-bit luminance pixel format

AnimatedImageLA16
alias AnimatedImageLA16 = AnimatedImage!(IntegerPixelFormat.LA16)

Specialization of AnimatedImage for 16-bit luminance-alpha pixel format

AnimatedImageLA8
alias AnimatedImageLA8 = AnimatedImage!(IntegerPixelFormat.LA8)

Specialization of AnimatedImage for 8-bit luminance-alpha pixel format

AnimatedImageRGB16
alias AnimatedImageRGB16 = AnimatedImage!(IntegerPixelFormat.RGB16)

Specialization of AnimatedImage for 16-bit RGB pixel format

AnimatedImageRGB8
alias AnimatedImageRGB8 = AnimatedImage!(IntegerPixelFormat.RGB8)

Specialization of AnimatedImage for 8-bit RGB pixel format

AnimatedImageRGBA16
alias AnimatedImageRGBA16 = AnimatedImage!(IntegerPixelFormat.RGBA16)

Specialization of AnimatedImage for 16-bit RGBA pixel format

AnimatedImageRGBA8
alias AnimatedImageRGBA8 = AnimatedImage!(IntegerPixelFormat.RGBA8)

Specialization of AnimatedImage for 8-bit RGBA pixel format

UnmanagedAnimatedImageL16
alias UnmanagedAnimatedImageL16 = UnmanagedAnimatedImage!(IntegerPixelFormat.L16)

Specialization of UnmanagedAnimatedImage for 16-bit luminance pixel format

UnmanagedAnimatedImageL8
alias UnmanagedAnimatedImageL8 = UnmanagedAnimatedImage!(IntegerPixelFormat.L8)

Specialization of UnmanagedAnimatedImage for 8-bit luminance pixel format

UnmanagedAnimatedImageLA16
alias UnmanagedAnimatedImageLA16 = UnmanagedAnimatedImage!(IntegerPixelFormat.LA16)

Specialization of UnmanagedAnimatedImage for 16-bit luminance-alpha pixel format

UnmanagedAnimatedImageLA8
alias UnmanagedAnimatedImageLA8 = UnmanagedAnimatedImage!(IntegerPixelFormat.LA8)

Specialization of UnmanagedAnimatedImage for 8-bit luminance-alpha pixel format

UnmanagedAnimatedImageRGB16
alias UnmanagedAnimatedImageRGB16 = UnmanagedAnimatedImage!(IntegerPixelFormat.RGB16)

Specialization of UnmanagedAnimatedImage for 16-bit RGB pixel format

UnmanagedAnimatedImageRGB8
alias UnmanagedAnimatedImageRGB8 = UnmanagedAnimatedImage!(IntegerPixelFormat.RGB8)

Specialization of UnmanagedAnimatedImage for 8-bit RGB pixel format

UnmanagedAnimatedImageRGBA16
alias UnmanagedAnimatedImageRGBA16 = UnmanagedAnimatedImage!(IntegerPixelFormat.RGBA16)

Specialization of UnmanagedAnimatedImage for 16-bit RGBA pixel format

UnmanagedAnimatedImageRGBA8
alias UnmanagedAnimatedImageRGBA8 = UnmanagedAnimatedImage!(IntegerPixelFormat.RGBA8)

Specialization of UnmanagedAnimatedImage for 8-bit RGBA pixel format

Classes

AnimatedImage
class AnimatedImage(IntegerPixelFormat fmt)

Extension of standard Image that handles animation

AnimatedImageFactory
class AnimatedImageFactory

Factory class for animated images

UnmanagedAnimatedImage
class UnmanagedAnimatedImage(IntegerPixelFormat fmt)

AnimatedImage that uses dlib.core.memory instead of GC

UnmanagedAnimatedImageFactory
class UnmanagedAnimatedImageFactory

Factory class for UnmanagedAnimatedImage

Functions

animatedImage
SuperImage animatedImage(uint w, uint h, uint channels, uint bitDepth, uint numFrames)

Factory function for animated images

animatedImageFactory
AnimatedImageFactory animatedImageFactory()

Get default AnimatedImageFactory singleton

unmanagedAnimatedImage
SuperImage unmanagedAnimatedImage(uint w, uint h, uint channels, uint bitDepth, uint numFrames)

Factory function for UnmanagedAnimatedImage

Interfaces

SuperAnimatedImage
interface SuperAnimatedImage

Animated image interface

Meta

Authors

Timur Gafarov