-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathimage_utils.cpp
More file actions
87 lines (80 loc) · 2.69 KB
/
Copy pathimage_utils.cpp
File metadata and controls
87 lines (80 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Copyright 2020 robomaster-oss.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "rmoss_util/image_utils.hpp"
#include <vector>
namespace rmoss_util
{
float calc_inclination_angle(cv::Point2f point1, cv::Point2f point2)
{
float angle;
if (point1.x == point2.x) {
return CV_PI / 2;
} else {
double k;
k = -(point1.y - point2.y) / (point1.x - point2.x); // 符号取反,图像坐标系和实际坐标系不统一
angle = static_cast<float>(atan(k));
}
if (angle < 0) {
angle = angle + CV_PI;
}
return angle;
}
float calc_inner_angle(cv::Point2f vertex_point, cv::Point2f point1, cv::Point2f point2)
{
auto a = cv::norm(vertex_point - point1);
auto b = cv::norm(vertex_point - point2);
auto c = cv::norm(point1 - point2);
auto angle_c = static_cast<float>(acos((a * a + b * b - c * c) / (2 * a * b)));
return angle_c;
}
bool calc_circle_from_3points(
cv::Point2f p1, cv::Point2f p2, cv::Point2f p3, cv::Point2f & point, float & r)
{
double a, b, c, d, e, f;
a = 2 * (p2.x - p1.x);
b = 2 * (p2.y - p1.y);
c = p2.x * p2.x + p2.y * p2.y - p1.x * p1.x - p1.y * p1.y;
d = 2 * (p3.x - p2.x);
e = 2 * (p3.y - p2.y);
f = p3.x * p3.x + p3.y * p3.y - p2.x * p2.x - p2.y * p2.y;
point.x = (b * f - e * c) / (b * d - e * a);
point.y = (d * c - a * f) / (b * d - e * a);
r = sqrt((point.x - p1.x) * (point.x - p1.x) + (point.y - p1.y) * (point.y - p1.y)); // 半径
return true;
}
// 绘制旋转矩形
void draw_rotated_rect(cv::Mat & img, cv::RotatedRect r, cv::Scalar color)
{
cv::Point2f rect_points[4];
r.points(rect_points);
for (int j = 0; j < 4; j++) {
cv::line(img, rect_points[j], rect_points[(j + 1) % 4], color, 1, 8);
}
}
// 绘制四边形
void draw_4points(cv::Mat & img, cv::Point2f * point2fs, cv::Scalar color)
{
for (int j = 0; j < 4; j++) {
cv::line(img, point2fs[j], point2fs[(j + 1) % 4], color, 1, 8);
}
}
// 绘制多边形
void draw_convex_hull(cv::Mat & img, std::vector<cv::Point2f> & points, cv::Scalar color)
{
for (size_t j = 0; j < points.size() - 1; j++) {
cv::line(img, points[j], points[j + 1], color, 1, 8);
}
cv::line(img, points[0], points[points.size() - 1], color, 1, 8);
}
} // namespace rmoss_util