2 #include <visp3/core/vpConfig.h>
3 #include <visp3/core/vpImage.h>
4 #include <visp3/gui/vpDisplayFactory.h>
5 #include <visp3/io/vpImageStorageWorker.h>
6 #include <visp3/sensor/vpPylonFactory.h>
8 void usage(
const char *argv[],
int error)
10 std::cout <<
"SYNOPSIS" << std::endl
11 <<
" " << argv[0] <<
" [--device <index>]"
12 <<
" [--type <device type>]"
13 <<
" [--seqname <sequence name>]"
14 <<
" [--record <mode>]"
16 <<
" [--help] [-h]" << std::endl
18 std::cout <<
"DESCRIPTION" << std::endl
19 <<
" --device <index> " << std::endl
20 <<
" Camera device index in range [0...9]. Set 0 to dial with the first camera," << std::endl
21 <<
" and 1 to dial with the second camera attached to the computer." << std::endl
22 <<
" Default: 0." << std::endl
24 <<
" --type <device type>" << std::endl
25 <<
" Camera device type: GigE or USB" << std::endl
26 <<
" Default: GigE" << std::endl
28 <<
" --seqname <sequence name>" << std::endl
29 <<
" Name of the sequence of image to create (ie: /tmp/image%04d.jpg)." << std::endl
30 <<
" Default: empty." << std::endl
32 <<
" --record <mode>" << std::endl
33 <<
" Allowed values for mode are:" << std::endl
34 <<
" 0: record all the captures images (continuous mode)," << std::endl
35 <<
" 1: record only images selected by a user click (single shot mode)." << std::endl
36 <<
" Default mode: 0" << std::endl
38 <<
" --no-display" << std::endl
39 <<
" Disable displaying captured images." << std::endl
40 <<
" When used and sequence name specified, record mode is internally set to 1 (continuous mode)."
43 <<
" --help, -h" << std::endl
44 <<
" Print this helper message." << std::endl
46 std::cout <<
"USAGE" << std::endl
47 <<
" Example to visualize images:" << std::endl
48 <<
" " << argv[0] << std::endl
50 <<
" Example to visualize images from a second camera GigE:" << std::endl
51 <<
" " << argv[0] <<
" --device 1 --type GigE" << std::endl
53 <<
" Examples to record a sequence:" << std::endl
54 <<
" " << argv[0] <<
" --seqname I%04d.png" << std::endl
55 <<
" " << argv[0] <<
" --seqname folder/I%04d.png --record 0" << std::endl
57 <<
" Examples to record single shot images:\n"
58 <<
" " << argv[0] <<
" --seqname I%04d.png --record 1\n"
59 <<
" " << argv[0] <<
" --seqname folder/I%04d.png --record 1" << std::endl
63 std::cout <<
"Error" << std::endl
65 <<
"Unsupported parameter " << argv[error] << std::endl;
73 int main(
int argc,
const char *argv[])
75 #if defined(VISP_HAVE_PYLON) && defined(VISP_HAVE_THREADS)
76 #ifdef ENABLE_VISP_NAMESPACE
79 #if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
80 std::shared_ptr<vpDisplay> display;
85 unsigned int opt_device = 0;
86 std::string opt_type(
"GigE");
87 std::string opt_seqname;
88 int opt_record_mode = 0;
89 bool opt_change_settings =
false;
90 bool opt_display =
true;
92 for (
int i = 1; i < argc; i++) {
93 if (std::string(argv[i]) ==
"--device" && i + 1 < argc) {
94 opt_device = std::atoi(argv[++i]);
97 if (std::string(argv[i]) ==
"--type" && i + 1 < argc) {
98 opt_type = std::string(argv[++i]);
101 else if (std::string(argv[i]) ==
"--seqname" && i + 1 < argc) {
102 opt_seqname = std::string(argv[++i]);
105 else if (std::string(argv[i]) ==
"--record" && i + 1 < argc) {
106 opt_record_mode = std::atoi(argv[++i]);
109 else if (std::string(argv[i]) ==
"--no-display") {
112 else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
122 if ((!opt_display) && (!opt_seqname.empty())) {
126 std::cout <<
"Settings : " << (opt_change_settings ?
"modified" :
"current") << std::endl;
127 std::cout <<
"Recording : " << (opt_seqname.empty() ?
"disabled" :
"enabled") << std::endl;
128 std::cout <<
"Display : " << (opt_display ?
"enabled" :
"disabled") << std::endl;
130 std::string text_record_mode =
131 std::string(
"Record mode: ") + (opt_record_mode ? std::string(
"single") : std::string(
"continuous"));
133 if (!opt_seqname.empty()) {
134 std::cout << text_record_mode << std::endl;
135 std::cout <<
"Record name: " << opt_seqname << std::endl;
143 if (opt_type ==
"GigE" || opt_type ==
"gige") {
145 std::cout <<
"Opening Basler GigE camera: " << opt_device << std::endl;
147 else if (opt_type ==
"USB" || opt_type ==
"usb") {
149 std::cout <<
"Opening Basler USB camera: " << opt_device << std::endl;
152 std::cout <<
"Error: only Basler GigE or USB cameras are supported." << std::endl;
159 std::cout <<
"Image size : " << I.
getWidth() <<
" " << I.
getHeight() << std::endl;
162 #if !(defined(VISP_HAVE_DISPLAY))
163 std::cout <<
"No image viewer is available..." << std::endl;
168 #if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
175 vpImageQueue<vpRGBa> image_queue(opt_seqname, opt_record_mode);
186 quit = image_queue.record(I);
188 std::stringstream ss;
193 image_queue.cancel();
194 image_storage_thread.join();
197 std::cout <<
"Catch an exception: " << e << std::endl;
200 #if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
201 if (display !=
nullptr) {
208 #ifndef VISP_HAVE_PYLON
209 std::cout <<
"Install Basler Pylon SDK, configure and build ViSP again to use this example" << std::endl;
211 #if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
212 std::cout <<
"This tutorial should be built with c++11 support" << std::endl;
Class that defines generic functionalities for display.
static void display(const vpImage< unsigned char > &I)
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
error that can be emitted by ViSP classes.
unsigned int getWidth() const
unsigned int getHeight() const
Factory singleton class to create vpPylonGrabber subclass instances.
static vpPylonFactory & instance()
Get the vpPylonFactory singleton.
@ BASLER_GIGE
Basler GigE camera.
@ BASLER_USB
Basler USB camera.
vpPylonGrabber * createPylonGrabber(DeviceClass dev_class)
Create an object of vpPylonGrabber.
virtual void acquire(vpImage< unsigned char > &I)=0
virtual void open(vpImage< unsigned char > &I)=0
virtual void setCameraIndex(unsigned int index)=0
std::shared_ptr< vpDisplay > createDisplay()
Return a smart pointer vpDisplay specialization if a GUI library is available or nullptr otherwise.
vpDisplay * allocateDisplay()
Return a newly allocated vpDisplay specialization if a GUI library is available or nullptr otherwise.
VISP_EXPORT double measureTimeMs()