#include <iostream>
#include <visp3/core/vpImageConvert.h>
#include <visp3/core/vpMutex.h>
#include <visp3/core/vpThread.h>
#include <visp3/core/vpTime.h>
#include <visp3/gui/vpDisplayX.h>
#include <visp3/sensor/vpV4l2Grabber.h>
#if defined(VISP_HAVE_V4L2) && defined(VISP_HAVE_PTHREAD)
typedef enum {
capture_waiting,
capture_started,
capture_stopped
} t_CaptureState;
t_CaptureState s_capture_state = capture_waiting;
{
bool stop_capture_ = false;
{
if (s_capture_state == capture_stopped)
stop_capture_ = true;
else
s_capture_state = capture_started;
s_frame = frame_;
}
}
{
s_capture_state = capture_stopped;
}
std::cout << "End of capture thread" << std::endl;
return 0;
}
{
(void)args;
t_CaptureState capture_state_;
bool display_initialized_ = false;
#if defined(VISP_HAVE_X11)
#endif
do {
capture_state_ = s_capture_state;
if (capture_state_ == capture_started) {
{
I_ = s_frame;
}
if (! display_initialized_) {
#if defined(VISP_HAVE_X11)
display_initialized_ = true;
#endif
}
s_capture_state = capture_stopped;
}
}
else {
}
} while(capture_state_ != capture_stopped);
#if defined(VISP_HAVE_X11)
delete d_;
#endif
std::cout << "End of display thread" << std::endl;
return 0;
}
int main(int argc, const char* argv[])
{
unsigned int opt_device = 0;
unsigned int opt_scale = 2;
for (int i=0; i<argc; i++) {
if (std::string(argv[i]) == "--device")
opt_device = (unsigned int)atoi(argv[i+1]);
else if (std::string(argv[i]) == "--scale")
opt_scale = (unsigned int)atoi(argv[i+1]);
else if (std::string(argv[i]) == "--help") {
std::cout << "Usage: " << argv[0] << " [--device <camera device>] [--scale <subsampling factor>] [--help]" << std::endl;
return 0;
}
}
std::ostringstream device;
device << "/dev/video" << opt_device;
thread_capture.join();
thread_display.join();
return 0;
}
#else
int main()
{
# ifndef VISP_HAVE_V4L2
std::cout << "You should enable V4L2 to make this example working..." << std::endl;
# elif !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) // UNIX
std::cout << "You should enable pthread usage and rebuild ViSP..." << std::endl;
# else
std::cout << "Multi-threading seems not supported on this platform" << std::endl;
# endif
}
#endif