| 66 | } |
| 67 | |
| 68 | void init_argv(std::vector<std::string> argv) |
| 69 | { |
| 70 | try |
| 71 | { |
| 72 | argv.insert(argv.begin(), "openpose.py"); |
| 73 | parse_gflags(argv); |
| 74 | } |
| 75 | catch (const std::exception& e) |
| 76 | { |
| 77 | error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | class WrapperPython{ |
| 82 | public: |
nothing calls this directly
no test coverage detected