Table of Contents

Interface IInterpolatable<T>

Namespace
Emgu.Util
Assembly
Emgu.CV.dll

An object that can be interpolated

public interface IInterpolatable<T> where T : new()

Type Parameters

T

The type of the object

Properties

InterpolationIndex

The index that will be used for interpolation

double InterpolationIndex { get; }

Property Value

double

Methods

LinearInterpolate(T, double)

Interpolate base on this point and the other point with the given index

T LinearInterpolate(T other, double index)

Parameters

other T

The other point

index double

The interpolation index

Returns

T

The interpolated point