#include "utils.h" double distanceBetweenRobotAndTag(const cv::Mat& a) { return sqrt(pow(a.at(0, 0), 2) + pow(a.at(1, 0), 2) + pow(a.at(2, 0), 2)); }