Table of Contents

Struct Range

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

The range use to setup the histogram

public struct Range : IEquatable<Range>
Implements
Inherited Members

Constructors

Range(int, int)

Create a range of the specific min/max value

public Range(int start, int end)

Parameters

start int

The start value of this range

end int

The max value of this range

Properties

All

return the full range.

public static Range All { get; }

Property Value

Range

End

The end value of this range

public int End { get; set; }

Property Value

int

Start

The start value of this range

public int Start { get; set; }

Property Value

int

Methods

Equals(Range)

Return true if the two Range equals

public bool Equals(Range other)

Parameters

other Range

The other Range to compare with

Returns

bool

True if the two Range equals