Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
18904036
Commit
18904036
authored
Mar 13, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3825 from alalek:fix_msvs2010_build
parents
74e88cc0
50b99e5a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
introduction_to_pca.cpp
...orial_code/ml/introduction_to_pca/introduction_to_pca.cpp
+1
-1
No files found.
samples/cpp/tutorial_code/ml/introduction_to_pca/introduction_to_pca.cpp
View file @
18904036
...
...
@@ -23,7 +23,7 @@ void drawAxis(Mat& img, Point p, Point q, Scalar colour, const float scale = 0.2
double
angle
;
double
hypotenuse
;
angle
=
atan2
(
(
double
)
p
.
y
-
q
.
y
,
(
double
)
p
.
x
-
q
.
x
);
// angle in radians
hypotenuse
=
sqrt
(
(
p
.
y
-
q
.
y
)
*
(
p
.
y
-
q
.
y
)
+
(
p
.
x
-
q
.
x
)
*
(
p
.
x
-
q
.
x
));
hypotenuse
=
sqrt
(
(
double
)
(
p
.
y
-
q
.
y
)
*
(
p
.
y
-
q
.
y
)
+
(
p
.
x
-
q
.
x
)
*
(
p
.
x
-
q
.
x
));
// double degrees = angle * 180 / CV_PI; // convert radians to degrees (0-180 range)
// cout << "Degrees: " << abs(degrees - 180) << endl; // angle in 0-360 degrees range
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment