mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-20 15:08:40 +00:00
95 lines
3.0 KiB
C++
95 lines
3.0 KiB
C++
/**
|
|
* Karaka
|
|
*
|
|
* @package Image
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
#ifndef IMAGE_SKEW_H
|
|
#define IMAGE_SKEW_H
|
|
|
|
#include <stdio.h>
|
|
#include <opencv2/opencv.hpp>
|
|
#include <vector>
|
|
|
|
#include "../Utils/MathUtils.h"
|
|
|
|
namespace Image {
|
|
class Skew {
|
|
private:
|
|
|
|
public:
|
|
static
|
|
cv::Mat deskewHoughLines(cv::Mat in, int maxDegree = 45)
|
|
{
|
|
cv::Size dim = in.size();
|
|
|
|
cv::Mat inv;
|
|
cv::cvtColor(in, inv, cv::COLOR_BGR2GRAY);
|
|
cv::threshold(inv, inv, 0, 255, cv::THRESH_BINARY_INV | cv::THRESH_OTSU);
|
|
|
|
std::vector<cv::Vec4i> lines;
|
|
cv::HoughLinesP(inv, lines, 1.0, OMS_PI / 180, 200, dim.width / 12, dim.width / 150);
|
|
|
|
int imageOrientation = 0; // > 0 -> image is horizontal
|
|
|
|
std::vector<float> tmpAngles;
|
|
for (int i = 0; i < lines.size(); ++i) {
|
|
float angle = atan2(lines[i][3] - lines[i][1], lines[i][2] - lines[i][0]);
|
|
tmpAngles.push_back(angle);
|
|
|
|
imageOrientation += oms_abs(angle) > OMS_PI / 4 ? 1 : -1;
|
|
}
|
|
|
|
std::vector<float> angles;
|
|
for (int i = 0; i < tmpAngles.size(); ++i) {
|
|
if (imageOrientation > 0) {
|
|
if (oms_deg2rad(90 - maxDegree) < oms_abs(tmpAngles[i]) && oms_abs(tmpAngles[i]) < oms_deg2rad(90 + maxDegree)) {
|
|
angles.push_back(tmpAngles[i]);
|
|
}
|
|
} else {
|
|
if (oms_abs(tmpAngles[i]) < oms_deg2rad(maxDegree)) {
|
|
angles.push_back(tmpAngles[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (angles.size() < 5) {
|
|
return in;
|
|
}
|
|
|
|
float median = 0.0;
|
|
for (int i = 0; i < angles.size(); ++i) {
|
|
median += angles[i];
|
|
}
|
|
|
|
float angleDeg = oms_rad2deg(median / angles.size());
|
|
|
|
cv::Mat orientFix;
|
|
if (imageOrientation > 0) {
|
|
if (angleDeg < 0) {
|
|
cv::rotate(in, orientFix, cv::ROTATE_90_CLOCKWISE);
|
|
angleDeg += 90.0;
|
|
} else if (angleDeg > 0) {
|
|
cv::rotate(in, orientFix, cv::ROTATE_90_COUNTERCLOCKWISE);
|
|
angleDeg -= 90.0;
|
|
} else {
|
|
orientFix = in;
|
|
}
|
|
} else {
|
|
orientFix = in;
|
|
}
|
|
|
|
cv::Mat rot = cv::getRotationMatrix2D(cv::Point2f(dim.width / 2, dim.height / 2), angleDeg, 1.0);
|
|
|
|
cv::Mat out;
|
|
cv::warpAffine(orientFix, out, rot, dim, cv::INTER_LINEAR, cv::BORDER_REPLICATE);
|
|
|
|
return out;
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif |