STM32N6 NPU Deployment — Politecnico di Milano  1.0
Documentation for Neural Network Deployment on STM32N6 NPU - Politecnico di Milano 2024-2025
crop_img.h
Go to the documentation of this file.
1 
18 #ifndef CROP_IMG
19 #define CROP_IMG
20 #include "arm_math.h"
21 
22 
23 void img_crop(uint8_t *src_image, uint8_t *dst_img, const uint32_t src_width,
24  const uint16_t dst_width, const uint16_t dst_height,
25  const uint16_t bpp);
26 
27 #endif
void img_crop(uint8_t *src_image, uint8_t *dst_img, const uint32_t src_width, const uint16_t dst_width, const uint16_t dst_height, const uint16_t bpp)
Definition: crop_img.c:21