-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaces.php
74 lines (72 loc) · 3.32 KB
/
faces.php
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
<div class="row">
<div class="col-12">
<ol>
<?php if ($faces): ?>
<?php foreach ($faces as $key => $face): ?>
<?php
// Assiging Colours to each face
$faceColorR = random_int(0, 200);
$faceColorG = random_int(0, 200);
$faceColorB = random_int(0, 200);
$color = [$faceColorR, $faceColorG , $faceColorB];
$_SESSION['faces'][$imagetoken][$key] = json_encode($face->info()['landmarks']);
$_SESSION['faces']['colors'][$key] = $color;
?>
<br><br>
<li>
<strong style="color: rgb(<?php echo "$faceColorR, $faceColorG, $faceColorB"; ?>);">Face <?php echo $key + 1 ?></strong>
<hr>
<div class="row">
<div class="col-6">
<strong>Alegre</strong>
</div>
<div class="col-6">
<strong><?php echo $face->info()['joyLikelihood'] ?></strong>
</div>
</div>
<div class="row">
<div class="col-6">
<strong>Triste</strong>
</div>
<div class="col-6">
<strong><?php echo $face->info()['sorrowLikelihood'] ?></strong>
</div>
</div>
<div class="row">
<div class="col-6">
<strong>Bravo/a</strong>
</div>
<div class="col-6">
<strong><?php echo $face->info()['angerLikelihood'] ?></strong>
</div>
</div>
<div class="row">
<div class="col-6">
<strong>Surpreso/a</strong>
</div>
<div class="col-6">
<strong><?php echo $face->info()['surpriseLikelihood'] ?></strong>
</div>
</div>
<div class="row">
<div class="col-6">
<strong>Emborrado/a</strong>
</div>
<div class="col-6">
<strong><?php echo $face->info()['blurredLikelihood'] ?></strong>
</div>
</div>
<div class="row">
<div class="col-6">
<strong>Chapéu</strong>
</div>
<div class="col-6">
<strong><?php echo $face->info()['headwearLikelihood'] ?></strong>
</div>
</div>
</li>
<?php endforeach ?>
<?php endif ?>
</ol>
</div>
</div>