tq: remove unused check
Signed-off-by: Varun Patil <varunpatil@ucla.edu>pull/563/head
parent
a701ccd2f4
commit
ac1529bb87
|
@ -145,21 +145,20 @@ trait TimelineQueryPeopleRecognize
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Convert face fields to object */
|
/** Convert face fields to object */
|
||||||
private function processPeopleRecognizeDetection(&$row, $days = false)
|
private function processPeopleRecognizeDetection(&$row)
|
||||||
{
|
{
|
||||||
// Differentiate Recognize queries from Face Recognition
|
// Differentiate Recognize queries from Face Recognition
|
||||||
if (!isset($row) || !isset($row['face_w'])) {
|
if (!isset($row) || !isset($row['face_w'])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$days) {
|
// Convert face rect to object
|
||||||
$row['facerect'] = [
|
$row['facerect'] = [
|
||||||
'w' => (float) $row['face_w'],
|
'w' => (float) $row['face_w'],
|
||||||
'h' => (float) $row['face_h'],
|
'h' => (float) $row['face_h'],
|
||||||
'x' => (float) $row['face_x'],
|
'x' => (float) $row['face_x'],
|
||||||
'y' => (float) $row['face_y'],
|
'y' => (float) $row['face_y'],
|
||||||
];
|
];
|
||||||
}
|
|
||||||
|
|
||||||
unset($row['face_w'], $row['face_h'], $row['face_x'], $row['face_y']);
|
unset($row['face_w'], $row['face_h'], $row['face_x'], $row['face_y']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue