User Documentation
RAVL, Recognition And Vision Library
DEVELOP HOME PAGE CLASS LIST CONTENTS
Ravl - Images - Lines - PCPixMappingC<class CurveT>
 

  PUBLIC
PCPixMappingC::PCPixMappingC(void)
PCPixMappingC::PCPixMappingC(const DListC> &)
PCPixMappingC::WriteGF(ostream &) const
DListC::IsEmpty(void) const
DListC::Size(void) const
DListC::Reverse(void)
DListC::Copy(void) const
DListC::InsFirst(const DataT &)
DListC::InsLast(const DataT &)
DListC::PopFirst(void)
DListC::PopLast(void)
DListC::DelFirst(void)
DListC::DelLast(void)
DListC::Empty(void)
DListC::operator +=(const DataT &)
DListC::operator +=(const DListC &)
DListC::MoveFirst(DListC &)
DListC::MoveLast(DListC &)
DListC::MoveFirst(DLIterC &)
DListC::MoveLast(DLIterC &)
DListC::operator ==(const DListC &) const
DListC::operator !=(const DListC &) const
DListC::First(void)
DListC::Last(void)
DListC::First(void) const
DListC::Last(void) const
DListC::Del(const DataT &)
DListC::Contains(const DataT &)
DListC::Nth(int)
DListC::Nth(int) const
DListC::operator <<(ostream &,const DListC &)
DListC::operator >>(istream &,DListC &)
DListC::operator <<(BinOStreamC &,const DListC &)
DListC::operator >>(BinIStreamC &,DListC &)
RCHandleC::operator =(const RCHandleC &)
RCHandleC::DeepCopy(UIntT) const
RCHandleC::operator ==(const RCHandleC &) const
RCHandleC::operator !=(const RCHandleC &) const
RCHandleC::Hash(void) const
RCHandleC::IsValid(void) const
RCHandleC::Invalidate(void)
RCHandleC::IsHandleType(const DT &) const
RCHandleC::CheckHandleType(const DT &) const
RCHandleC::References(void) const
RCHandleC::operator <<(ostream &,const RCHandleC &)
RCHandleC::operator >>(istream &,RCHandleC &)

   PCPixMappingC<class CurveT>   
 
Mappings from a curve to a set of pixels.
 
include "Ravl/Image/PCMapping.hh"
Created:07/01/99 
User Level:Normal
Library:RavlImageProc
In Scope:RavlImageN

Parent Classes: Methods:
PCPixMappingC()
Default constructor.

PCPixMappingC(const DListC<PCPixMapC<CurveT>> & oth)
Constructor.

bool WriteGF(ostream & out) const
Write in GF format.

#include "Ravl/DList.hh"
bool IsEmpty() const
Test is the list is empty.

UIntT Size() const
Count the number of elements in the list.
This is slow! It goes through the list counting the elements.

void Reverse()
Reverse the order of the list.

DListC<PCPixMapC<CurveT>> Copy() const
Make a copy of this list.

void InsFirst(const PCPixMapC<CurveT> & dat)
Push element onto the begining of the list.

void InsLast(const PCPixMapC<CurveT> & dat)
Push element onto the end of the list.

PCPixMapC<CurveT> PopFirst()
Pop item off front of list.

PCPixMapC<CurveT> PopLast()
Pop item off end of list.

void DelFirst()
Delete the first element from the list.

void DelLast()
Delete the last element from the list.

void Empty()
Empty the list of all its contents.

DListC<PCPixMapC<CurveT>> & operator +=(const PCPixMapC<CurveT> & dat)
Add element to the end of the list.

DListC<PCPixMapC<CurveT>> & operator +=(const DListC<PCPixMapC<CurveT>> & dat)
Copy contents of other list to end of this one.

void MoveFirst(DListC<PCPixMapC<CurveT>> & lst)
Move the entire contents of 'lst' to the beginning of this one.
this leaves 'lst' empty.

void MoveLast(DListC<PCPixMapC<CurveT>> & lst)
Move the entire contents of 'lst' to the end of this one.
this leaves 'lst' empty.

void MoveFirst(DLIterC<PCPixMapC<CurveT>> & at)
Move the single item 'at' to the beginning of this list.

void MoveLast(DLIterC<PCPixMapC<CurveT>> & at)
Move the single item 'at' to the end of this list.

bool operator ==(const DListC<PCPixMapC<CurveT>> & oth) const
Are lists identical ?
Test if lists have identical content.

bool operator !=(const DListC<PCPixMapC<CurveT>> & oth) const
Are lists different ?
Test if lists have different content.

PCPixMapC<CurveT> & First()
Get first element in list.
NB. List MUST be non-empty.

PCPixMapC<CurveT> & Last()
Get last element in list.
NB. List MUST be non-empty.

const PCPixMapC<CurveT> & First() const
Get first element in list.
NB. List MUST be non-empty.

const PCPixMapC<CurveT> & Last() const
Get last element in list.
NB. List MUST be non-empty.

bool Del(const PCPixMapC<CurveT> & x)
Remove first instance of 'x' found in list.
returns true if the item is found and removed, false otherwise.

bool Contains(const PCPixMapC<CurveT> & x)
Test if this list contains an element == to 'x'.

PCPixMapC<CurveT> & Nth(int n)
Find the nth element in the list.
0 is the first element, 2 the second etc. -1 is the last, -2 second from last.

const PCPixMapC<CurveT> & Nth(int n) const
Find the nth element in the list.
0 is the first element, 2 the second etc. -1 is the last, -2 second from last.

ostream & operator <<(ostream & strm,const DListC<PCPixMapC<CurveT>> & lst)

istream & operator >>(istream & strm,DListC<PCPixMapC<CurveT>> & lst)

BinOStreamC & operator <<(BinOStreamC & strm,const DListC<PCPixMapC<CurveT>> & lst)

BinIStreamC & operator >>(BinIStreamC & strm,DListC<PCPixMapC<CurveT>> & lst)

#include "Ravl/RefCounter.hh"
const RCHandleC<DListBodyC<DataT>> & operator =(const RCHandleC<DListBodyC<DataT>> & oth)
Assign handle.

RCHandleC<DListBodyC<DataT>> DeepCopy(UIntT levels = ((UIntT))) const
Do a deep copy of the object.

bool operator ==(const RCHandleC<DListBodyC<DataT>> & oth) const
Are handles to the same object ?

bool operator !=(const RCHandleC<DListBodyC<DataT>> & oth) const
Are handles to different objects ?

UIntT Hash() const
Default hash function.
This hashes on the address of the body.

bool IsValid() const
Test if this is a valid handle.

void Invalidate()
Invalidate this handle.
Unattaches the body from the handle.

bool IsHandleType(const DT &) const
Is handle of given type ?

void CheckHandleType(const DT & dummy) const
Check handle type. Throw an expception if not.

UIntT References() const
Find the number of references to the body of this object.

ostream & operator <<(ostream & strm,const RCHandleC<DListBodyC<DataT>> & obj)

istream & operator >>(istream & strm,RCHandleC<DListBodyC<DataT>> & obj)


Maintainer:Charles Galambos, Created: 07/01/99, Documentation by CxxDoc: Tue Aug 13 09:59:02 2002