#pragma once #include #include "dl_detect_define.hpp" #include "app_define.h" /** * @brief Draw detection result on RGB565 image. * * @param image_ptr image * @param image_height height of image * @param image_width width of image * @param results detection results */ void draw_detection_result(uint16_t *image_ptr, int image_height, int image_width, std::list &results); /** * @brief Draw detection result on RGB888 image. * * @param image_ptr image * @param image_height height of image * @param image_width width of image * @param results detection results */ void draw_detection_result(uint8_t *image_ptr, int image_height, int image_width, std::list &results); /** * @brief Print detection result in terminal * * @param results detection results */ void print_detection_result(std::list &results);