You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
273 B
C++

#ifndef ADJUST_IMAGE_H
#define ADJUST_IMAGE_H
#include <opencv2/core.hpp>
#include <vector>
#include <string>
#include <tuple>
#include "../common.h"
using namespace std;
tuple<cv::Mat, int, ShapeInfo> adjust_img(const cv::Mat& img, const ShapeInfo& shapeinfo);
#endif