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.
14 lines
236 B
C
14 lines
236 B
C
|
2 months ago
|
#ifndef IMAGE_UTILITIES_H
|
||
|
|
#define IMAGE_UTILITIES_H
|
||
|
|
|
||
|
|
#include <opencv2/core.hpp>
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
using namespace std;
|
||
|
|
|
||
|
|
cv::Mat block_threshold(const cv::Mat& gray);
|
||
|
|
|
||
|
|
vector<cv::Point> mrect2box(const cv::RotatedRect& mrect);
|
||
|
|
|
||
|
|
#endif
|