| 106 | #endif |
| 107 | |
| 108 | int main(int argc, char *argv[]) |
| 109 | { |
| 110 | #ifdef USE_CUDA |
| 111 | // Parsing command line flags |
| 112 | gflags::ParseCommandLineFlags(&argc, &argv, true); |
| 113 | |
| 114 | // Running handFromJsonTest |
| 115 | return resizeTest(); |
| 116 | #else |
| 117 | op::error("OpenPose must be compiled with the `USE_CAFFE` & `USE_CUDA` macro definitions in order to run" |
| 118 | " this functionality.", __LINE__, __FUNCTION__, __FILE__); |
| 119 | return 0; |
| 120 | #endif |
| 121 | } |
nothing calls this directly
no test coverage detected