| 66 | protected: |
| 67 | template <class MsgType> |
| 68 | void CheckMessage(typename MsgType::ConstPtr msg) { |
| 69 | if (msg == nullptr) { |
| 70 | throw std::runtime_error( |
| 71 | "Wrong sensor model: '" + std::string(EnumCast::enumToString(GetCameraModel())) + |
| 72 | "' for rgbd cameras! It's incompatible with the type of ros message to load in!"); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | static void InverseMat(cv::Mat &floatMat); |
| 77 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected