blob: d8fa5625a74eb64a381859158056a4b49ed43a7a [file] [log] [blame]
Jim Ostrowskicb8b4082024-01-21 02:23:46 -08001#ifndef Y2024_VISION_VISION_UTIL_H_
2#define Y2024_VISION_VISION_UTIL_H_
3#include <string_view>
4
5#include "opencv2/imgproc.hpp"
6
7#include "y2024/constants/constants_generated.h"
8
9namespace y2024::vision {
10
11const frc971::vision::calibration::CameraCalibration *FindCameraCalibration(
12 const y2024::Constants &calibration_data, std::string_view node_name);
13
14} // namespace y2024::vision
15
16#endif // Y2024_VISION_VISION_UTIL_H_