| 38 | { |
| 39 | public: |
| 40 | GraphVDSRExample() : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "VDSR") |
| 41 | { |
| 42 | model_input_width = cmd_parser.add_option<SimpleOption<unsigned int>>("image-width", 192); |
| 43 | model_input_height = cmd_parser.add_option<SimpleOption<unsigned int>>("image-height", 192); |
| 44 | |
| 45 | // Add model id option |
| 46 | model_input_width->set_help("Input image width."); |
| 47 | model_input_height->set_help("Input image height."); |
| 48 | } |
| 49 | GraphVDSRExample(const GraphVDSRExample &) = delete; |
| 50 | GraphVDSRExample &operator=(const GraphVDSRExample &) = delete; |
| 51 | ~GraphVDSRExample() override = default; |