-
Notifications
You must be signed in to change notification settings - Fork 189
/
FaceSwapper.h
96 lines (70 loc) · 2.92 KB
/
FaceSwapper.h
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
88
89
90
91
92
93
94
95
#pragma once
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/video/video.hpp>
#include <opencv2/calib3d/calib3d.hpp>
#include <iostream>
#include <dlib/opencv.h>
#include <dlib/image_processing/frontal_face_detector.h>
//#include <dlib/image_processing/render_face_detections.h>
#include <dlib/image_processing.h>
//#include <dlib/gui_widgets.h>
class FaceSwapper
{
public:
// Initialize face swapped with landmarks
FaceSwapper(const std::string landmarks_path);
~FaceSwapper();
//Swaps faces in rects on frame
void swapFaces(cv::Mat &frame, cv::Rect &rect_ann, cv::Rect &rect_bob);
private:
// Returns minimal Mat containing both faces
cv::Mat getMinFrame(const cv::Mat &frame, cv::Rect &rect_ann, cv::Rect &rect_bob);
// Finds facial landmarks on faces and extracts the useful points
void getFacePoints(const cv::Mat &frame);
// Calculates transformation matrices based on points extracted by getFacePoints
void getTransformationMatrices();
// Creates masks for faces based on the points extracted in getFacePoints
void getMasks();
// Creates warpped masks out of masks created in getMasks to switch places
void getWarppedMasks();
// Returns Mat of refined mask such that warpped mask isn't bigger than original mask
cv::Mat getRefinedMasks();
// Extracts faces from images based on masks created in getMasks
void extractFaces();
// Creates warpped faces out of faces extracted in extractFaces
cv::Mat getWarppedFaces();
// Matches Ann face color to Bob face color and vice versa
void colorCorrectFaces();
// Blurs edges of mask
void featherMask(cv::Mat &refined_masks);
// Pastes faces on original frame
void pasteFacesOnFrame();
// Calculates source image histogram and changes target_image to match source hist
void specifiyHistogram(const cv::Mat source_image, cv::Mat target_image, cv::Mat mask);
cv::Rect rect_ann, rect_bob;
cv::Rect big_rect_ann, big_rect_bob;
dlib::shape_predictor pose_model;
dlib::full_object_detection shapes[2];
dlib::rectangle dlib_rects[2];
dlib::cv_image<dlib::bgr_pixel> dlib_frame;
cv::Point2f affine_transform_keypoints_ann[3], affine_transform_keypoints_bob[3];
cv::Mat refined_ann_and_bob_warpped, refined_bob_and_ann_warpped;
cv::Mat warpped_face_ann, warpped_face_bob;
cv::Point2i points_ann[9], points_bob[9];
cv::Mat trans_ann_to_bob, trans_bob_to_ann;
cv::Mat mask_ann, mask_bob;
cv::Mat warpped_mask_ann, warpped_mask_bob;
cv::Mat refined_masks;
cv::Mat face_ann, face_bob;
cv::Mat warpped_faces;
cv::Mat small_frame;
cv::Size frame_size;
cv::Size feather_amount;
uint8_t LUT[3][256];
int source_hist_int[3][256];
int target_hist_int[3][256];
float source_histogram[3][256];
float target_histogram[3][256];
};