Table of Contents

Class TimedImage<TColor, TDepth>

Namespace
Emgu.CV
Assembly
Emgu.CV.dll

The Image which contains time stamp which specified what time this image is created

public class TimedImage<TColor, TDepth> : Image<TColor, TDepth>, IXmlSerializable, ISerializable, IEquatable<Image<TColor, TDepth>>, IInputOutputArray, IInputArrayOfArrays, IOutputArrayOfArrays, IOutputArray, IInputArray, IDisposable where TColor : struct, IColor where TDepth : new()

Type Parameters

TColor

The color of this map

TDepth

The depth of this map

Inheritance
CvArray<TDepth>
Image<TColor, TDepth>
TimedImage<TColor, TDepth>
Implements
IXmlSerializable
IEquatable<Image<TColor, TDepth>>
Inherited Members
Extension Methods

Constructors

TimedImage()

Create a empty Image

protected TimedImage()

TimedImage(int, int)

Create an empty Image of the specified width and height

public TimedImage(int width, int height)

Parameters

width int

The width of the image

height int

The height of the image

TimedImage(int, int, TColor)

Create a blank Image of the specified width, height, depth and color.

public TimedImage(int width, int height, TColor value)

Parameters

width int

The width of the image

height int

The height of the image

value TColor

The initial color of the image

Properties

Timestamp

The time this image is captured

public DateTime Timestamp { get; set; }

Property Value

DateTime