Developer Documentation
RAVL, Recognition And Vision Library
USER HOME PAGE CLASS LIST CONTENTS
Ravl - Images - Pixel Types - RealRGBValueC
 

  PUBLIC
RealRGBValueC::RealRGBValueC(void)
RealRGBValueC::RealRGBValueC(const RealYUVValueC &)
RealRGBValueC::RealRGBValueC(RealT,RealT,RealT)
RealRGBValueC::RealRGBValueC(const RGBValueC &)
RGBValueC::Set(const CompT &,const CompT &,const CompT &)
RGBValueC::Red(void) const
RGBValueC::Green(void) const
RGBValueC::Blue(void) const
RGBValueC::Red(void)
RGBValueC::Green(void)
RGBValueC::Blue(void)
RGBValueC::NTSC_Y(void)
RGBValueC::Y(void) const
TFVectorC::Size(void) const
TFVectorC::Contains(UIntT) const
TFVectorC::operator [](UIntT)
TFVectorC::operator [](UIntT) const
TFVectorC::operator ==(const TFVectorC &) const
TFVectorC::operator !=(const TFVectorC &) const
TFVectorC::Fill(const DataT &)
TFVectorC::Abs(void) const
TFVectorC::operator +=(const TFVectorC &)
TFVectorC::operator -=(const TFVectorC &)
TFVectorC::operator *=(const TFVectorC &)
TFVectorC::operator /=(const TFVectorC &)
TFVectorC::operator +(const TFVectorC &) const
TFVectorC::operator -(const TFVectorC &) const
TFVectorC::operator *(const TFVectorC &) const
TFVectorC::operator /(const TFVectorC &) const
TFVectorC::operator -(void) const
TFVectorC::operator *=(const DataT &)
TFVectorC::operator /=(const DataT &)
TFVectorC::operator *(const DataT &) const
TFVectorC::operator /(const DataT &) const
TFVectorC::Dot(const TFVectorC &) const
TFVectorC::OuterProduct(const TFVectorC &,TFMatrixC &) const
TFVectorC::OuterProduct(TFMatrixC &) const
TFVectorC::Limit(const DataT &,const DataT &)
TFVectorC::MaxValueDistance(const TFVectorC &) const
TFVectorC::CityBlockDistance(const TFVectorC &) const
TFVectorC::SqrEuclidDistance(const TFVectorC &) const
TFVectorC::Sum(void) const
TFVectorC::SumSqr(void) const
TFVectorC::T(void) const
TFVectorC::operator >>(istream &,TFVectorC &)
TFVectorC::operator <<(ostream &,const TFVectorC &)
TFVectorC::operator >>(BinIStreamC &,TFVectorC &)
TFVectorC::operator <<(BinOStreamC &,const TFVectorC &)

   RealRGBValueC   
 
Real RGB value class.
 
include "Ravl/Image/RealRGBValue.hh"
Created:24/01/2001 
Source file:Ravl/Image/Base/RealRGBValue.hh
User Level:Normal
Library:RavlImage
In Scope:RavlImageN

Parent Classes: Methods:
RealRGBValueC()
Default constructor.
creates an undefined RGB pixel.

RealRGBValueC(const RealYUVValueC &)
Convert from a YUV pixel.
Implementation in Ravl/Image/RGBcYUV.hh include this header when needed.

RealRGBValueC(RealT r,RealT g,RealT b)
Construct from components.

RealRGBValueC(const RGBValueC<RealT> & oth)
Default constructor.
creates an undefined RGB pixel.

#include "Ravl/Image/RGBValue.hh"
void Set(const RealT & r,const RealT & g,const RealT & b)
Set the values.

const RealT & Red() const
Returns the level of the red component.

const RealT & Green() const
Returns the level of the green component.

const RealT & Blue() const
Returns the level of the blue component.

RealT & Red()
Returns the level of the red component.

RealT & Green()
Returns the level of the green component.

RealT & Blue()
Returns the level of the blue component.

RealT NTSC_Y()
Get the pixel intensity of an NTSC colour system.
the NTSC RGB color system.

RealT Y() const
Calculate intensity of the pixel.
This returns the average of the red, green and blue components.

#include "Ravl/TFVector.hh"
UIntT Size() const
Get size of array
Used by some templates.

bool Contains(UIntT i) const
Test if array contains index i·

RealT & operator [](UIntT ind)
Access item.

const RealT & operator [](UIntT ind) const
Access item.

bool operator ==(const TFVectorC<RealT,3> & ind) const
is equal

bool operator !=(const TFVectorC<RealT,3> & ind) const
is not equal

void Fill(const RealT & dat)
Fill array with value 'dat'.

TFVectorC<RealT,3> Abs() const
Get an vector with Abs(x) run on all it values.

const TFVectorC<RealT,3> & operator +=(const TFVectorC<RealT,3> & ind)
Add an array to this one, inplace.

const TFVectorC<RealT,3> & operator -=(const TFVectorC<RealT,3> & ind)
Returns this index multiplied by index 'ind' item by item.

const TFVectorC<RealT,3> & operator *=(const TFVectorC<RealT,3> & ind)
Multiplies this index by index 'ind' item by item.

const TFVectorC<RealT,3> & operator /=(const TFVectorC<RealT,3> & ind)
Divides this index by index 'ind' item by item.

TFVectorC<RealT,3> operator +(const TFVectorC<RealT,3> & ind) const
Adds this index and 'ind'.

TFVectorC<RealT,3> operator -(const TFVectorC<RealT,3> & ind) const
Subtracts index 'ind' from this index.

TFVectorC<RealT,3> operator *(const TFVectorC<RealT,3> & ind) const
Returns this object multiplied by index 'ind' item by item.

TFVectorC<RealT,3> operator /(const TFVectorC<RealT,3> & ind) const
Returns this object devided by index 'ind' item by item.

TFVectorC<RealT,3> operator -() const
Returns opposite elements (unary minus operator).

const TFVectorC<RealT,3> & operator *=(const RealT & alpha)
Multiplies this index by number 'alpha'.

const TFVectorC<RealT,3> & operator /=(const RealT & alpha)
Divides this index by number 'alpha'.

TFVectorC<RealT,3> operator *(const RealT & alpha) const
Returns this object mutliplied by alpha.

TFVectorC<RealT,3> operator /(const RealT & alpha) const
Returns this object devided by alpha.

RealT Dot(const TFVectorC<RealT,3> & oth) const
Calculate the dot product of this and 'oth' vector.

TFMatrixC<RealT,3,3> & OuterProduct(const TFVectorC<RealT,3> & av,TFMatrixC<RealT,3,3> & result) const
Calculate the outer product of this vector with av.
The output is assigned to 'result'. A reference to 'result' is returned.

The implementation is in "Ravl/FMatrix.hh", it must be included to use this function.


TFMatrixC<RealT,3,3> & OuterProduct(TFMatrixC<RealT,3,3> & result) const
Calculate the outer product of this vector with itsself.
The output is assigned to 'result'. A reference to 'result' is returned.

The implementation is in "Ravl/FMatrix.hh", it must be included to use this function.


bool Limit(const RealT & min,const RealT & max)
Limit all values in this vector to between min and max.
Returns true if all values in the vector are between the limits. Distance calculations ---------------------

RealT MaxValueDistance(const TFVectorC<RealT,3> & i) const
Returns the distance of two indexes in maximum value metric.

RealT CityBlockDistance(const TFVectorC<RealT,3> & i) const
Returns the distance of two indexes in absolute value metric.

RealT SqrEuclidDistance(const TFVectorC<RealT,3> & i) const
Returns the distance of two indexes in square Euclid metric.

RealT Sum() const
Calculate the sum of all the vector elements.

RealT SumSqr() const
Calculate the sum of the squares of all the vector elements.

const TFMatrixC<RealT,1,3> & T() const
Transpose vector.
The implementation for this can be found in "Ravl/TFMatrix.hh"

istream & operator >>(istream & in,TFVectorC<RealT,3> & dat)

ostream & operator <<(ostream & in,const TFVectorC<RealT,3> & dat)

BinIStreamC & operator >>(BinIStreamC & in,TFVectorC<RealT,3> & dat)

BinOStreamC & operator <<(BinOStreamC & in,const TFVectorC<RealT,3> & dat)


Maintainer:Charles Galambos, Created: 24/01/2001, Documentation by CxxDoc: Tue Aug 13 09:59:30 2002