forked from spmallick/learnopencv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
#include <opencv2/opencv.hpp> | ||
|
||
using namespace std; | ||
using namespace cv; | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
|
||
// Read input image | ||
cv::Mat im = cv::imread("headPose.jpg"); | ||
|
||
// 2D image points. If you change the image, you need to change vector | ||
std::vector<cv::Point2d> image_points; | ||
image_points.push_back( cv::Point2d(359, 391) ); // Nose tip | ||
image_points.push_back( cv::Point2d(399, 561) ); // Chin | ||
image_points.push_back( cv::Point2d(337, 297) ); // Left eye left corner | ||
image_points.push_back( cv::Point2d(513, 301) ); // Right eye right corner | ||
image_points.push_back( cv::Point2d(345, 465) ); // Left Mouth corner | ||
image_points.push_back( cv::Point2d(453, 469) ); // Right mouth corner | ||
|
||
// 3D model points. | ||
std::vector<cv::Point3d> model_points; | ||
model_points.push_back(cv::Point3d(0.0f, 0.0f, 0.0f)); // Nose tip | ||
model_points.push_back(cv::Point3d(0.0f, -330.0f, -65.0f)); // Chin | ||
model_points.push_back(cv::Point3d(-225.0f, 170.0f, -135.0f)); // Left eye left corner | ||
model_points.push_back(cv::Point3d(225.0f, 170.0f, -135.0f)); // Right eye right corner | ||
model_points.push_back(cv::Point3d(-150.0f, -150.0f, -125.0f)); // Left Mouth corner | ||
model_points.push_back(cv::Point3d(150.0f, -150.0f, -125.0f)); // Right mouth corner | ||
|
||
// Camera internals | ||
double focal_length = im.cols; // Approximate focal length. | ||
Point2d center = cv::Point2d(im.cols/2,im.rows/2); | ||
cv::Mat camera_matrix = (cv::Mat_<double>(3,3) << focal_length, 0, center.x, 0 , focal_length, center.y, 0, 0, 1); | ||
cv::Mat dist_coeffs = cv::Mat::zeros(4,1,cv::DataType<double>::type); // Assuming no lens distortion | ||
|
||
cout << "Camera Matrix " << endl << camera_matrix << endl ; | ||
// Output rotation and translation | ||
cv::Mat rotation_vector; // Rotation in axis-angle form | ||
cv::Mat translation_vector; | ||
|
||
// Solve for pose | ||
cv::solvePnP(model_points, image_points, camera_matrix, dist_coeffs, rotation_vector, translation_vector); | ||
|
||
|
||
// Project a 3D point (0, 0, 1000.0) onto the image plane. | ||
// We use this to draw a line sticking out of the nose | ||
|
||
vector<Point3d> nose_end_point3D; | ||
vector<Point2d> nose_end_point2D; | ||
nose_end_point3D.push_back(Point3d(0,0,1000.0)); | ||
|
||
projectPoints(nose_end_point3D, rotation_vector, translation_vector, camera_matrix, dist_coeffs, nose_end_point2D); | ||
|
||
|
||
for(int i=0; i < image_points.size(); i++) | ||
{ | ||
circle(im, image_points[i], 3, Scalar(0,0,255), -1); | ||
} | ||
|
||
cv::line(im,image_points[0], nose_end_point2D[0], cv::Scalar(255,0,0), 2); | ||
|
||
cout << "Rotation Vector " << endl << rotation_vector << endl; | ||
cout << "Translation Vector" << endl << translation_vector << endl; | ||
|
||
cout << nose_end_point2D << endl; | ||
|
||
// Display image. | ||
cv::imshow("Output", im); | ||
cv::waitKey(0); | ||
|
||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#!/usr/bin/env python | ||
|
||
import cv2 | ||
import numpy as np | ||
|
||
# Read Image | ||
im = cv2.imread("headPose.jpg"); | ||
size = im.shape | ||
|
||
#2D image points. If you change the image, you need to change vector | ||
image_points = np.array([ | ||
(359, 391), # Nose tip | ||
(399, 561), # Chin | ||
(337, 297), # Left eye left corner | ||
(513, 301), # Right eye right corne | ||
(345, 465), # Left Mouth corner | ||
(453, 469) # Right mouth corner | ||
], dtype="double") | ||
|
||
# 3D model points. | ||
model_points = np.array([ | ||
(0.0, 0.0, 0.0), # Nose tip | ||
(0.0, -330.0, -65.0), # Chin | ||
(-225.0, 170.0, -135.0), # Left eye left corner | ||
(225.0, 170.0, -135.0), # Right eye right corne | ||
(-150.0, -150.0, -125.0), # Left Mouth corner | ||
(150.0, -150.0, -125.0) # Right mouth corner | ||
|
||
]) | ||
|
||
|
||
# Camera internals | ||
|
||
focal_length = size[1] | ||
center = (size[1]/2, size[0]/2) | ||
camera_matrix = np.array( | ||
[[focal_length, 0, center[0]], | ||
[0, focal_length, center[1]], | ||
[0, 0, 1]], dtype = "double" | ||
) | ||
|
||
print "Camera Matrix :\n {0}".format(camera_matrix); | ||
|
||
dist_coeffs = np.zeros((4,1)) # Assuming no lens distortion | ||
(success, rotation_vector, translation_vector) = cv2.solvePnP(model_points, image_points, camera_matrix, dist_coeffs, flags=cv2.CV_ITERATIVE) | ||
|
||
print "Rotation Vector:\n {0}".format(rotation_vector) | ||
print "Translation Vector:\n {0}".format(translation_vector) | ||
|
||
|
||
# Project a 3D point (0, 0, 1000.0) onto the image plane. | ||
# We use this to draw a line sticking out of the nose | ||
|
||
|
||
(nose_end_point2D, jacobian) = cv2.projectPoints(np.array([(0.0, 0.0, 1000.0)]), rotation_vector, translation_vector, camera_matrix, dist_coeffs) | ||
|
||
for p in image_points: | ||
cv2.circle(im, (int(p[0]), int(p[1])), 3, (0,0,255), -1) | ||
|
||
|
||
p1 = ( int(image_points[0][0]), int(image_points[0][1])) | ||
p2 = ( int(nose_end_point2D[0][0][0]), int(nose_end_point2D[0][0][1])) | ||
|
||
cv2.line(im, p1, p2, (255,0,0), 2) | ||
|
||
|
||
# Display image | ||
cv2.imshow("Output", im); | ||
cv2.waitKey(0); |