Functions | Variables
videoWin32.cpp File Reference
#include <string.h>
#include <AR/video.h>
#include <VisImSrc.h>
Include dependency graph for lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp:

Go to the source code of this file.

Functions

int arVideoCapNext (void)
 call for the next grabbed video frame.
int arVideoCapStart (void)
 start the capture of video.
int arVideoCapStop (void)
 stop the capture of video.
int arVideoClose (void)
 close the video source. After your application has finished using a video stream, this function must be called to close the link to the input source, and free resources associated with the capture operation.
int arVideoDispOption (void)
 display the video option.
unsigned char * arVideoGetImage (void)
 get the video image.
int arVideoInqSize (int *x, int *y)
 get the video image size, in pixels.
int arVideoOpen (char *config)
 open a video source.
static void error_exit (void)

Variables

CVisRGBAByteImage image
static int open_flag = 0
CVisSequence< CVisRGBABytePixel > sequence

Function Documentation

int arVideoCapNext ( void  )

call for the next grabbed video frame.

This function should be called at least once per frame. It has several purposes, depending on the operating system. It allows the video driver to perform housekeeping tasks and also signals to the video grabber that your code has finished using the most recent video frame returned by arVideoGetImage(), and that the video driver may re-use the memory occupied by the frame. The effect of this call is operating-system dependent. The best place to call this function is immediately after you have finished displaying the current video frame, i.e. after calling arglDispImage() or argDispImage().

Remarks:
On some operating systems, this function is a no-op.
Returns:
0 if successful, -1 if the video driver encountered an error.

Definition at line 143 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

int arVideoCapStart ( void  )

start the capture of video.

This function starts the video capture routine.

Remarks:
On some operating systems, capture operations may run in a separate execution thread. This call starts that thread.
this function coupled with arVideoCapStop, can be call many times in your program (this may reduce the CPU load when video processing is stopped or for long and critical operations).
Returns:
0 if successful, -1 if the capture couldn't be started.

Definition at line 127 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

int arVideoCapStop ( void  )

stop the capture of video.

This function stops the video capture routine.

Remarks:
On some operating systems, capture operations may run in a separate execution thread. This call stops that thread.
this function coupled with arVideoCapStart, can be call many times in your program (this may reduce the CPU load when video processing is stopped or for long and critical operations).
Returns:
0 if successful, -1 if the capture couldn't be stopped.

Definition at line 135 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

int arVideoClose ( void  )

close the video source. After your application has finished using a video stream, this function must be called to close the link to the input source, and free resources associated with the capture operation.

Returns:
0 if shut down successfully, otherwise -1.

Definition at line 68 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

int arVideoDispOption ( void  )

display the video option.

The video configuration options vary by operating system and platform. This function outputs to the standard output the options available on the current OS and platform.

Returns:
0

Definition at line 76 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

unsigned char* arVideoGetImage ( void  )

get the video image.

This function returns a buffer with a captured video image. The returned data consists of a tightly-packed array of pixels, beginning with the first component of the leftmost pixel of the topmost row, and continuing with the remaining components of that pixel, followed by the remaining pixels in the topmost row, followed by the leftmost pixel of the second row, and so on. The arrangement of components of the pixels in the buffer is determined by the configuration string passed in to the driver at the time the video stream was opened. If no pixel format was specified in the configuration string, then an operating- system dependent default, defined in <AR/config.h> is used. The memory occupied by the pixel data is owned by the video driver and should not be freed by your program. The pixels in the buffer remain valid until the next call to arVideoCapNext, or the next call to arVideoGetImage which returns a non-NULL pointer, or any call to arVideoCapStop or arVideoClose.

Returns:
A pointer to the pixel data of the captured video frame, or NULL if no new pixel data was available at the time of calling.

Definition at line 95 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

int arVideoInqSize ( int *  x,
int *  y 
)

get the video image size, in pixels.

This function returns the size of the captured video frame, in pixels.

Parameters:
xa pointer to the length of the captured image
ya pointer to the width of the captured image
Returns:
0 if the dimensions are found successfully, otherwise -1

Definition at line 85 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

int arVideoOpen ( char *  config)

open a video source.

This function opens a video input path with the driver (and device) present on your platform. According to your operating system and the hardware the initialization will be different : a generic string structure is used for this issue. This function prepares the video stream for capture, but capture will not actually begin until arVideoCapStart is called.

Parameters:
configstring of the selected video configuration. See the video configuration documentation for more information on this parameter.
Returns:
0 if successful, -1 if a video path couldn't be opened

Definition at line 36 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

static void error_exit ( void  ) [static]

Variable Documentation

CVisRGBAByteImage image

Definition at line 29 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

int open_flag = 0 [static]

Definition at line 24 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

CVisSequence<CVisRGBABytePixel> sequence

Definition at line 28 of file lib/SRC/VideoWin32.DEPRECATED/videoWin32.cpp.

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines


ar_recog
Author(s): Graylin Trevor Jay and Christopher Crick
autogenerated on Fri Jan 25 2013 12:15:01