The VisAO Camera
framewriterUC_main.cpp
1 /************************************************************
2 * framewriter_main.cpp
3 *
4 * Author: Jared R. Males (jrmales@email.arizona.edu)
5 *
6 * The main program for the frame writer of unsigned char data type.
7 *
8 * Developed as part of the Magellan Adaptive Optics system.
9 ************************************************************/
10 
11 /** \file framewriter_main.cpp
12  * \author Jared R. Males
13  * \brief The main program for the frame writer of unsigned char data type.
14  *
15 */
16 
17 #include "framewriter.h"
18 
19 #define VISAO_APP_TYPE VisAO::framewriter<unsigned char>
20 #define VISAO_APP_NAME "framewriter39"
21 #include "VisAO_main.h"
22 
23 int main(int argc, char **argv)
24 {
25  return VisAO_main(argc, argv);
26 }
27 
28 
Declarations for a class for writing image frames from shared memory to disk.
The main program for a VisAO application.