29 lines
529 B
C
29 lines
529 B
C
//
|
|
// Created by xinyang on 19-3-27.
|
|
//
|
|
|
|
#ifndef _OPTIONS_H_
|
|
#define _OPTIONS_H_
|
|
|
|
#ifndef PROJECT_DIR
|
|
#define PROJECT_DIR ""
|
|
#endif
|
|
|
|
extern bool show_armor_box;
|
|
extern bool show_armor_boxes;
|
|
extern bool show_light_blobs;
|
|
extern bool show_origin;
|
|
extern bool run_with_camera;
|
|
extern bool save_video;
|
|
extern bool wait_uart;
|
|
extern bool save_labelled_boxes;
|
|
extern bool show_process;
|
|
extern bool save_mark;
|
|
extern bool show_info;
|
|
extern bool run_by_frame;
|
|
|
|
|
|
void processOptions(int argc, char **argv);
|
|
|
|
#endif /* _OPTIONS_H_ */
|