Developer Documentation
RAVL, Recognition And Vision Library
USER HOME PAGE CLASS LIST CONTENTS
Ravl - Contrib - Image IO - Video4Linux - DPIImageV4LBodyC<class PixelT>
 

  PUBLIC
DPIImageV4LBodyC::DPIImageV4LBodyC(const StringC &,const ImageRectangleC &,int)
DPIImageV4LBodyC::DPIImageV4LBodyC(const StringC &,bool,int)
DPIImageV4LBodyC::Get(void)
DPIImageV4LBodyC::Get(ImageC &)
DPIImageV4LBodyC::IsGetReady(void) const
DPIImageV4LBodyC::IsGetEOS(void) const
DPIPortBodyC::Get(void)
DPIPortBodyC::Get(DataT &)
DPIPortBodyC::GetArray(SArray1dC &)
DPIPortBodyC::InputType(void) const
DPIPortBodyC::Save(ostream &) const
DPIPortBodyC::Discard(void)
DPIImageBaseV4LBodyC::Open(const StringC &,const type_info &,const ImageRectangleC &)
DPIImageBaseV4LBodyC::Open1(int,const type_info &,const ImageRectangleC &)
DPIImageBaseV4LBodyC::Close(void)
DPIImageBaseV4LBodyC::NextPre(void)
DPIImageBaseV4LBodyC::NextPost(void)
DPIImageBaseV4LBodyC::NextFrame(ImageC &)
DPIImageBaseV4LBodyC::NextFrame(ImageC &)
DPIImageBaseV4LBodyC::NextFrame(ImageC &)
DPIImageBaseV4LBodyC::NextFrame(ImageC &)
DPIImageBaseV4LBodyC::SetupPhilips(void)
DPIPortBaseBodyC::IsGetReady(void) const
DPIPortBaseBodyC::IsGetEOS(void) const
DPIPortBaseBodyC::InputType(void) const
DPIPortBaseBodyC::Save(ostream &) const
DPIPortBaseBodyC::Discard(void)
DPPortBodyC::IsAsync(void) const
DPPortBodyC::Save(ostream &) const
DPPortBodyC::ConnectedTo(void) const
DPPortBodyC::GetAttr(const StringC &,StringC &)
DPPortBodyC::SetAttr(const StringC &,const StringC &)
DPEntityBodyC::Save(ostream &) const
DPEntityBodyC::Save(BinOStreamC &) const
DPEntityBodyC::Copy(void) const
RCBodyVC::Save(ostream &) const
RCBodyVC::Save(BinOStreamC &) const
RCBodyVC::Copy(void) const
RCBodyVC::DeepCopy(UIntT) const
RCBodyC::References(void) const
RCBodyC::Copy(void) const
RCBodyC::DeepCopy(UIntT) const
RCBodyC::IncRefCounter(void)
RCBodyC::DecRefCounter(void)

   DPIImageV4LBodyC<class PixelT>   
 
V4L frame grabber.
 
include "Ravl/Image/ImgIOV4L.hh"
Source file:Contrib/V4L/ImgIOV4L.hh
User Level:Develop
Library:RavlImgIOV4L
In Scope:RavlImageN

Parent Classes: Methods:
DPIImageV4LBodyC(const StringC & dev,const ImageRectangleC & nrect = ImageRectangleC (0),int channel = - 1)
Constructor.

DPIImageV4LBodyC(const StringC & dev,bool half,int channel = - 1)
Constructor.

ImageC<PixelT> Get()
Get next image.

bool Get(ImageC<PixelT> & buff)
Get next image.

bool IsGetReady() const
Is some data ready ?
true = yes. Defaults to !IsGetEOS().

bool IsGetEOS() const
Has the End Of Stream been reached ?
true = yes.

#include "Ravl/DP/Port.hh"
ImageC<PixelT> Get()
Get next piece of data.
May block if not ready, or it could throw an DataNotReadyC exception. NB. This function MUST be provided by client class.

bool Get(ImageC<PixelT> & buff)
Try and get next piece of data.
This may not NOT block, if no data is ready it will return false, and not set buff. NB. The default version of this function uses the Get() method defined above and so need not be provided by derived classes.

IntT GetArray(SArray1dC<ImageC<PixelT>> & data)
Get an array of data from stream.
returns the number of elements succesfully processed. NB. This need NOT be overridden in client classes unless fast handling of arrays of data elements is required.

const type_info & InputType() const
Input type.

bool Save(ostream & out) const
Save to ostream.

bool Discard()
Discard the next input datum.

#include "Ravl/Image/ImgIOV4L.hh"
bool Open(const StringC & dev,const type_info & npixType,const ImageRectangleC & nrect)
Open a video for linux device.

bool Open1(int nfd,const type_info & npixType,const ImageRectangleC & nrect)
Open a video for linux 1 device.

bool Close()
Close connection to meteor.

bool NextPre()
Pre next frame capture.

bool NextPost()
Post next frame capture.

bool NextFrame(ImageC<ByteYUV422ValueC> & ret)
Get next YUV frame from grabber.

bool NextFrame(ImageC<ByteYUVValueC> & ret)
Get next YUV frame from grabber.

bool NextFrame(ImageC<ByteRGBValueC> & ret)
Get next RGB frame from grabber.

bool NextFrame(ImageC<ByteT> & ret)
Get next grey level frame from grabber.

bool SetupPhilips()
Setup a philips webcam.

#include "Ravl/DP/Port.hh"
bool IsGetReady() const
Is some data ready ?
true = yes. Defaults to !IsGetEOS().

bool IsGetEOS() const
Has the End Of Stream been reached ?
true = yes.

const type_info & InputType() const
Input type.

bool Save(ostream & out) const
Save to ostream.

bool Discard()
Discard the next input datum.

bool IsAsync() const
Does port work asynchronously ?

bool Save(ostream & out) const
Save to ostream.

DPPortC ConnectedTo() const
Is this port connected to another ?
If not returns invalid handle.

bool GetAttr(const StringC & attrName,StringC & attrValue)
Get a stream attribute.
Returns false if the attribute name is unknown. This is for handling stream attributes such as frame rate, and compression ratios.

bool SetAttr(const StringC & attrName,const StringC & attrValue)
Set a stream attribute.
Returns false if the attribute name is unknown. This is for handling stream attributes such as frame rate, and compression ratios.

#include "Ravl/DP/Entity.hh"
bool Save(ostream & out) const
Save to ostream.

bool Save(BinOStreamC & out) const
Save to binary stream.

RCBodyVC & Copy() const
Creat a copy of this object.

#include "Ravl/RCHandleV.hh"
bool Save(ostream & out) const
Save to stream 'out'.

bool Save(BinOStreamC & out) const
Save to binary stream 'out'.

RCBodyVC & Copy() const
Make copy of body.
This should be provided in derived classes. this funtion will issue an assertion failure if called.

RCBodyC & DeepCopy(UIntT levels = ((UIntT))) const
Make a deep copy of body.
This should be provided in derived classes. this funtion will issue an assertion failure if called.

#include "Ravl/RefCounter.hh"
UIntT References() const
Access count of handles open to this object.

RCBodyC & Copy() const
Make copy of body.
This should be provided in derived classes. this funtion will issue an assertion failure if called.

RCBodyC & DeepCopy(UIntT levels = ((UIntT))) const
Make a deep copy of body.
This should be provided in derived classes. this funtion will issue an assertion failure if called.

void IncRefCounter()
Increment reference counter.

bool DecRefCounter()
Decrement reference counter.


Maintainer:Charles Galambos, Documentation by CxxDoc: Tue Aug 13 09:59:30 2002