mirror of
				https://github.com/0xFEEDC0DE64/arduino-esp32.git
				synced 2025-10-31 06:01:39 +01:00 
			
		
		
		
	This is very much still work in progress and much more will change before the final 2.0.0 Some APIs have changed. New libraries have been added. LittleFS included. Co-authored-by: Seon Rozenblum <seonr@3sprockets.com> Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com> Co-authored-by: geeksville <kevinh@geeksville.com> Co-authored-by: Mike Dunston <m_dunston@comcast.net> Co-authored-by: Unexpected Maker <seon@unexpectedmaker.com> Co-authored-by: Seon Rozenblum <seonr@3sprockets.com> Co-authored-by: microDev <70126934+microDev1@users.noreply.github.com> Co-authored-by: tobozo <tobozo@users.noreply.github.com> Co-authored-by: bobobo1618 <bobobo1618@users.noreply.github.com> Co-authored-by: lorol <lorolouis@gmail.com> Co-authored-by: geeksville <kevinh@geeksville.com> Co-authored-by: Limor "Ladyada" Fried <limor@ladyada.net> Co-authored-by: Sweety <switi.mhaiske@espressif.com> Co-authored-by: Loick MAHIEUX <loick111@gmail.com> Co-authored-by: Larry Bernstone <lbernstone@gmail.com> Co-authored-by: Valerii Koval <valeros@users.noreply.github.com> Co-authored-by: 快乐的我531 <2302004040@qq.com> Co-authored-by: chegewara <imperiaonline4@gmail.com> Co-authored-by: Clemens Kirchgatterer <clemens@1541.org> Co-authored-by: Aron Rubin <aronrubin@gmail.com> Co-authored-by: Pete Lewis <601236+lewispg228@users.noreply.github.com>
		
			
				
	
	
		
			88 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|   * ESPRESSIF MIT License
 | |
|   *
 | |
|   * Copyright (c) 2018 <ESPRESSIF SYSTEMS (SHANGHAI) PTE LTD>
 | |
|   *
 | |
|   * Permission is hereby granted for use on ESPRESSIF SYSTEMS products only, in which case,
 | |
|   * it is free of charge, to any person obtaining a copy of this software and associated
 | |
|   * documentation files (the "Software"), to deal in the Software without restriction, including
 | |
|   * without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
 | |
|   * and/or sell copies of the Software, and to permit persons to whom the Software is furnished
 | |
|   * to do so, subject to the following conditions:
 | |
|   *
 | |
|   * The above copyright notice and this permission notice shall be included in all copies or
 | |
|   * substantial portions of the Software.
 | |
|   *
 | |
|   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | |
|   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 | |
|   * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 | |
|   * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 | |
|   * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 | |
|   * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | |
|   *
 | |
|   */
 | |
| #pragma once
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C"
 | |
| {
 | |
| #endif
 | |
| #include "dl_lib_matrix3d.h"
 | |
| #include "dl_lib_matrix3dq.h"
 | |
| #include "freertos/FreeRTOS.h"
 | |
| 
 | |
|     typedef enum
 | |
|     {
 | |
|         Anchor_Point, /*<! Anchor point detection model*/
 | |
|         Anchor_Box    /*<! Anchor box detection model */
 | |
|     } detection_model_type_t;
 | |
| 
 | |
|     typedef struct
 | |
|     {
 | |
|         int **anchors_shape; /*<! Anchor shape of this stage */
 | |
|         int stride;          /*<! Zoom in stride of this stage */
 | |
|         int boundary;        /*<! Detection image low-limit of this stage */
 | |
|         int project_offset;  /*<! Project offset of this stage */
 | |
|     } detection_stage_config_t;
 | |
| 
 | |
|     typedef struct
 | |
|     {
 | |
|         dl_matrix3dq_t *score;           /*<! score feature map of this stage*/
 | |
|         dl_matrix3dq_t *box_offset;      /*<! box_offset feature map of this stage*/
 | |
|         dl_matrix3dq_t *landmark_offset; /*<! landmark_offset feature map of this stage */
 | |
|     } detection_stage_result_t;
 | |
| 
 | |
|     typedef struct
 | |
|     {
 | |
|         int resized_height;    /*<! The height after resized */
 | |
|         int resized_width;     /*<! The width after resized */
 | |
|         fptp_t y_resize_scale; /*<! resized_height / input_height */
 | |
|         fptp_t x_resize_scale; /*<! resized_width / input_width */
 | |
|         qtp_t score_threshold; /*<! Score threshold of detection model */
 | |
|         fptp_t nms_threshold;  /*<! NMS threshold of detection model */
 | |
|         bool with_landmark;    /*<! Whether detection with landmark, true: with, false: without */
 | |
|         bool free_image;       /*<! Whether free the resized image */
 | |
|         int enabled_top_k;     /*<! The number of enabled stages */
 | |
|     } detection_model_config_t;
 | |
| 
 | |
|     typedef struct
 | |
|     {
 | |
|         detection_stage_config_t *stage_config;                                                                      /*<! Configuration of each stage */
 | |
|         int stage_number;                                                                                            /*<! The number of stages */
 | |
|         detection_model_type_t model_type;                                                                           /*<! The type of detection model */
 | |
|         detection_model_config_t model_config;                                                                       /*<! Configuration of detection model */
 | |
|         detection_stage_result_t *(*op)(dl_matrix3dq_t *, detection_model_config_t *);                               /*<! The function of detection inference */
 | |
|         void *(*get_boxes)(detection_stage_result_t *, detection_model_config_t *, detection_stage_config_t *, int); /*<! The function of how to get real boxes */
 | |
|     } detection_model_t;
 | |
| 
 | |
|     /**
 | |
|      * @brief free 'detection_stage_result_t' type value
 | |
|      * 
 | |
|      * @param value A 'detection_stage_result_t' type value
 | |
|      */
 | |
|     void free_detection_stage_result(detection_stage_result_t value);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |