20 lines
374 B
C
20 lines
374 B
C
//
|
|
// Created by xinyang on 19-3-27.
|
|
//
|
|
|
|
#ifndef _OPTIONS_H_
|
|
#define _OPTIONS_H_
|
|
|
|
extern bool show_armor_box;
|
|
extern bool show_armor_boxes;
|
|
extern bool show_light_blobs;
|
|
extern bool show_origin;
|
|
extern bool save_labelled;
|
|
extern bool run_with_camera;
|
|
extern bool save_video;
|
|
extern bool collect_data;
|
|
|
|
void process_options(int argc, char *argv[]);
|
|
|
|
#endif /* _OPTIONS_H_ */
|