#include <visp3/core/vpConfig.h>
#include <visp3/core/vpImage.h>
#include <visp3/gui/vpDisplayFactory.h>
#include <visp3/io/vpVideoWriter.h>
#include <visp3/sensor/vp1394TwoGrabber.h>
int main(int argc, char **)
{
#ifdef VISP_HAVE_DC1394
#ifdef ENABLE_VISP_NAMESPACE
#endif
#ifdef VISP_HAVE_DISPLAY
#else
std::cout << "No image viewer is available..." << std::endl;
#endif
try {
bool save = false;
if (argc == 2) {
save = true;
}
bool reset = true;
if (save)
#ifdef VISP_HAVE_DISPLAY
while (1)
#else
for (unsigned int i = 0; i < 1000; ++i)
#endif
{
if (save)
#ifdef VISP_HAVE_DISPLAY
break;
}
#endif
}
if (save) {
}
}
std::cout << "Catch an exception: " << e << std::endl;
}
#ifdef VISP_HAVE_DISPLAY
if (d != nullptr) {
delete d;
}
#endif
#else
(void)argc;
#endif
return EXIT_SUCCESS;
}
Class for firewire ieee1394 video devices using libdc1394-2.x api.
void acquire(vpImage< unsigned char > &I)
void setVideoMode(vp1394TwoVideoModeType videomode)
@ vpVIDEO_MODE_640x480_MONO8
void setFramerate(vp1394TwoFramerateType fps)
void open(vpImage< unsigned char > &I)
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="") VP_OVERRIDE
Class that defines generic functionalities for display.
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void flush(const vpImage< unsigned char > &I)
error that can be emitted by ViSP classes.
unsigned int getWidth() const
unsigned int getHeight() const
Class that enables to write easily a video file or a sequence of images.
void saveFrame(vpImage< vpRGBa > &I)
void setFileName(const std::string &filename)
void open(vpImage< vpRGBa > &I)
vpDisplay * allocateDisplay()
Return a newly allocated vpDisplay specialization if a GUI library is available or nullptr otherwise.