| 226 | } |
| 227 | |
| 228 | bool ControllerAgent::get_resolution(int32_t& width, int32_t& height) const |
| 229 | { |
| 230 | if (image_raw_width_ == 0 || image_raw_height_ == 0) { |
| 231 | return false; |
| 232 | } |
| 233 | |
| 234 | width = image_raw_width_; |
| 235 | height = image_raw_height_; |
| 236 | return true; |
| 237 | } |
| 238 | |
| 239 | json::object ControllerAgent::get_info() const |
| 240 | { |
nothing calls this directly
no outgoing calls
no test coverage detected