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.
19 lines
326 B
C
19 lines
326 B
C
![]()
8 years ago
|
//
|
||
|
// Created by 庾金科 on 22/09/2017.
|
||
|
//
|
||
|
|
||
|
#ifndef SWIFTPR_FASTDESKEW_H
|
||
|
#define SWIFTPR_FASTDESKEW_H
|
||
|
|
||
|
#include <math.h>
|
||
|
#include <opencv2/opencv.hpp>
|
||
|
namespace pr{
|
||
|
|
||
|
cv::Mat fastdeskew(cv::Mat skewImage,int blockSize);
|
||
|
// cv::Mat spatialTransformer(cv::Mat skewImage);
|
||
|
|
||
|
}//namepace pr
|
||
|
|
||
|
|
||
|
#endif //SWIFTPR_FASTDESKEW_H
|