| 33 | struct frame |
| 34 | { |
| 35 | frame(const std::string &img_path, |
| 36 | const std::string &mask_img_path, |
| 37 | const double timestamp) |
| 38 | : img_path_(img_path), |
| 39 | mask_img_path_(mask_img_path), |
| 40 | timestamp_(timestamp){}; |
| 41 | |
| 42 | const std::string img_path_; |
| 43 | const std::string mask_img_path_; |
nothing calls this directly
no outgoing calls
no test coverage detected