blob: 2e40ee122e07826c5176eeaceb973eed5d6c65a7 [file] [log] [blame]
#ifndef SAMPLES_PERSON_DETECTION_H
#define SAMPLES_PERSON_DETECTION_H
#include <stdint.h>
typedef struct {
int8_t non_person_score;
int8_t person_score;
} PersonDetectionOutput;
#endif