Table of Contents

Struct RangeF

Namespace
Emgu.CV.Structure
Assembly
Emgu.CV.dll

The range use to setup the histogram

public struct RangeF : IEquatable<RangeF>
Implements
Inherited Members

Constructors

RangeF(float, float)

Create a range of the specific min/max value

public RangeF(float min, float max)

Parameters

min float

The min value of this range

max float

The max value of this range

Properties

Max

The maximum value of this range

public float Max { get; set; }

Property Value

float

Min

The minimum value of this range

public float Min { get; set; }

Property Value

float

Methods

Equals(RangeF)

Return true if the two RangeF equals

public bool Equals(RangeF other)

Parameters

other RangeF

The other RangeF to compare with

Returns

bool

True if the two RangeF equals