Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
AI_Face
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
宋柯
AI_Face
Commits
b4438d17
Commit
b4438d17
authored
Apr 13, 2021
by
宋柯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
美瞳v1
parent
7b674d82
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
142 additions
and
80 deletions
+142
-80
f_BeautyIris.cpp
f_BeautyIris.cpp
+142
-80
No files found.
f_BeautyIris.cpp
View file @
b4438d17
...
@@ -144,10 +144,10 @@ int f_BeautyIris(unsigned char* srcData, int width, int height, int stride, int
...
@@ -144,10 +144,10 @@ int f_BeautyIris(unsigned char* srcData, int width, int height, int stride, int
int
irisRadius
=
eye_pupil_radius
;
int
irisRadius
=
eye_pupil_radius
;
irisRadius
*=
irisRadiusExpand
;
irisRadius
*=
irisRadiusExpand
;
//compute the rectangle of eye area.
//compute the rectangle of eye area.
int
px
=
CLIP3
(
cenx
-
irisRadius
,
0
,
width
-
1
);
int
px
=
CLIP3
(
cenx
-
irisRadius
-
1
,
0
,
width
-
1
);
int
py
=
CLIP3
(
ceny
-
irisRadius
,
0
,
height
-
1
);
int
py
=
CLIP3
(
ceny
-
irisRadius
-
1
,
0
,
height
-
1
);
int
pmaxX
=
CLIP3
(
cenx
+
irisRadius
,
0
,
width
-
1
);
int
pmaxX
=
CLIP3
(
cenx
+
irisRadius
+
1
,
0
,
width
-
1
);
int
pmaxY
=
CLIP3
(
ceny
+
irisRadius
,
0
,
height
-
1
);
int
pmaxY
=
CLIP3
(
ceny
+
irisRadius
+
1
,
0
,
height
-
1
);
int
w
=
pmaxX
-
px
+
2
;
int
w
=
pmaxX
-
px
+
2
;
int
h
=
pmaxY
-
py
+
2
;
int
h
=
pmaxY
-
py
+
2
;
const
int
pointNum
=
63
;
const
int
pointNum
=
63
;
...
@@ -184,9 +184,9 @@ int f_BeautyIris(unsigned char* srcData, int width, int height, int stride, int
...
@@ -184,9 +184,9 @@ int f_BeautyIris(unsigned char* srcData, int width, int height, int stride, int
// m.data = irisMask;
// m.data = irisMask;
// imshow("irisMask",m);
// imshow("irisMask",m);
// waitKey(0);
// waitKey(0);
// f_FastMeanFilter(irisMask, w, h, w * 3, 3);
//
//
// f_FastMeanFilter(irisMask, w, h, w * 3, 3);
// pMask = irisMask;
// pMask = irisMask;
// for(int j = 0; j < h; j++)
// for(int j = 0; j < h; j++)
// {
// {
...
@@ -330,6 +330,7 @@ int main(int argc, char* argv[]){
...
@@ -330,6 +330,7 @@ int main(int argc, char* argv[]){
stopwatch
.
start
();
stopwatch
.
start
();
string
photoPath
=
string
(
argv
[
1
]);
string
photoPath
=
string
(
argv
[
1
]);
string
irisPath
=
string
(
argv
[
2
]);
string
irisPath
=
string
(
argv
[
2
]);
string
direct
=
string
(
argv
[
3
]);
// std::string stEsQuery = "https://api-cn.faceplusplus.com/facepp/v3/detect";
// std::string stEsQuery = "https://api-cn.faceplusplus.com/facepp/v3/detect";
std
::
string
stEsQuery
=
"https://api-cn.faceplusplus.com/facepp/v1/face/thousandlandmark"
;
std
::
string
stEsQuery
=
"https://api-cn.faceplusplus.com/facepp/v1/face/thousandlandmark"
;
URI
uri
(
stEsQuery
);
URI
uri
(
stEsQuery
);
...
@@ -347,7 +348,7 @@ int main(int argc, char* argv[]){
...
@@ -347,7 +348,7 @@ int main(int argc, char* argv[]){
form
.
add
(
"api_key"
,
MEGVII_KEY
);
form
.
add
(
"api_key"
,
MEGVII_KEY
);
form
.
add
(
"api_secret"
,
MEGVII_SECRET
);
form
.
add
(
"api_secret"
,
MEGVII_SECRET
);
// form.add("return_landmark", "2");
// form.add("return_landmark", "2");
form
.
add
(
"return_landmark"
,
"right_eye"
);
form
.
add
(
"return_landmark"
,
"right_eye
,left_eye
"
);
// fstream f;
// fstream f;
...
@@ -364,75 +365,44 @@ int main(int argc, char* argv[]){
...
@@ -364,75 +365,44 @@ int main(int argc, char* argv[]){
form
.
addPart
(
"image_file"
,
new
FilePartSource
(
photoPath
));
form
.
addPart
(
"image_file"
,
new
FilePartSource
(
photoPath
));
form
.
prepareSubmit
(
es_request
);
form
.
prepareSubmit
(
es_request
);
form
.
write
(
session
.
sendRequest
(
es_request
));
form
.
write
(
session
.
sendRequest
(
es_request
));
HTTPResponse
es_response
;
HTTPResponse
es_response
;
std
::
istream
&
istream
=
session
.
receiveResponse
(
es_response
);
std
::
istream
&
istream
=
session
.
receiveResponse
(
es_response
);
const
HTTPResponse
::
HTTPStatus
&
status
=
es_response
.
getStatus
();
const
HTTPResponse
::
HTTPStatus
&
status
=
es_response
.
getStatus
();
if
(
HTTPResponse
::
HTTPStatus
::
HTTP_OK
==
status
){
if
(
HTTPResponse
::
HTTPStatus
::
HTTP_OK
==
status
){
// if(true){
std
::
string
stRes
;
std
::
string
stRes
;
StreamCopier
::
copyToString
(
istream
,
stRes
);
StreamCopier
::
copyToString
(
istream
,
stRes
);
std
::
cout
<<
stRes
<<
std
::
endl
;
std
::
cout
<<
stRes
<<
std
::
endl
;
try
try
{
{
// Load face detection and pose estimation models.
// frontal_face_detector detector = get_frontal_face_detector();
// shape_predictor pose_model;
// deserialize("/Users/edz/Downloads/shape_predictor_68_face_landmarks.dat") >> pose_model;
// Grab and process frames until the main window is closed by the user.
// Grab and process frames until the main window is closed by the user.
cv
::
Mat
temp
=
imread
(
photoPath
);
cv
::
Mat
temp
=
imread
(
photoPath
);
// cv_image<bgr_pixel> cimg(temp);
// Detect faces
// std::vector<dlib::rectangle> faces = detector(cimg);
// Find the pose of each face.
// std::vector<full_object_detection> shapes;
// for (unsigned long i = 0; i < faces.size(); ++i)
// shapes.push_back(pose_model(cimg, faces[i]));
int
srcPoints
[
63
*
2
];
// string pointJsonStr = "{\"request_id\":\"1617882543,a020830b-7fb2-4a6b-ad2f-46b4f85f8d1d\",\"time_used\":65,\"faces\":[{\"face_token\":\"3b4a8cf00f5ffb79d679e79760c8238a\",\"face_rectangle\":{\"top\":87,\"left\":179,\"width\":141,\"height\":141},\"landmark\":{\"contour_chin\":{\"x\":232,\"y\":227},\"contour_left1\":{\"x\":180,\"y\":107},\"contour_left10\":{\"x\":190,\"y\":184},\"contour_left11\":{\"x\":194,\"y\":192},\"contour_left12\":{\"x\":199,\"y\":199},\"contour_left13\":{\"x\":204,\"y\":206},\"contour_left14\":{\"x\":209,\"y\":213},\"contour_left15\":{\"x\":215,\"y\":219},\"contour_left16\":{\"x\":222,\"y\":224},\"contour_left2\":{\"x\":179,\"y\":116},\"contour_left3\":{\"x\":178,\"y\":125},\"contour_left4\":{\"x\":178,\"y\":133},\"contour_left5\":{\"x\":179,\"y\":142},\"contour_left6\":{\"x\":180,\"y\":151},\"contour_left7\":{\"x\":182,\"y\":159},\"contour_left8\":{\"x\":184,\"y\":168},\"contour_left9\":{\"x\":187,\"y\":176},\"contour_right1\":{\"x\":318,\"y\":103},\"contour_right10\":{\"x\":302,\"y\":194},\"contour_right11\":{\"x\":294,\"y\":202},\"contour_right12\":{\"x\":286,\"y\":209},\"contour_right13\":{\"x\":277,\"y\":215},\"contour_right14\":{\"x\":267,\"y\":220},\"contour_right15\":{\"x\":256,\"y\":225},\"contour_right16\":{\"x\":244,\"y\":227},\"contour_right2\":{\"x\":319,\"y\":113},\"contour_right3\":{\"x\":320,\"y\":124},\"contour_right4\":{\"x\":319,\"y\":134},\"contour_right5\":{\"x\":319,\"y\":144},\"contour_right6\":{\"x\":317,\"y\":155},\"contour_right7\":{\"x\":315,\"y\":165},\"contour_right8\":{\"x\":312,\"y\":175},\"contour_right9\":{\"x\":307,\"y\":185},\"left_eye_bottom\":{\"x\":198,\"y\":119},\"left_eye_center\":{\"x\":203,\"y\":114},\"left_eye_left_corner\":{\"x\":188,\"y\":115},\"left_eye_lower_left_quarter\":{\"x\":192,\"y\":118},\"left_eye_lower_right_quarter\":{\"x\":205,\"y\":119},\"left_eye_pupil\":{\"x\":203,\"y\":114},\"left_eye_right_corner\":{\"x\":212,\"y\":118},\"left_eye_top\":{\"x\":199,\"y\":109},\"left_eye_upper_left_quarter\":{\"x\":192,\"y\":110},\"left_eye_upper_right_quarter\":{\"x\":207,\"y\":111},\"left_eyebrow_left_corner\":{\"x\":178,\"y\":98},\"left_eyebrow_lower_left_quarter\":{\"x\":185,\"y\":98},\"left_eyebrow_lower_middle\":{\"x\":193,\"y\":98},\"left_eyebrow_lower_right_corner\":{\"x\":210,\"y\":102},\"left_eyebrow_lower_right_quarter\":{\"x\":202,\"y\":99},\"left_eyebrow_upper_left_quarter\":{\"x\":184,\"y\":91},\"left_eyebrow_upper_middle\":{\"x\":193,\"y\":90},\"left_eyebrow_upper_right_corner\":{\"x\":211,\"y\":97},\"left_eyebrow_upper_right_quarter\":{\"x\":203,\"y\":92},\"mouth_left_corner\":{\"x\":209,\"y\":182},\"mouth_lower_lip_bottom\":{\"x\":230,\"y\":197},\"mouth_lower_lip_left_contour1\":{\"x\":219,\"y\":186},\"mouth_lower_lip_left_contour2\":{\"x\":214,\"y\":189},\"mouth_lower_lip_left_contour3\":{\"x\":220,\"y\":195},\"mouth_lower_lip_right_contour1\":{\"x\":246,\"y\":186},\"mouth_lower_lip_right_contour2\":{\"x\":254,\"y\":189},\"mouth_lower_lip_right_contour3\":{\"x\":243,\"y\":195},\"mouth_lower_lip_top\":{\"x\":229,\"y\":187},\"mouth_right_corner\":{\"x\":263,\"y\":181},\"mouth_upper_lip_bottom\":{\"x\":229,\"y\":186},\"mouth_upper_lip_left_contour1\":{\"x\":222,\"y\":179},\"mouth_upper_lip_left_contour2\":{\"x\":215,\"y\":180},\"mouth_upper_lip_left_contour3\":{\"x\":212,\"y\":183},\"mouth_upper_lip_left_contour4\":{\"x\":219,\"y\":185},\"mouth_upper_lip_right_contour1\":{\"x\":235,\"y\":179},\"mouth_upper_lip_right_contour2\":{\"x\":249,\"y\":180},\"mouth_upper_lip_right_contour3\":{\"x\":258,\"y\":182},\"mouth_upper_lip_right_contour4\":{\"x\":245,\"y\":184},\"mouth_upper_lip_top\":{\"x\":228,\"y\":181},\"nose_bridge1\":{\"x\":225,\"y\":113},\"nose_bridge2\":{\"x\":223,\"y\":127},\"nose_bridge3\":{\"x\":220,\"y\":141},\"nose_left_contour1\":{\"x\":219,\"y\":119},\"nose_left_contour2\":{\"x\":213,\"y\":148},\"nose_left_contour3\":{\"x\":210,\"y\":160},\"nose_left_contour4\":{\"x\":213,\"y\":164},\"nose_left_contour5\":{\"x\":218,\"y\":166},\"nose_middle_contour\":{\"x\":224,\"y\":168},\"nose_right_contour1\":{\"x\":237,\"y\":117},\"nose_right_contour2\":{\"x\":241,\"y\":147},\"nose_right_contour3\":{\"x\":246,\"y\":160},\"nose_right_contour4\":{\"x\":239,\"y\":164},\"nose_right_contour5\":{\"x\":231,\"y\":166},\"nose_tip\":{\"x\":217,\"y\":156},\"right_eye_bottom\":{\"x\":262,\"y\":119},\"right_eye_center\":{\"x\":264,\"y\":112},\"right_eye_left_corner\":{\"x\":246,\"y\":118},\"right_eye_lower_left_quarter\":{\"x\":254,\"y\":119},\"right_eye_lower_right_quarter\":{\"x\":270,\"y\":117},\"right_eye_pupil\":{\"x\":264,\"y\":112},\"right_eye_right_corner\":{\"x\":277,\"y\":113},\"right_eye_top\":{\"x\":261,\"y\":107},\"right_eye_upper_left_quarter\":{\"x\":252,\"y\":111},\"right_eye_upper_right_quarter\":{\"x\":269,\"y\":109},\"right_eyebrow_lower_left_corner\":{\"x\":239,\"y\":99},\"right_eyebrow_lower_left_quarter\":{\"x\":251,\"y\":97},\"right_eyebrow_lower_middle\":{\"x\":264,\"y\":96},\"right_eyebrow_lower_right_quarter\":{\"x\":278,\"y\":97},\"right_eyebrow_right_corner\":{\"x\":292,\"y\":99},\"right_eyebrow_upper_left_corner\":{\"x\":238,\"y\":93},\"right_eyebrow_upper_left_quarter\":{\"x\":250,\"y\":90},\"right_eyebrow_upper_middle\":{\"x\":264,\"y\":89},\"right_eyebrow_upper_right_quarter\":{\"x\":279,\"y\":91}}}],\"image_id\":\"2yT1Ccz7vyIPlJqmEXE+oQ==\",\"face_num\":1}";
// string pointJsonStr = "{\"time_used\": 134, \"request_id\": \"1617937070,e4fb445c-50af-4a8c-be39-14c58e946507\", \"face\": {\"landmark\": {\"right_eye\": {\"right_eye_pupil_center\": {\"y\": 113, \"x\": 262}, \"right_eye_38\": {\"y\": 119, \"x\": 253}, \"right_eye_39\": {\"y\": 119, \"x\": 254}, \"right_eye_36\": {\"y\": 118, \"x\": 252}, \"right_eye_37\": {\"y\": 118, \"x\": 253}, \"right_eye_34\": {\"y\": 118, \"x\": 250}, \"right_eye_35\": {\"y\": 118, \"x\": 251}, \"right_eye_32\": {\"y\": 117, \"x\": 249}, \"right_eye_33\": {\"y\": 117, \"x\": 249}, \"right_eye_30\": {\"y\": 115, \"x\": 249}, \"right_eye_31\": {\"y\": 116, \"x\": 249}, \"right_eye_10\": {\"y\": 108, \"x\": 266}, \"right_eye_11\": {\"y\": 108, \"x\": 265}, \"right_eye_12\": {\"y\": 108, \"x\": 264}, \"right_eye_13\": {\"y\": 108, \"x\": 263}, \"right_eye_14\": {\"y\": 108, \"x\": 262}, \"right_eye_15\": {\"y\": 108, \"x\": 261}, \"right_eye_16\": {\"y\": 108, \"x\": 260}, \"right_eye_17\": {\"y\": 108, \"x\": 259}, \"right_eye_18\": {\"y\": 109, \"x\": 258}, \"right_eye_19\": {\"y\": 109, \"x\": 257}, \"right_eye_56\": {\"y\": 117, \"x\": 269}, \"right_eye_57\": {\"y\": 116, \"x\": 270}, \"right_eye_50\": {\"y\": 118, \"x\": 264}, \"right_eye_51\": {\"y\": 118, \"x\": 265}, \"right_eye_52\": {\"y\": 118, \"x\": 266}, \"right_eye_53\": {\"y\": 118, \"x\": 266}, \"right_eye_pupil_radius\": 6, \"right_eye_8\": {\"y\": 109, \"x\": 267}, \"right_eye_9\": {\"y\": 109, \"x\": 266}, \"right_eye_6\": {\"y\": 109, \"x\": 269}, \"right_eye_7\": {\"y\": 109, \"x\": 268}, \"right_eye_4\": {\"y\": 110, \"x\": 271}, \"right_eye_5\": {\"y\": 110, \"x\": 270}, \"right_eye_2\": {\"y\": 111, \"x\": 272}, \"right_eye_3\": {\"y\": 111, \"x\": 272}, \"right_eye_0\": {\"y\": 113, \"x\": 273}, \"right_eye_1\": {\"y\": 112, \"x\": 273}, \"right_eye_58\": {\"y\": 116, \"x\": 270}, \"right_eye_29\": {\"y\": 114, \"x\": 249}, \"right_eye_28\": {\"y\": 113, \"x\": 250}, \"right_eye_62\": {\"y\": 114, \"x\": 273}, \"right_eye_21\": {\"y\": 109, \"x\": 255}, \"right_eye_20\": {\"y\": 109, \"x\": 256}, \"right_eye_23\": {\"y\": 110, \"x\": 254}, \"right_eye_22\": {\"y\": 110, \"x\": 254}, \"right_eye_25\": {\"y\": 111, \"x\": 252}, \"right_eye_24\": {\"y\": 111, \"x\": 253}, \"right_eye_27\": {\"y\": 112, \"x\": 251}, \"right_eye_26\": {\"y\": 112, \"x\": 251}, \"right_eye_59\": {\"y\": 116, \"x\": 271}, \"right_eye_61\": {\"y\": 115, \"x\": 272}, \"right_eye_60\": {\"y\": 115, \"x\": 272}, \"right_eye_49\": {\"y\": 119, \"x\": 263}, \"right_eye_48\": {\"y\": 119, \"x\": 262}, \"right_eye_47\": {\"y\": 119, \"x\": 261}, \"right_eye_46\": {\"y\": 119, \"x\": 260}, \"right_eye_45\": {\"y\": 119, \"x\": 259}, \"right_eye_44\": {\"y\": 119, \"x\": 259}, \"right_eye_43\": {\"y\": 119, \"x\": 258}, \"right_eye_42\": {\"y\": 119, \"x\": 257}, \"right_eye_41\": {\"y\": 119, \"x\": 256}, \"right_eye_40\": {\"y\": 119, \"x\": 255}, \"right_eye_54\": {\"y\": 117, \"x\": 267}, \"right_eye_55\": {\"y\": 117, \"x\": 268}}}, \"face_rectangle\": {\"width\": 143, \"top\": 86, \"height\": 143, \"left\": 177}}}";
// string pointJsonStr = "{\"time_used\": 163, \"request_id\": \"1617953825,2bfa2aa7-07df-4bec-bbc2-712b04fd1aae\", \"face\": {\"landmark\": {\"right_eye\": {\"right_eye_pupil_center\": {\"y\": 162, \"x\": 476}, \"right_eye_38\": {\"y\": 178, \"x\": 449}, \"right_eye_39\": {\"y\": 179, \"x\": 452}, \"right_eye_36\": {\"y\": 176, \"x\": 444}, \"right_eye_37\": {\"y\": 177, \"x\": 446}, \"right_eye_34\": {\"y\": 174, \"x\": 439}, \"right_eye_35\": {\"y\": 175, \"x\": 441}, \"right_eye_32\": {\"y\": 170, \"x\": 435}, \"right_eye_33\": {\"y\": 172, \"x\": 437}, \"right_eye_30\": {\"y\": 164, \"x\": 437}, \"right_eye_31\": {\"y\": 167, \"x\": 436}, \"right_eye_10\": {\"y\": 154, \"x\": 494}, \"right_eye_11\": {\"y\": 153, \"x\": 491}, \"right_eye_12\": {\"y\": 153, \"x\": 488}, \"right_eye_13\": {\"y\": 152, \"x\": 485}, \"right_eye_14\": {\"y\": 151, \"x\": 482}, \"right_eye_15\": {\"y\": 151, \"x\": 479}, \"right_eye_16\": {\"y\": 151, \"x\": 476}, \"right_eye_17\": {\"y\": 151, \"x\": 473}, \"right_eye_18\": {\"y\": 151, \"x\": 470}, \"right_eye_19\": {\"y\": 151, \"x\": 467}, \"right_eye_56\": {\"y\": 184, \"x\": 499}, \"right_eye_57\": {\"y\": 183, \"x\": 502}, \"right_eye_50\": {\"y\": 185, \"x\": 482}, \"right_eye_51\": {\"y\": 185, \"x\": 485}, \"right_eye_52\": {\"y\": 185, \"x\": 488}, \"right_eye_53\": {\"y\": 185, \"x\": 491}, \"right_eye_pupil_radius\": 21, \"right_eye_8\": {\"y\": 157, \"x\": 499}, \"right_eye_9\": {\"y\": 155, \"x\": 497}, \"right_eye_6\": {\"y\": 160, \"x\": 505}, \"right_eye_7\": {\"y\": 158, \"x\": 502}, \"right_eye_4\": {\"y\": 163, \"x\": 510}, \"right_eye_5\": {\"y\": 161, \"x\": 507}, \"right_eye_2\": {\"y\": 168, \"x\": 514}, \"right_eye_3\": {\"y\": 165, \"x\": 512}, \"right_eye_0\": {\"y\": 173, \"x\": 515}, \"right_eye_1\": {\"y\": 171, \"x\": 515}, \"right_eye_58\": {\"y\": 182, \"x\": 505}, \"right_eye_29\": {\"y\": 162, \"x\": 439}, \"right_eye_28\": {\"y\": 160, \"x\": 441}, \"right_eye_62\": {\"y\": 176, \"x\": 514}, \"right_eye_21\": {\"y\": 152, \"x\": 461}, \"right_eye_20\": {\"y\": 151, \"x\": 464}, \"right_eye_23\": {\"y\": 154, \"x\": 455}, \"right_eye_22\": {\"y\": 153, \"x\": 458}, \"right_eye_25\": {\"y\": 156, \"x\": 449}, \"right_eye_24\": {\"y\": 155, \"x\": 452}, \"right_eye_27\": {\"y\": 159, \"x\": 444}, \"right_eye_26\": {\"y\": 157, \"x\": 447}, \"right_eye_59\": {\"y\": 181, \"x\": 507}, \"right_eye_61\": {\"y\": 178, \"x\": 512}, \"right_eye_60\": {\"y\": 179, \"x\": 510}, \"right_eye_49\": {\"y\": 185, \"x\": 479}, \"right_eye_48\": {\"y\": 185, \"x\": 477}, \"right_eye_47\": {\"y\": 184, \"x\": 474}, \"right_eye_46\": {\"y\": 184, \"x\": 471}, \"right_eye_45\": {\"y\": 183, \"x\": 468}, \"right_eye_44\": {\"y\": 183, \"x\": 465}, \"right_eye_43\": {\"y\": 182, \"x\": 463}, \"right_eye_42\": {\"y\": 181, \"x\": 460}, \"right_eye_41\": {\"y\": 180, \"x\": 457}, \"right_eye_40\": {\"y\": 180, \"x\": 454}, \"right_eye_54\": {\"y\": 185, \"x\": 494}, \"right_eye_55\": {\"y\": 184, \"x\": 496}}}, \"face_rectangle\": {\"width\": 464, \"top\": 59, \"height\": 464, \"left\": 147}}}";
// string pointJsonStr = "{\"time_used\": 244, \"request_id\": \"1617958929,46cc922f-79e7-4fa4-9c3d-38049509d080\", \"face\": {\"landmark\": {\"right_eye\": {\"right_eye_pupil_center\": {\"y\": 567, \"x\": 588}, \"right_eye_38\": {\"y\": 591, \"x\": 552}, \"right_eye_39\": {\"y\": 592, \"x\": 555}, \"right_eye_36\": {\"y\": 589, \"x\": 544}, \"right_eye_37\": {\"y\": 590, \"x\": 548}, \"right_eye_34\": {\"y\": 586, \"x\": 537}, \"right_eye_35\": {\"y\": 587, \"x\": 541}, \"right_eye_32\": {\"y\": 580, \"x\": 533}, \"right_eye_33\": {\"y\": 584, \"x\": 534}, \"right_eye_30\": {\"y\": 573, \"x\": 534}, \"right_eye_31\": {\"y\": 576, \"x\": 533}, \"right_eye_10\": {\"y\": 557, \"x\": 611}, \"right_eye_11\": {\"y\": 556, \"x\": 607}, \"right_eye_12\": {\"y\": 555, \"x\": 603}, \"right_eye_13\": {\"y\": 554, \"x\": 599}, \"right_eye_14\": {\"y\": 554, \"x\": 595}, \"right_eye_15\": {\"y\": 554, \"x\": 591}, \"right_eye_16\": {\"y\": 553, \"x\": 587}, \"right_eye_17\": {\"y\": 553, \"x\": 583}, \"right_eye_18\": {\"y\": 554, \"x\": 579}, \"right_eye_19\": {\"y\": 554, \"x\": 574}, \"right_eye_56\": {\"y\": 595, \"x\": 620}, \"right_eye_57\": {\"y\": 594, \"x\": 624}, \"right_eye_50\": {\"y\": 598, \"x\": 597}, \"right_eye_51\": {\"y\": 598, \"x\": 601}, \"right_eye_52\": {\"y\": 597, \"x\": 605}, \"right_eye_53\": {\"y\": 597, \"x\": 609}, \"right_eye_pupil_radius\": 33, \"right_eye_8\": {\"y\": 560, \"x\": 619}, \"right_eye_9\": {\"y\": 558, \"x\": 615}, \"right_eye_6\": {\"y\": 564, \"x\": 627}, \"right_eye_7\": {\"y\": 562, \"x\": 623}, \"right_eye_4\": {\"y\": 568, \"x\": 634}, \"right_eye_5\": {\"y\": 566, \"x\": 630}, \"right_eye_2\": {\"y\": 574, \"x\": 639}, \"right_eye_3\": {\"y\": 571, \"x\": 637}, \"right_eye_0\": {\"y\": 581, \"x\": 642}, \"right_eye_1\": {\"y\": 577, \"x\": 641}, \"right_eye_58\": {\"y\": 593, \"x\": 627}, \"right_eye_29\": {\"y\": 570, \"x\": 537}, \"right_eye_28\": {\"y\": 567, \"x\": 540}, \"right_eye_62\": {\"y\": 585, \"x\": 640}, \"right_eye_21\": {\"y\": 555, \"x\": 566}, \"right_eye_20\": {\"y\": 554, \"x\": 570}, \"right_eye_23\": {\"y\": 557, \"x\": 558}, \"right_eye_22\": {\"y\": 556, \"x\": 562}, \"right_eye_25\": {\"y\": 561, \"x\": 551}, \"right_eye_24\": {\"y\": 559, \"x\": 554}, \"right_eye_27\": {\"y\": 565, \"x\": 543}, \"right_eye_26\": {\"y\": 562, \"x\": 547}, \"right_eye_59\": {\"y\": 591, \"x\": 631}, \"right_eye_61\": {\"y\": 588, \"x\": 638}, \"right_eye_60\": {\"y\": 590, \"x\": 634}, \"right_eye_49\": {\"y\": 598, \"x\": 593}, \"right_eye_48\": {\"y\": 597, \"x\": 589}, \"right_eye_47\": {\"y\": 597, \"x\": 585}, \"right_eye_46\": {\"y\": 597, \"x\": 582}, \"right_eye_45\": {\"y\": 596, \"x\": 578}, \"right_eye_44\": {\"y\": 596, \"x\": 574}, \"right_eye_43\": {\"y\": 595, \"x\": 570}, \"right_eye_42\": {\"y\": 594, \"x\": 566}, \"right_eye_41\": {\"y\": 593, \"x\": 563}, \"right_eye_40\": {\"y\": 593, \"x\": 559}, \"right_eye_54\": {\"y\": 596, \"x\": 612}, \"right_eye_55\": {\"y\": 596, \"x\": 616}}}, \"face_rectangle\": {\"width\": 629, \"top\": 432, \"height\": 629, \"left\": 126}}}";
string
pointJsonStr
=
stRes
;
string
pointJsonStr
=
stRes
;
// string pointJsonStr = "{\"time_used\": 96, \"request_id\": \"1618313017,7a5949a9-187d-403b-a7a6-711728ac6335\", \"face\": {\"landmark\": {\"left_eye\": {\"left_eye_43\": {\"y\": 409, \"x\": 369}, \"left_eye_42\": {\"y\": 409, \"x\": 370}, \"left_eye_41\": {\"y\": 408, \"x\": 372}, \"left_eye_40\": {\"y\": 408, \"x\": 374}, \"left_eye_47\": {\"y\": 409, \"x\": 362}, \"left_eye_46\": {\"y\": 409, \"x\": 363}, \"left_eye_45\": {\"y\": 409, \"x\": 365}, \"left_eye_32\": {\"y\": 404, \"x\": 386}, \"left_eye_49\": {\"y\": 409, \"x\": 358}, \"left_eye_48\": {\"y\": 409, \"x\": 360}, \"left_eye_pupil_radius\": 13, \"left_eye_61\": {\"y\": 400, \"x\": 340}, \"left_eye_38\": {\"y\": 408, \"x\": 377}, \"left_eye_33\": {\"y\": 406, \"x\": 385}, \"left_eye_60\": {\"y\": 401, \"x\": 341}, \"left_eye_44\": {\"y\": 409, \"x\": 367}, \"left_eye_36\": {\"y\": 407, \"x\": 381}, \"left_eye_37\": {\"y\": 408, \"x\": 379}, \"left_eye_34\": {\"y\": 407, \"x\": 384}, \"left_eye_35\": {\"y\": 407, \"x\": 382}, \"left_eye_18\": {\"y\": 387, \"x\": 368}, \"left_eye_19\": {\"y\": 388, \"x\": 370}, \"left_eye_30\": {\"y\": 401, \"x\": 386}, \"left_eye_31\": {\"y\": 402, \"x\": 387}, \"left_eye_14\": {\"y\": 386, \"x\": 361}, \"left_eye_15\": {\"y\": 386, \"x\": 363}, \"left_eye_16\": {\"y\": 386, \"x\": 365}, \"left_eye_17\": {\"y\": 387, \"x\": 367}, \"left_eye_10\": {\"y\": 387, \"x\": 353}, \"left_eye_11\": {\"y\": 386, \"x\": 355}, \"left_eye_12\": {\"y\": 386, \"x\": 357}, \"left_eye_13\": {\"y\": 386, \"x\": 359}, \"left_eye_50\": {\"y\": 408, \"x\": 356}, \"left_eye_51\": {\"y\": 408, \"x\": 355}, \"left_eye_52\": {\"y\": 408, \"x\": 353}, \"left_eye_53\": {\"y\": 407, \"x\": 351}, \"left_eye_54\": {\"y\": 407, \"x\": 350}, \"left_eye_55\": {\"y\": 406, \"x\": 348}, \"left_eye_56\": {\"y\": 405, \"x\": 346}, \"left_eye_57\": {\"y\": 404, \"x\": 345}, \"left_eye_58\": {\"y\": 404, \"x\": 343}, \"left_eye_59\": {\"y\": 403, \"x\": 342}, \"left_eye_62\": {\"y\": 399, \"x\": 339}, \"left_eye_pupil_center\": {\"y\": 395, \"x\": 363}, \"left_eye_6\": {\"y\": 389, \"x\": 346}, \"left_eye_7\": {\"y\": 388, \"x\": 348}, \"left_eye_4\": {\"y\": 391, \"x\": 342}, \"left_eye_5\": {\"y\": 390, \"x\": 344}, \"left_eye_2\": {\"y\": 394, \"x\": 340}, \"left_eye_3\": {\"y\": 392, \"x\": 341}, \"left_eye_0\": {\"y\": 397, \"x\": 338}, \"left_eye_1\": {\"y\": 395, \"x\": 339}, \"left_eye_8\": {\"y\": 387, \"x\": 349}, \"left_eye_9\": {\"y\": 387, \"x\": 351}, \"left_eye_21\": {\"y\": 389, \"x\": 374}, \"left_eye_20\": {\"y\": 388, \"x\": 372}, \"left_eye_23\": {\"y\": 391, \"x\": 377}, \"left_eye_22\": {\"y\": 390, \"x\": 376}, \"left_eye_25\": {\"y\": 393, \"x\": 380}, \"left_eye_24\": {\"y\": 392, \"x\": 379}, \"left_eye_27\": {\"y\": 396, \"x\": 383}, \"left_eye_26\": {\"y\": 395, \"x\": 382}, \"left_eye_29\": {\"y\": 399, \"x\": 385}, \"left_eye_28\": {\"y\": 397, \"x\": 384}, \"left_eye_39\": {\"y\": 408, \"x\": 375}}, \"right_eye\": {\"right_eye_pupil_center\": {\"y\": 396, \"x\": 493}, \"right_eye_38\": {\"y\": 408, \"x\": 479}, \"right_eye_39\": {\"y\": 408, \"x\": 481}, \"right_eye_36\": {\"y\": 408, \"x\": 476}, \"right_eye_37\": {\"y\": 408, \"x\": 478}, \"right_eye_34\": {\"y\": 407, \"x\": 473}, \"right_eye_35\": {\"y\": 407, \"x\": 474}, \"right_eye_32\": {\"y\": 405, \"x\": 470}, \"right_eye_33\": {\"y\": 406, \"x\": 471}, \"right_eye_30\": {\"y\": 401, \"x\": 470}, \"right_eye_31\": {\"y\": 403, \"x\": 470}, \"right_eye_10\": {\"y\": 387, \"x\": 503}, \"right_eye_11\": {\"y\": 387, \"x\": 501}, \"right_eye_12\": {\"y\": 387, \"x\": 499}, \"right_eye_13\": {\"y\": 387, \"x\": 497}, \"right_eye_14\": {\"y\": 387, \"x\": 495}, \"right_eye_15\": {\"y\": 387, \"x\": 493}, \"right_eye_16\": {\"y\": 387, \"x\": 491}, \"right_eye_17\": {\"y\": 387, \"x\": 489}, \"right_eye_18\": {\"y\": 388, \"x\": 488}, \"right_eye_19\": {\"y\": 388, \"x\": 486}, \"right_eye_56\": {\"y\": 405, \"x\": 509}, \"right_eye_57\": {\"y\": 405, \"x\": 511}, \"right_eye_50\": {\"y\": 409, \"x\": 500}, \"right_eye_51\": {\"y\": 408, \"x\": 501}, \"right_eye_52\": {\"y\": 408, \"x\": 503}, \"right_eye_53\": {\"y\": 407, \"x\": 505}, \"right_eye_pupil_radius\": 13, \"right_eye_8\": {\"y\": 388, \"x\": 506}, \"right_eye_9\": {\"y\": 388, \"x\": 504}, \"right_eye_6\": {\"y\": 389, \"x\": 510}, \"right_eye_7\": {\"y\": 389, \"x\": 508}, \"right_eye_4\": {\"y\": 391, \"x\": 513}, \"right_eye_5\": {\"y\": 390, \"x\": 512}, \"right_eye_2\": {\"y\": 394, \"x\": 516}, \"right_eye_3\": {\"y\": 392, \"x\": 515}, \"right_eye_0\": {\"y\": 397, \"x\": 517}, \"right_eye_1\": {\"y\": 395, \"x\": 517}, \"right_eye_58\": {\"y\": 404, \"x\": 512}, \"right_eye_29\": {\"y\": 399, \"x\": 471}, \"right_eye_28\": {\"y\": 398, \"x\": 472}, \"right_eye_62\": {\"y\": 399, \"x\": 517}, \"right_eye_21\": {\"y\": 390, \"x\": 482}, \"right_eye_20\": {\"y\": 389, \"x\": 484}, \"right_eye_23\": {\"y\": 391, \"x\": 479}, \"right_eye_22\": {\"y\": 390, \"x\": 480}, \"right_eye_25\": {\"y\": 394, \"x\": 476}, \"right_eye_24\": {\"y\": 393, \"x\": 477}, \"right_eye_27\": {\"y\": 396, \"x\": 473}, \"right_eye_26\": {\"y\": 395, \"x\": 474}, \"right_eye_59\": {\"y\": 403, \"x\": 514}, \"right_eye_61\": {\"y\": 400, \"x\": 516}, \"right_eye_60\": {\"y\": 401, \"x\": 515}, \"right_eye_49\": {\"y\": 409, \"x\": 498}, \"right_eye_48\": {\"y\": 409, \"x\": 496}, \"right_eye_47\": {\"y\": 409, \"x\": 495}, \"right_eye_46\": {\"y\": 409, \"x\": 493}, \"right_eye_45\": {\"y\": 409, \"x\": 491}, \"right_eye_44\": {\"y\": 409, \"x\": 489}, \"right_eye_43\": {\"y\": 409, \"x\": 488}, \"right_eye_42\": {\"y\": 409, \"x\": 486}, \"right_eye_41\": {\"y\": 409, \"x\": 484}, \"right_eye_40\": {\"y\": 409, \"x\": 483}, \"right_eye_54\": {\"y\": 407, \"x\": 506}, \"right_eye_55\": {\"y\": 406, \"x\": 508}}}, \"face_rectangle\": {\"width\": 301, \"top\": 342, \"height\": 300, \"left\": 280}}}";
// string pointJsonStr = "{\"time_used\": 140, \"request_id\": \"1618310140,edce0a1f-74a4-4409-a895-f2944206b945\", \"face\": {\"landmark\": {\"left_eye\": {\"left_eye_43\": {\"y\": 150, \"x\": 258}, \"left_eye_42\": {\"y\": 150, \"x\": 261}, \"left_eye_41\": {\"y\": 150, \"x\": 264}, \"left_eye_40\": {\"y\": 150, \"x\": 267}, \"left_eye_47\": {\"y\": 150, \"x\": 247}, \"left_eye_46\": {\"y\": 150, \"x\": 250}, \"left_eye_45\": {\"y\": 150, \"x\": 253}, \"left_eye_32\": {\"y\": 146, \"x\": 288}, \"left_eye_49\": {\"y\": 149, \"x\": 241}, \"left_eye_48\": {\"y\": 149, \"x\": 244}, \"left_eye_pupil_radius\": 21, \"left_eye_61\": {\"y\": 133, \"x\": 212}, \"left_eye_38\": {\"y\": 150, \"x\": 272}, \"left_eye_33\": {\"y\": 148, \"x\": 286}, \"left_eye_60\": {\"y\": 135, \"x\": 214}, \"left_eye_44\": {\"y\": 150, \"x\": 255}, \"left_eye_36\": {\"y\": 150, \"x\": 278}, \"left_eye_37\": {\"y\": 150, \"x\": 275}, \"left_eye_34\": {\"y\": 149, \"x\": 284}, \"left_eye_35\": {\"y\": 149, \"x\": 281}, \"left_eye_18\": {\"y\": 117, \"x\": 260}, \"left_eye_19\": {\"y\": 118, \"x\": 263}, \"left_eye_30\": {\"y\": 140, \"x\": 288}, \"left_eye_31\": {\"y\": 143, \"x\": 288}, \"left_eye_14\": {\"y\": 114, \"x\": 248}, \"left_eye_15\": {\"y\": 115, \"x\": 251}, \"left_eye_16\": {\"y\": 115, \"x\": 254}, \"left_eye_17\": {\"y\": 116, \"x\": 257}, \"left_eye_10\": {\"y\": 113, \"x\": 236}, \"left_eye_11\": {\"y\": 113, \"x\": 239}, \"left_eye_12\": {\"y\": 113, \"x\": 242}, \"left_eye_13\": {\"y\": 114, \"x\": 245}, \"left_eye_50\": {\"y\": 148, \"x\": 239}, \"left_eye_51\": {\"y\": 147, \"x\": 236}, \"left_eye_52\": {\"y\": 146, \"x\": 233}, \"left_eye_53\": {\"y\": 145, \"x\": 230}, \"left_eye_54\": {\"y\": 144, \"x\": 228}, \"left_eye_55\": {\"y\": 143, \"x\": 225}, \"left_eye_56\": {\"y\": 142, \"x\": 223}, \"left_eye_57\": {\"y\": 140, \"x\": 220}, \"left_eye_58\": {\"y\": 139, \"x\": 218}, \"left_eye_59\": {\"y\": 137, \"x\": 216}, \"left_eye_62\": {\"y\": 130, \"x\": 211}, \"left_eye_pupil_center\": {\"y\": 127, \"x\": 255}, \"left_eye_6\": {\"y\": 116, \"x\": 224}, \"left_eye_7\": {\"y\": 115, \"x\": 227}, \"left_eye_4\": {\"y\": 118, \"x\": 218}, \"left_eye_5\": {\"y\": 117, \"x\": 221}, \"left_eye_2\": {\"y\": 122, \"x\": 214}, \"left_eye_3\": {\"y\": 120, \"x\": 216}, \"left_eye_0\": {\"y\": 128, \"x\": 211}, \"left_eye_1\": {\"y\": 125, \"x\": 212}, \"left_eye_8\": {\"y\": 114, \"x\": 230}, \"left_eye_9\": {\"y\": 114, \"x\": 233}, \"left_eye_21\": {\"y\": 121, \"x\": 269}, \"left_eye_20\": {\"y\": 119, \"x\": 266}, \"left_eye_23\": {\"y\": 124, \"x\": 274}, \"left_eye_22\": {\"y\": 122, \"x\": 271}, \"left_eye_25\": {\"y\": 128, \"x\": 279}, \"left_eye_24\": {\"y\": 126, \"x\": 276}, \"left_eye_27\": {\"y\": 132, \"x\": 283}, \"left_eye_26\": {\"y\": 130, \"x\": 281}, \"left_eye_29\": {\"y\": 137, \"x\": 287}, \"left_eye_28\": {\"y\": 134, \"x\": 285}, \"left_eye_39\": {\"y\": 150, \"x\": 270}}, \"right_eye\": {\"right_eye_pupil_center\": {\"y\": 162, \"x\": 476}, \"right_eye_38\": {\"y\": 178, \"x\": 449}, \"right_eye_39\": {\"y\": 179, \"x\": 452}, \"right_eye_36\": {\"y\": 176, \"x\": 444}, \"right_eye_37\": {\"y\": 177, \"x\": 446}, \"right_eye_34\": {\"y\": 174, \"x\": 439}, \"right_eye_35\": {\"y\": 175, \"x\": 441}, \"right_eye_32\": {\"y\": 170, \"x\": 435}, \"right_eye_33\": {\"y\": 172, \"x\": 437}, \"right_eye_30\": {\"y\": 164, \"x\": 437}, \"right_eye_31\": {\"y\": 167, \"x\": 436}, \"right_eye_10\": {\"y\": 154, \"x\": 494}, \"right_eye_11\": {\"y\": 153, \"x\": 491}, \"right_eye_12\": {\"y\": 153, \"x\": 488}, \"right_eye_13\": {\"y\": 152, \"x\": 485}, \"right_eye_14\": {\"y\": 151, \"x\": 482}, \"right_eye_15\": {\"y\": 151, \"x\": 479}, \"right_eye_16\": {\"y\": 151, \"x\": 476}, \"right_eye_17\": {\"y\": 151, \"x\": 473}, \"right_eye_18\": {\"y\": 151, \"x\": 470}, \"right_eye_19\": {\"y\": 151, \"x\": 467}, \"right_eye_56\": {\"y\": 184, \"x\": 499}, \"right_eye_57\": {\"y\": 183, \"x\": 502}, \"right_eye_50\": {\"y\": 185, \"x\": 482}, \"right_eye_51\": {\"y\": 185, \"x\": 485}, \"right_eye_52\": {\"y\": 185, \"x\": 488}, \"right_eye_53\": {\"y\": 185, \"x\": 491}, \"right_eye_pupil_radius\": 21, \"right_eye_8\": {\"y\": 157, \"x\": 499}, \"right_eye_9\": {\"y\": 155, \"x\": 497}, \"right_eye_6\": {\"y\": 160, \"x\": 505}, \"right_eye_7\": {\"y\": 158, \"x\": 502}, \"right_eye_4\": {\"y\": 163, \"x\": 510}, \"right_eye_5\": {\"y\": 161, \"x\": 507}, \"right_eye_2\": {\"y\": 168, \"x\": 514}, \"right_eye_3\": {\"y\": 165, \"x\": 512}, \"right_eye_0\": {\"y\": 173, \"x\": 515}, \"right_eye_1\": {\"y\": 171, \"x\": 515}, \"right_eye_58\": {\"y\": 182, \"x\": 505}, \"right_eye_29\": {\"y\": 162, \"x\": 439}, \"right_eye_28\": {\"y\": 160, \"x\": 441}, \"right_eye_62\": {\"y\": 176, \"x\": 514}, \"right_eye_21\": {\"y\": 152, \"x\": 461}, \"right_eye_20\": {\"y\": 151, \"x\": 464}, \"right_eye_23\": {\"y\": 154, \"x\": 455}, \"right_eye_22\": {\"y\": 153, \"x\": 458}, \"right_eye_25\": {\"y\": 156, \"x\": 449}, \"right_eye_24\": {\"y\": 155, \"x\": 452}, \"right_eye_27\": {\"y\": 159, \"x\": 444}, \"right_eye_26\": {\"y\": 157, \"x\": 447}, \"right_eye_59\": {\"y\": 181, \"x\": 507}, \"right_eye_61\": {\"y\": 178, \"x\": 512}, \"right_eye_60\": {\"y\": 179, \"x\": 510}, \"right_eye_49\": {\"y\": 185, \"x\": 479}, \"right_eye_48\": {\"y\": 185, \"x\": 477}, \"right_eye_47\": {\"y\": 184, \"x\": 474}, \"right_eye_46\": {\"y\": 184, \"x\": 471}, \"right_eye_45\": {\"y\": 183, \"x\": 468}, \"right_eye_44\": {\"y\": 183, \"x\": 465}, \"right_eye_43\": {\"y\": 182, \"x\": 463}, \"right_eye_42\": {\"y\": 181, \"x\": 460}, \"right_eye_41\": {\"y\": 180, \"x\": 457}, \"right_eye_40\": {\"y\": 180, \"x\": 454}, \"right_eye_54\": {\"y\": 185, \"x\": 494}, \"right_eye_55\": {\"y\": 184, \"x\": 496}}}, \"face_rectangle\": {\"width\": 464, \"top\": 59, \"height\": 464, \"left\": 147}}}";
Poco
::
JSON
::
Parser
parser
;
Poco
::
JSON
::
Parser
parser
;
const
Dynamic
::
Var
&
var
=
parser
.
parse
(
pointJsonStr
);
const
Dynamic
::
Var
&
var
=
parser
.
parse
(
pointJsonStr
);
int
right_eye_pupil_radius
;
int
right_eye_pupil_center_x
;
int
right_eye_pupil_center_y
;
int
eye_pupil_radius
;
int
eye_pupil_center_x
;
int
eye_pupil_center_y
;
if
(
!
var
.
isEmpty
()){
if
(
!
var
.
isEmpty
()){
const
JSON
::
Object
::
Ptr
&
objPtr
=
var
.
extract
<
Poco
::
JSON
::
Object
::
Ptr
>
();
const
JSON
::
Object
::
Ptr
&
objPtr
=
var
.
extract
<
Poco
::
JSON
::
Object
::
Ptr
>
();
// const JSON::Array::Ptr &facesArrayPtr = objPtr->getArray("faces");
//1000关键点
//1000关键点
const
JSON
::
Object
::
Ptr
&
facesArrayPtr
=
objPtr
->
getObject
(
"face"
);
const
JSON
::
Object
::
Ptr
&
facesArrayPtr
=
objPtr
->
getObject
(
"face"
);
// const SharedPtr<Poco::JSON::Object> &faceItem0 = facesArrayPtr->getObject(0);
JSON
::
Object
::
Ptr
pointPtr
=
facesArrayPtr
->
getObject
(
"landmark"
);
JSON
::
Object
::
Ptr
pointPtr
=
facesArrayPtr
->
getObject
(
"landmark"
);
int
x
,
y
;
int
x
,
y
;
JSON
::
Object
::
Ptr
point
;
JSON
::
Object
::
Ptr
point
;
string
direct
;
if
(
direct
==
"left"
)
direct
=
"right"
;
{
std
::
vector
<
string
>
rightPoints
=
{
direct
+
"_eye_left_corner"
,
direct
+
"_eye_upper_left_quarter"
,
direct
+
"_eye_top"
,
int
srcPoints
[
63
*
2
];
direct
+
"_eye_upper_right_quarter"
,
direct
+
"_eye_right_corner"
,
direct
+
"_eye_lower_right_quarter"
,
string
direct
=
"left"
;
direct
+
"_eye_bottom"
,
direct
+
"_eye_lower_left_quarter"
,
direct
+
"_eye_pupil"
};
direct
=
"left"
;
std
::
vector
<
string
>
leftPoints
=
{
direct
+
"_eye_left_corner"
,
direct
+
"_eye_upper_left_quarter"
,
direct
+
"_eye_top"
,
direct
+
"_eye_upper_right_quarter"
,
direct
+
"_eye_right_corner"
,
direct
+
"_eye_lower_right_quarter"
,
direct
+
"_eye_bottom"
,
direct
+
"_eye_lower_left_quarter"
,
direct
+
"_eye_pupil"
};
// for(int i=0,index=0;i<rightPoints.size();++i){
// point = pointPtr->getObject(rightPoints.at(i));
// x = point->get("x");
// y = point->get("y");
//// putText(temp, to_string(i), cvPoint(x - 10, y - 10),FONT_HERSHEY_SIMPLEX, 0.2, (0, 255, 0), 1);
//// circle(temp, cvPoint(x, y), 1, cv::Scalar(0, 0, 255), -1);
// srcPoints[index++] = x;
// srcPoints[index++] = y;
// }
//1000点
//1000点
pointPtr
=
pointPtr
->
getObject
(
"right_eye"
);
pointPtr
=
pointPtr
->
getObject
(
direct
+
"_eye"
);
const
JSON
::
Object
::
NameList
&
names
=
pointPtr
->
getNames
();
cout
<<
names
.
size
()
<<
endl
;
direct
=
"right"
;
for
(
int
i
=
0
,
index
=
0
;
i
<
63
;
++
i
){
for
(
int
i
=
0
,
index
=
0
;
i
<
63
;
++
i
){
const
JSON
::
Object
::
Ptr
&
ptr
=
pointPtr
->
getObject
(
direct
+
"_eye_"
+
to_string
(
i
));
const
JSON
::
Object
::
Ptr
&
ptr
=
pointPtr
->
getObject
(
direct
+
"_eye_"
+
to_string
(
i
));
...
@@ -443,30 +413,131 @@ int main(int argc, char* argv[]){
...
@@ -443,30 +413,131 @@ int main(int argc, char* argv[]){
srcPoints
[
index
++
]
=
x
;
srcPoints
[
index
++
]
=
x
;
srcPoints
[
index
++
]
=
y
;
srcPoints
[
index
++
]
=
y
;
}
}
right_eye_pupil_radius
=
pointPtr
->
get
(
"right
_eye_pupil_radius"
);
eye_pupil_radius
=
pointPtr
->
get
(
direct
+
"
_eye_pupil_radius"
);
const
JSON
::
Object
::
Ptr
&
ptr
=
pointPtr
->
getObject
(
"right
_eye_pupil_center"
);
const
JSON
::
Object
::
Ptr
&
ptr
=
pointPtr
->
getObject
(
direct
+
"
_eye_pupil_center"
);
right_
eye_pupil_center_x
=
ptr
->
get
(
"x"
);
eye_pupil_center_x
=
ptr
->
get
(
"x"
);
right_
eye_pupil_center_y
=
ptr
->
get
(
"y"
);
eye_pupil_center_y
=
ptr
->
get
(
"y"
);
// circle(temp, cvPoint(right_eye_pupil_center_x, right_eye_pupil_center_y), right_eye_pupil_radius, cv::Scalar(0, 255, 0), 1);
// circle(temp, cvPoint(right_eye_pupil_center_x, right_eye_pupil_center_y), right_eye_pupil_radius, cv::Scalar(0, 255, 0), 1);
cout
<<
"right_eye_pupil_radius="
<<
right_eye_pupil_radius
<<
endl
;
cout
<<
direct
+
"_eye_pupil_radius="
<<
eye_pupil_radius
<<
endl
;
cout
<<
"time cost ="
<<
(
int
)(
stopwatch
.
elapsed
()
/
1000
)
<<
endl
;
//美瞳
cv
::
Mat
meitong
=
imread
(
irisPath
);
unsigned
char
*
maskData
=
meitong
.
data
;
int
mWidth
=
meitong
.
cols
,
mHeight
=
meitong
.
rows
,
mStride
=
mWidth
*
meitong
.
channels
();
unsigned
char
*
srcData
=
temp
.
data
;
int
width
=
temp
.
cols
,
height
=
temp
.
rows
,
stride
=
width
*
temp
.
channels
();
f_BeautyIris
(
srcData
,
width
,
height
,
stride
,
srcPoints
,
maskData
,
mWidth
,
mHeight
,
mStride
,
NULL
,
100
,
eye_pupil_radius
,
eye_pupil_center_x
,
eye_pupil_center_y
);
imshow
(
"美瞳"
,
temp
);
// imwrite("/Users/edz/Downloads/右眼美瞳后.jpg",temp);
waitKey
(
0
);
}
}
//Display it all on the screen
else
if
(
direct
==
"right"
)
// imshow("Dlib特征点", temp);
{
// waitKey(0);
int
srcPoints
[
63
*
2
];
string
direct
=
"right"
;
//1000点
direct
=
"right"
;
pointPtr
=
pointPtr
->
getObject
(
direct
+
"_eye"
);
for
(
int
i
=
0
,
index
=
0
;
i
<
63
;
++
i
){
const
JSON
::
Object
::
Ptr
&
ptr
=
pointPtr
->
getObject
(
direct
+
"_eye_"
+
to_string
(
i
));
x
=
ptr
->
get
(
"x"
);
y
=
ptr
->
get
(
"y"
);
// putText(temp, to_string(i), cvPoint(x - 10, y - 10),FONT_HERSHEY_SIMPLEX, 0.2, (0, 255, 0), 1);
// circle(temp, cvPoint(x, y), 1, cv::Scalar(0, 0, 255), -1);
srcPoints
[
index
++
]
=
x
;
srcPoints
[
index
++
]
=
y
;
}
eye_pupil_radius
=
pointPtr
->
get
(
direct
+
"_eye_pupil_radius"
);
const
JSON
::
Object
::
Ptr
&
ptr
=
pointPtr
->
getObject
(
direct
+
"_eye_pupil_center"
);
eye_pupil_center_x
=
ptr
->
get
(
"x"
);
eye_pupil_center_y
=
ptr
->
get
(
"y"
);
// circle(temp, cvPoint(right_eye_pupil_center_x, right_eye_pupil_center_y), right_eye_pupil_radius, cv::Scalar(0, 255, 0), 1);
cout
<<
direct
+
"_eye_pupil_radius="
<<
eye_pupil_radius
<<
endl
;
//美瞳
//美瞳
cv
::
Mat
meitong
=
imread
(
irisPath
);
cv
::
Mat
meitong
=
imread
(
irisPath
);
unsigned
char
*
maskData
=
meitong
.
data
;
unsigned
char
*
maskData
=
meitong
.
data
;
int
mWidth
=
meitong
.
cols
,
mHeight
=
meitong
.
rows
,
mStride
=
mWidth
*
meitong
.
channels
();
int
mWidth
=
meitong
.
cols
,
mHeight
=
meitong
.
rows
,
mStride
=
mWidth
*
meitong
.
channels
();
unsigned
char
*
srcData
=
temp
.
data
;
unsigned
char
*
srcData
=
temp
.
data
;
int
width
=
temp
.
cols
,
height
=
temp
.
rows
,
stride
=
width
*
temp
.
channels
();
int
width
=
temp
.
cols
,
height
=
temp
.
rows
,
stride
=
width
*
temp
.
channels
();
f_BeautyIris
(
srcData
,
width
,
height
,
stride
,
srcPoints
,
maskData
,
mWidth
,
mHeight
,
mStride
,
NULL
,
100
,
right_eye_pupil_radius
,
right_eye_pupil_center_x
,
right_
eye_pupil_center_y
);
f_BeautyIris
(
srcData
,
width
,
height
,
stride
,
srcPoints
,
maskData
,
mWidth
,
mHeight
,
mStride
,
NULL
,
100
,
eye_pupil_radius
,
eye_pupil_center_x
,
eye_pupil_center_y
);
imshow
(
"美瞳"
,
temp
);
imshow
(
"美瞳"
,
temp
);
// imwrite("/Users/edz/Downloads/右眼美瞳后.jpg",temp);
// imwrite("/Users/edz/Downloads/右眼美瞳后.jpg",temp);
waitKey
(
0
);
waitKey
(
0
);
}
else
{
int
srcPoints
[
63
*
2
];
string
direct
;
//1000点
direct
=
"right"
;
pointPtr
=
pointPtr
->
getObject
(
direct
+
"_eye"
);
for
(
int
i
=
0
,
index
=
0
;
i
<
63
;
++
i
){
const
JSON
::
Object
::
Ptr
&
ptr
=
pointPtr
->
getObject
(
direct
+
"_eye_"
+
to_string
(
i
));
x
=
ptr
->
get
(
"x"
);
y
=
ptr
->
get
(
"y"
);
// putText(temp, to_string(i), cvPoint(x - 10, y - 10),FONT_HERSHEY_SIMPLEX, 0.2, (0, 255, 0), 1);
// circle(temp, cvPoint(x, y), 1, cv::Scalar(0, 0, 255), -1);
srcPoints
[
index
++
]
=
x
;
srcPoints
[
index
++
]
=
y
;
}
eye_pupil_radius
=
pointPtr
->
get
(
direct
+
"_eye_pupil_radius"
);
JSON
::
Object
::
Ptr
ptr
=
pointPtr
->
getObject
(
direct
+
"_eye_pupil_center"
);
eye_pupil_center_x
=
ptr
->
get
(
"x"
);
eye_pupil_center_y
=
ptr
->
get
(
"y"
);
// circle(temp, cvPoint(eye_pupil_center_x, eye_pupil_center_y), eye_pupil_radius, cv::Scalar(0, 255, 0), 1);
cout
<<
direct
+
"_eye_pupil_radius="
<<
eye_pupil_radius
<<
endl
;
//美瞳
cv
::
Mat
meitong
=
imread
(
irisPath
);
unsigned
char
*
maskData
=
meitong
.
data
;
int
mWidth
=
meitong
.
cols
,
mHeight
=
meitong
.
rows
,
mStride
=
mWidth
*
meitong
.
channels
();
unsigned
char
*
srcData
=
temp
.
data
;
int
width
=
temp
.
cols
,
height
=
temp
.
rows
,
stride
=
width
*
temp
.
channels
();
f_BeautyIris
(
srcData
,
width
,
height
,
stride
,
srcPoints
,
maskData
,
mWidth
,
mHeight
,
mStride
,
NULL
,
100
,
eye_pupil_radius
,
eye_pupil_center_x
,
eye_pupil_center_y
);
int
srcPoints2
[
63
*
2
];
direct
=
"left"
;
pointPtr
=
facesArrayPtr
->
getObject
(
"landmark"
);
pointPtr
=
pointPtr
->
getObject
(
direct
+
"_eye"
);
for
(
int
i
=
0
,
index
=
0
;
i
<
63
;
++
i
){
const
JSON
::
Object
::
Ptr
&
ptr
=
pointPtr
->
getObject
(
direct
+
"_eye_"
+
to_string
(
i
));
x
=
ptr
->
get
(
"x"
);
y
=
ptr
->
get
(
"y"
);
// putText(temp, to_string(i), cvPoint(x - 10, y - 10),FONT_HERSHEY_SIMPLEX, 0.2, (0, 255, 0), 1);
// circle(temp, cvPoint(x, y), 1, cv::Scalar(0, 0, 255), -1);
srcPoints2
[
index
++
]
=
x
;
srcPoints2
[
index
++
]
=
y
;
}
eye_pupil_radius
=
pointPtr
->
get
(
direct
+
"_eye_pupil_radius"
);
ptr
=
pointPtr
->
getObject
(
direct
+
"_eye_pupil_center"
);
eye_pupil_center_x
=
ptr
->
get
(
"x"
);
eye_pupil_center_y
=
ptr
->
get
(
"y"
);
// circle(temp, cvPoint(eye_pupil_center_x, eye_pupil_center_y), eye_pupil_radius, cv::Scalar(0, 255, 0), 1);
cout
<<
direct
+
"_eye_pupil_radius="
<<
eye_pupil_radius
<<
endl
;
//美瞳
meitong
=
imread
(
irisPath
);
maskData
=
meitong
.
data
;
mWidth
=
meitong
.
cols
,
mHeight
=
meitong
.
rows
,
mStride
=
mWidth
*
meitong
.
channels
();
srcData
=
temp
.
data
;
width
=
temp
.
cols
,
height
=
temp
.
rows
,
stride
=
width
*
temp
.
channels
();
f_BeautyIris
(
srcData
,
width
,
height
,
stride
,
srcPoints2
,
maskData
,
mWidth
,
mHeight
,
mStride
,
NULL
,
100
,
eye_pupil_radius
,
eye_pupil_center_x
,
eye_pupil_center_y
);
}
imshow
(
"美瞳"
,
temp
);
imwrite
(
"/Users/edz/Downloads/右眼美瞳后.jpg"
,
temp
);
waitKey
(
0
);
cout
<<
"time cost ="
<<
(
int
)(
stopwatch
.
elapsed
()
/
1000
)
<<
endl
;
}
//Display it all on the screen
// imshow("Dlib特征点", temp);
// waitKey(0);
}
}
catch
(
serialization_error
&
e
)
catch
(
serialization_error
&
e
)
{
{
...
@@ -485,12 +556,12 @@ int main(int argc, char* argv[]){
...
@@ -485,12 +556,12 @@ int main(int argc, char* argv[]){
// waitKey(0);
// waitKey(0);
// cout << "aaa" << endl;
// cout << "aaa" << endl;
}
else
{
}
else
{
std
::
string
stRes
;
//
std::string stRes;
StreamCopier
::
copyToString
(
istream
,
stRes
);
//
StreamCopier::copyToString(istream, stRes);
//
std
::
cout
<<
stRes
<<
std
::
endl
;
//
std::cout<< stRes <<std::endl;
//
std
::
cout
<<
status
<<
std
::
endl
;
//
std::cout<< status <<std::endl;
}
}
}
}
int
main28
(
int
argc
,
char
*
argv
[]){
int
main28
(
int
argc
,
char
*
argv
[]){
...
@@ -535,15 +606,6 @@ int main28(int argc, char* argv[]){
...
@@ -535,15 +606,6 @@ int main28(int argc, char* argv[]){
std
::
vector
<
string
>
leftPoints
=
{
direct
+
"_eye_left_corner"
,
direct
+
"_eye_upper_left_quarter"
,
direct
+
"_eye_top"
,
std
::
vector
<
string
>
leftPoints
=
{
direct
+
"_eye_left_corner"
,
direct
+
"_eye_upper_left_quarter"
,
direct
+
"_eye_top"
,
direct
+
"_eye_upper_right_quarter"
,
direct
+
"_eye_right_corner"
,
direct
+
"_eye_lower_right_quarter"
,
direct
+
"_eye_upper_right_quarter"
,
direct
+
"_eye_right_corner"
,
direct
+
"_eye_lower_right_quarter"
,
direct
+
"_eye_bottom"
,
direct
+
"_eye_lower_left_quarter"
,
direct
+
"_eye_pupil"
};
direct
+
"_eye_bottom"
,
direct
+
"_eye_lower_left_quarter"
,
direct
+
"_eye_pupil"
};
// for(int i=0,index=0;i<rightPoints.size();++i){
// point = pointPtr->getObject(rightPoints.at(i));
// x = point->get("x");
// y = point->get("y");
//// putText(temp, to_string(i), cvPoint(x - 10, y - 10),FONT_HERSHEY_SIMPLEX, 0.2, (0, 255, 0), 1);
//// circle(temp, cvPoint(x, y), 1, cv::Scalar(0, 0, 255), -1);
// srcPoints[index++] = x;
// srcPoints[index++] = y;
// }
//1000点
//1000点
pointPtr
=
pointPtr
->
getObject
(
"right_eye"
);
pointPtr
=
pointPtr
->
getObject
(
"right_eye"
);
const
JSON
::
Object
::
NameList
&
names
=
pointPtr
->
getNames
();
const
JSON
::
Object
::
NameList
&
names
=
pointPtr
->
getNames
();
...
...
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