User Documentation
RAVL, Recognition And Vision Library
DEVELOP HOME PAGE CLASS LIST CONTENTS
Ravl - Contrib - Image IO - Meteor1


Interface to Meteor1 frame grabber

This adds a new virtual file @METEOR1 which can be used to access matrox's meteor 1 frame grabber. In order to use this interface you must have the driver installed, it can be found at http://home.att.net/~marksu/meteorman.html.

NOTE: To use the Video4Linux driver you must include the library RavlImgIOMeteor1 in your USESLIBS line of the defs.mk

The following code can then be used for grabbing a single image (See Ravl.Core.IO):

      ImageC<ByteYUVValueC> x;
      Load("@METEOR1:/dev/meteor0", x);
    
or a seqence (See Ravl.OS.Sequence)
    DPIPortC<ImageC<ByteYUVValueC> > in;
    if(!OpenISequence(in,"@METEOR1:/dev/meteor0")) {
      // Failed to open input file.
      // Report an error...
    }
    ImageC<ByteYUVValueC>  value;
    while(in.Get(value)) {
      // Process your data...
    }

    

Normal classes:

 DPIImageMeteor1C Meteor1 frame grabber.

Advanced classes:

 FileFormatMeteor1C Create an instance of a Meteor1 File Format.
Documentation by CxxDoc: Tue Aug 13 10:00:52 2002