blob: c903760dec4aee9833498511ac3f971f93cb4da1 [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(
Jim Ostrowskiddebdcb2024-02-29 22:25:36 -080012 const y2024::Constants &calibration_data, std::string_view node_name,
13 int camera_number);
Jim Ostrowskicb8b4082024-01-21 02:23:46 -080014
15} // namespace y2024::vision
16
17#endif // Y2024_VISION_VISION_UTIL_H_