Spaces:
Sleeping
Sleeping
File size: 6,048 Bytes
d936db7 |
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
muscles_map = {
'Corrugator Supercilii':{
'right':{
'points':[70,63,105,66,107],
'description':'',
},
'left':{
'points':[336,296,334,293,300],
'description':'',
},
},
'Procerus':{
'center':{
'points':[9,8],
'description':'',
},
},
'Medial Orbicularis Oculi':{
'right':{
'points':[221,189],
'description':'',
},
'left':{
'points':[413,441],
'description':'',
},
},
'Frontalis':{
'right':{
'superior':{
'points':[104,69,108],
'description':'',
},
'inferior':{
'points':[103,67,109],
'description':'',
},
},
'center':{
'superior':{
'points':[10],
'description':'',
},
'inferior':{
'points':[151],
'description':'',
},
},
'left':{
'superior':{
'points':[338,297,332],
'description':'',
},
'inferior':{
'points':[337,299,333],
'description':'',
},
},
},
'Lateral Orbicularis Oculi':{
'right':{
'internal':{
'points':[156,143,116],
'description':'',
},
'external':{
'points':[139,34,227],
'description':'',
},
},
'left':{
'internal':{
'points':[383,372,345],
'description':"Crow's feet",
},
'external':{
'points':[368,264,447],
'description':"Crow's feet",
},
},
},
'Lateral Superior Orbicularis Oculi':{
'right':{
'points':[224,225,113],
'description':"Eyebrow lift",
},
'left':{
'points':[444,445,342],
'description':"Eyebrow lift",
},
},
'Nasalis':{
'right':{
'points':[196,174,217],
'description':"Rabbit's lines",
},
'left':{
'points':[419,399,437],
'description':"Rabbit's lines",
},
},
'Dilator nasalis':{
'right':{
'points':[134,131],
'description':"Reduce nostril size",
},
'left':{
'points':[363,360],
'description':"Reduce nostril size",
},
},
'Depressor septi nasi':{
'center':{
'points':[2],
'description':"Nose lift",
},
},
'Depressor anguli oris':{
'right':{
'points':[202,169,149],
'description':"corner lip lift",
},
'left':{
'points':[422,394,378],
'description':"corner lip lift",
},
},
'Orbicularis':{
'right':{
'superior':{
'points':[61,185,40,39,37],
'description':'',
},
'inferior':{
'points':[61,146,91,181,84],
'description':'',
},
},
'center':{
'superior':{
'points':[0],
'description':'',
},
'inferior':{
'points':[17],
'description':'',
},
},
'left':{
'superior':{
'points':[267,269,270,409,291],
'description':'',
},
'inferior':{
'points':[314,405,321,375,291],
'description':'',
},
},
},
'Levator labii superioris alaeque nasi':{
'right':{
'points':[203],
'description':"gummy smile",
},
'left':{
'points':[423],
'description':"gummy smile",
},
},
'Mentalis':{
'right':{
'points':[171,148],
'description':"Chin crease",
},
'center':{
'points':[152],
'description':"Chin crease",
},
'left':{
'points':[396,377],
'description':"Chin crease",
},
},
}
tasks_map = {
"Gallabela crease":{
'muscles':['Corrugator Supercilii','Procerus'],
'description':"",
},
"Forehead crease":{
'muscles':['Frontalis'],
'description':"",
},
"Crow's feet crease":{
'muscles':['Lateral Orbicularis Oculi'],
'description':"",
},
"Lift of eyebrows":{
'muscles':['Lateral Superior Orbicularis Oculi'],
'description':"",
},
"Chemical lift of eyebrows":{
'muscles':['Lateral Superior Orbicularis Oculi','Corrugator Supercilii','Procerus'],
'description':"",
},
"Nose crease":{
'muscles':['Nasalis'],
'description':"",
},
"Lift of nose":{
'muscles':['Depressor septi nasi'],
'description':"",
},
"Reducing the size of nostrils":{
'muscles':['Dilator nasalis'],
'description':"",
},
"Lift of the corner of the lips":{
'muscles':['Depressor anguli oris'],
'description':"",
},
"Ciggarete crease":{
'muscles':['Orbicularis'],
'description':"",
},
"Gummy smile":{
'muscles':['Levator labii superioris alaeque nasi'],
'description':"",
},
"Chin crease":{
'muscles':['Mentalis'],
'description':"",
},
} |