ESP32-S3模组上跑通esp32-camera(12)

接前一篇文章:ESP32-S3模组上跑通esp32-camera(11)

 

本文内容参考:

esp32-camera入门(基于ESP-IDF)_esp32 camera-CSDN博客

OV5640手册解读-CSDN博客

ESP32_CAM CameraWebServer例程源码解析笔记(一)_void startcameraserver();-CSDN博客

esp32-cam驱动程序阅读 - 哔哩哔哩

特此致谢!

 

一、OV5640初始化

2. 相机初始化及图像传感器配置

到上一回为止,讲解完了关于引脚配置的全部内容,本回开始解析camera的初始化及配置。再次贴出https://github.com/espressif/esp32-camera中的示例代码:

#include "esp_camera.h"//WROVER-KIT PIN Map
#define CAM_PIN_PWDN    -1 //power down is not used
#define CAM_PIN_RESET   -1 //software reset will be performed
#define CAM_PIN_XCLK    21
#define CAM_PIN_SIOD    26
#define CAM_PIN_SIOC    27#define CAM_PIN_D7      35
#define CAM_PIN_D6      34
#define CAM_PIN_D5      39
#define CAM_PIN_D4      36
#define CAM_PIN_D3      19
#define CAM_PIN_D2      18
#define CAM_PIN_D1       5
#define CAM_PIN_D0       4
#define CAM_PIN_VSYNC   25
#define CAM_PIN_HREF    23
#define CAM_PIN_PCLK    22static camera_config_t camera_config = {.pin_pwdn  = CAM_PIN_PWDN,.pin_reset = CAM_PIN_RESET,.pin_xclk = CAM_PIN_XCLK,.pin_sccb_sda = CAM_PIN_SIOD,.pin_sccb_scl = CAM_PIN_SIOC,.pin_d7 = CAM_PIN_D7,.pin_d6 = CAM_PIN_D6,.pin_d5 = CAM_PIN_D5,.pin_d4 = CAM_PIN_D4,.pin_d3 = CAM_PIN_D3,.pin_d2 = CAM_PIN_D2,.pin_d1 = CAM_PIN_D1,.pin_d0 = CAM_PIN_D0,.pin_vsync = CAM_PIN_VSYNC,.pin_href = CAM_PIN_HREF,.pin_pclk = CAM_PIN_PCLK,.xclk_freq_hz = 20000000,//EXPERIMENTAL: Set to 16MHz on ESP32-S2 or ESP32-S3 to enable EDMA mode.ledc_timer = LEDC_TIMER_0,.ledc_channel = LEDC_CHANNEL_0,.pixel_format = PIXFORMAT_JPEG,//YUV422,GRAYSCALE,RGB565,JPEG.frame_size = FRAMESIZE_UXGA,//QQVGA-UXGA, For ESP32, do not use sizes above QVGA when not JPEG. The performance of the ESP32-S series has improved a lot, but JPEG mode always gives better frame rates..jpeg_quality = 12, //0-63, for OV series camera sensors, lower number means higher quality.fb_count = 1, //When jpeg mode is used, if fb_count more than one, the driver will work in continuous mode..grab_mode = CAMERA_GRAB_WHEN_EMPTY//CAMERA_GRAB_LATEST. Sets when buffers should be filled
};esp_err_t camera_init(){//power up the camera if PWDN pin is definedif(CAM_PIN_PWDN != -1){pinMode(CAM_PIN_PWDN, OUTPUT);digitalWrite(CAM_PIN_PWDN, LOW);}//initialize the cameraesp_err_t err = esp_camera_init(&camera_config);if (err != ESP_OK) {ESP_LOGE(TAG, "Camera Init Failed");return err;}return ESP_OK;
}esp_err_t camera_capture(){//acquire a framecamera_fb_t * fb = esp_camera_fb_get();if (!fb) {ESP_LOGE(TAG, "Camera Capture Failed");return ESP_FAIL;}//replace this with your own functionprocess_image(fb->width, fb->height, fb->format, fb->buf, fb->len);//return the frame buffer back to the driver for reuseesp_camera_fb_return(fb);return ESP_OK;
}

接下来就来到了第一个核心函数:camera_init。代码片段如下:

esp_err_t camera_init(){//power up the camera if PWDN pin is definedif(CAM_PIN_PWDN != -1){pinMode(CAM_PIN_PWDN, OUTPUT);digitalWrite(CAM_PIN_PWDN, LOW);}//initialize the cameraesp_err_t err = esp_camera_init(&camera_config);if (err != ESP_OK) {ESP_LOGE(TAG, "Camera Init Failed");return err;}return ESP_OK;
}

这段代码的风格是典型的Arduino的风格,我们这里使用的是ESP-IDF。不过没有关系,先把关键的接口函数讲了,后边再切换到ESP-IDF的代码。

camera_init函数中的关键接口函数为esp_camera_init。该函数在components\esp32-camera\driver\esp_camera.c中,代码如下:

esp_err_t esp_camera_init(const camera_config_t *config)
{esp_err_t err;err = cam_init(config);if (err != ESP_OK) {ESP_LOGE(TAG, "Camera init failed with error 0x%x", err);return err;}camera_model_t camera_model = CAMERA_NONE;err = camera_probe(config, &camera_model);if (err != ESP_OK) {ESP_LOGE(TAG, "Camera probe failed with error 0x%x(%s)", err, esp_err_to_name(err));goto fail;}framesize_t frame_size = (framesize_t) config->frame_size;pixformat_t pix_format = (pixformat_t) config->pixel_format;if (PIXFORMAT_JPEG == pix_format && (!camera_sensor[camera_model].support_jpeg)) {ESP_LOGE(TAG, "JPEG format is not supported on this sensor");err = ESP_ERR_NOT_SUPPORTED;goto fail;}if (frame_size > camera_sensor[camera_model].max_size) {ESP_LOGW(TAG, "The frame size exceeds the maximum for this sensor, it will be forced to the maximum possible value");frame_size = camera_sensor[camera_model].max_size;}err = cam_config(config, frame_size, s_state->sensor.id.PID);if (err != ESP_OK) {ESP_LOGE(TAG, "Camera config failed with error 0x%x", err);goto fail;}s_state->sensor.status.framesize = frame_size;s_state->sensor.pixformat = pix_format;ESP_LOGD(TAG, "Setting frame size to %dx%d", resolution[frame_size].width, resolution[frame_size].height);if (s_state->sensor.set_framesize(&s_state->sensor, frame_size) != 0) {ESP_LOGE(TAG, "Failed to set frame size");err = ESP_ERR_CAMERA_FAILED_TO_SET_FRAME_SIZE;goto fail;}s_state->sensor.set_pixformat(&s_state->sensor, pix_format);
#if CONFIG_CAMERA_CONVERTER_ENABLEDif(config->conv_mode) {s_state->sensor.pixformat = get_output_data_format(config->conv_mode); // If conversion enabled, change the out data format by conversion mode}
#endifif (s_state->sensor.id.PID == OV2640_PID) {s_state->sensor.set_gainceiling(&s_state->sensor, GAINCEILING_2X);s_state->sensor.set_bpc(&s_state->sensor, false);s_state->sensor.set_wpc(&s_state->sensor, true);s_state->sensor.set_lenc(&s_state->sensor, true);}if (pix_format == PIXFORMAT_JPEG) {s_state->sensor.set_quality(&s_state->sensor, config->jpeg_quality);}s_state->sensor.init_status(&s_state->sensor);cam_start();return ESP_OK;fail:esp_camera_deinit();return err;
}

esp_camera_init函数是乐鑫写好的接口函数,不用自己编写,但是要看懂。网上大多写到这里就不讲了,即使有讲的,也只是在功能层面上大致说了一下。笔者要讲,而且还要花大量力气、大量笔墨来讲。

函数较长,一段一段来看。先来看第一段代码,片段如下:

    err = cam_init(config);if (err != ESP_OK) {ESP_LOGE(TAG, "Camera init failed with error 0x%x", err);return err;}

cam_init函数在components\esp32-camera\driver\cam_hal.c中,代码如下:

esp_err_t cam_init(const camera_config_t *config)
{CAM_CHECK(NULL != config, "config pointer is invalid", ESP_ERR_INVALID_ARG);esp_err_t ret = ESP_OK;cam_obj = (cam_obj_t *)heap_caps_calloc(1, sizeof(cam_obj_t), MALLOC_CAP_DMA);CAM_CHECK(NULL != cam_obj, "lcd_cam object malloc error", ESP_ERR_NO_MEM);cam_obj->swap_data = 0;cam_obj->vsync_pin = config->pin_vsync;cam_obj->vsync_invert = true;ll_cam_set_pin(cam_obj, config);ret = ll_cam_config(cam_obj, config);CAM_CHECK_GOTO(ret == ESP_OK, "ll_cam initialize failed", err);#if CAMERA_DBG_PIN_ENABLEPIN_FUNC_SELECT(GPIO_PIN_MUX_REG[DBG_PIN_NUM], PIN_FUNC_GPIO);gpio_set_direction(DBG_PIN_NUM, GPIO_MODE_OUTPUT);gpio_set_pull_mode(DBG_PIN_NUM, GPIO_FLOATING);
#endifESP_LOGI(TAG, "cam init ok");return ESP_OK;err:free(cam_obj);cam_obj = NULL;return ESP_FAIL;
}

先说cam_init函数的参数const camera_config_t *config,对应的实参就是前边花了10篇文章讲解的static camera_config_t camera_config。

static camera_config_t camera_config = {.pin_pwdn  = CAM_PIN_PWDN,.pin_reset = CAM_PIN_RESET,.pin_xclk = CAM_PIN_XCLK,.pin_sccb_sda = CAM_PIN_SIOD,.pin_sccb_scl = CAM_PIN_SIOC,.pin_d7 = CAM_PIN_D7,.pin_d6 = CAM_PIN_D6,.pin_d5 = CAM_PIN_D5,.pin_d4 = CAM_PIN_D4,.pin_d3 = CAM_PIN_D3,.pin_d2 = CAM_PIN_D2,.pin_d1 = CAM_PIN_D1,.pin_d0 = CAM_PIN_D0,.pin_vsync = CAM_PIN_VSYNC,.pin_href = CAM_PIN_HREF,.pin_pclk = CAM_PIN_PCLK,……
};

cam_init函数一上来先检查传入的参数是否为空,如果为空就提示并返回。

接下来为cam_obj_t cam_obj动态分配内存空间,并作检查。代码片段如下:

    cam_obj = (cam_obj_t *)heap_caps_calloc(1, sizeof(cam_obj_t), MALLOC_CAP_DMA);CAM_CHECK(NULL != cam_obj, "lcd_cam object malloc error", ESP_ERR_NO_MEM);

cam_obj是全局变量,在components\esp32-camera\driver\cam_hal.c中声明并初始化,代码如下:

static cam_obj_t *cam_obj = NULL;

cam_obj_t的定义在components\esp32-camera\target\private_include\ll_cam.h中,如下:

typedef struct {uint32_t dma_bytes_per_item;uint32_t dma_buffer_size;uint32_t dma_half_buffer_size;uint32_t dma_half_buffer_cnt;uint32_t dma_node_buffer_size;uint32_t dma_node_cnt;uint32_t frame_copy_cnt;//for JPEG modelldesc_t *dma;uint8_t  *dma_buffer;cam_frame_t *frames;QueueHandle_t event_queue;QueueHandle_t frame_buffer_queue;TaskHandle_t task_handle;intr_handle_t cam_intr_handle;uint8_t dma_num;//ESP32-S3intr_handle_t dma_intr_handle;//ESP32-S3uint8_t jpeg_mode;uint8_t vsync_pin;uint8_t vsync_invert;uint32_t frame_cnt;uint32_t recv_size;bool swap_data;bool psram_mode;//for RGB/YUV modesuint16_t width;uint16_t height;
#if CONFIG_CAMERA_CONVERTER_ENABLEDfloat in_bytes_per_pixel;float fb_bytes_per_pixel;camera_conv_mode_t conv_mode;
#elseuint8_t in_bytes_per_pixel;uint8_t fb_bytes_per_pixel;
#endifuint32_t fb_size;cam_state_t state;
} cam_obj_t;

在往下继续讲解之前,先要补强一下ESP-IDF的动态内存分配函数heap_caps_calloc。补强之后再往下继续。对于heap_caps_calloc等动态内存分配相关函数的介绍,请看下回。

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/469326.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vs2019托管调试助手 “ContextSwitchDeadlock“错误

错误描述 托管调试助手 "ContextSwitchDeadlock":“CLR 无法从 COM 上下文 0xd183e0 转换为 COM 上下文 0xd18328,这种状态已持续 60 秒。拥有目标上下文/单元的线程很有可能执行的是非泵式等待或者在不发送 Windows 消息的情况下处理一个运行时间非常长…

【ARM】MDK-烧录配置文件无权限访问

【更多软件使用问题请点击亿道电子官方网站】 1、 问题场景 客户代码编译正常、调试出现报错<Error: Flash Download failed - "Cortex-M4"> 仿真器识别正常&#xff0c;keil-Debug内显示相关信息、设备启动正常。 记录排查步骤&#xff0c;找到配置文件位…

【C语言刷力扣】66.加一

题目&#xff1a; 解题思路&#xff1a; 最初思路是打算将数组中的数提出来&#xff0c;加一&#xff0c;再放回另一数组中。后来发现数组最大长度100&#xff0c;而100位的数字太大了。 所有在数组上实现加一。 利用 carry 标记每一位是否进位&#xff0c;即该位数加 carry &a…

Docker使用docker-compose一键部署nacos、Mysql、redis

下面是一个简单的例子&#xff0c;展示如何通过Docker Compose文件部署Nacos、MySQL和Redis。请确保您的机器上已经安装了Docker和Docker Compose。 1&#xff0c;准备好mysql、redis、nacos镜像 sudo docker pull mysql:8 && sudo docker pull redis:7.2 &&…

【LLM】3:从零开始训练大语言模型(预训练、微调、RLHF)

一、 大语言模型的训练过程 预训练阶段&#xff1a;PT&#xff08;Pre training&#xff09;。使用公开数据经过预训练得到预训练模型&#xff0c;预训练模型具备语言的初步理解&#xff1b;训练周期比较长&#xff1b;微调阶段1&#xff1a;SFT&#xff08;指令微调/有监督微调…

YOLO即插即用---PConv

Run, Don’t Walk: Chasing Higher FLOPS for Faster Neural Networks 论文地址&#xff1a; 1. 论文解决的问题 2. 解决问题的方法 3. PConv 的适用范围 4. PConv 在目标检测中的应用 5. 评估方法 6. 潜在挑战 7. 未来研究方向 8.即插即用代码 论文地址&#xff1a; …

Fortran安装(vscode+gcc+Python)

编写时间&#xff1a; 2024年11月7日 环境配置&#xff1a; gcc VScode Python 条件&#xff1a; Windows 10 x64 VMware虚拟机 前言 这是我出的第2个关于Fortran安装的教程&#xff0c;由于上一个方法&#xff08;你可以在本专栏里找到&#xff09;对储存空间的要求比较…

ModuleNotFoundError: No module named ‘_ssl‘ centos7中的Python报错

报错 ModuleNotFoundError: No module named ‘_ssl’ 解决步骤&#xff1a; 1.下载openssl wget https://www.openssl.org/source/openssl-3.0.7.tar.gz tar -zxvf openssl-3.0.7.tar.gz cd openssl-3.0.72.编译安装 ./config --prefix/usr/local/openssl make make install3…

TensorFlow|猫狗识别

&#x1f368; 本文为&#x1f517;365天深度学习训练营中的学习记录博客&#x1f356; 原作者&#xff1a;K同学啊 要求&#xff1a; 了解model.train_on_batch()并运用了解tqdm&#xff0c;并使用tqdm实现可视化进度条 &#x1f37b; 拔高&#xff08;可选&#xff09;&…

Python学习从0到1 day27 Python 高阶技巧 ③ 设计模式 — 单例模式

此去经年&#xff0c;再难同游 —— 24.11.11 一、什么是设计模式 设计模式是一种编程套路&#xff0c;可以极大的方便程序的开发最常见、最经典的设计模式&#xff0c;就是我们所学习的面向对象了。 除了面向对象外,在编程中也有很多既定的套路可以方便开发,我们称之为设计模…

【算法速刷(9/100)】LeetCode —— 42.接雨水

目录 自我解法 官方解法 解法一&#xff1a;动态规划、前后缀 解法二&#xff1a;单调栈 自我解法 这道题刚拿到的时候&#xff0c;第一时间的想法是将其想象成MC一样的方块世界&#xff0c;如何去生成水一样的去解决。后来发现有点复杂化了&#xff0c;因为题目只需要累计…

Spring学习笔记(四)

二十一、Spring事务详解 &#xff08;一&#xff09;、Spring基于XML的事务配置 1.环境搭建 1.1 构建maven工程&#xff0c;添加相关技术依赖 <dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-context…

区块链技术在知识产权保护中的应用

&#x1f493; 博客主页&#xff1a;瑕疵的CSDN主页 &#x1f4dd; Gitee主页&#xff1a;瑕疵的gitee主页 ⏩ 文章专栏&#xff1a;《热点资讯》 区块链技术在知识产权保护中的应用 区块链技术在知识产权保护中的应用 区块链技术在知识产权保护中的应用 引言 区块链技术概述 …

NLP论文速读(NeurIPS2024)|使用视觉增强的提示来增强视觉推理

论文速读|Enhancing LLM Reasoning via Vision-Augmented Prompting 论文信息&#xff1a; 简介: 这篇论文试图解决的问题是大型语言模型&#xff08;LLMs&#xff09;在处理包含视觉和空间线索的推理问题时的局限性。尽管基于LLMs的推理框架&#xff08;如Chain-of-Thought及其…

Qt_day7_文件IO

目录 文件IO 1. QFileDialog 文件对话框&#xff08;熟悉&#xff09; 2. QFileInfo 文件信息类&#xff08;熟悉&#xff09; 3. QFile 文件读写类&#xff08;掌握&#xff09; 4. UI操作与耗时操作&#xff08;掌握&#xff09; 5. 多线程&#xff08;掌握&#xff09;…

如何管理好自己的LabVIEW项目

在LabVIEW项目开发中&#xff0c;项目管理对于提高开发效率、确保项目质量、减少错误和维护成本至关重要。以下从项目规划、代码管理、测试与调试、版本控制、团队协作等方面&#xff0c;分享LabVIEW项目管理的体会。 ​ 1. 项目规划与需求分析 关键步骤&#xff1a; 需求分析…

三周精通FastAPI:40 部署应用程序或任何类型的 Web API 概念

官方文档&#xff1a;部署概念 - FastAPI 部署概念 在部署 FastAPI 应用程序或任何类型的 Web API 时&#xff0c;有几个概念值得了解&#xff0c;通过掌握这些概念您可以找到最合适的方法来部署您的应用程序。 一些重要的概念是&#xff1a; 安全性 - HTTPS启动时运行重新…

【算法一周目】双指针(1)

目录 1.双指针介绍 2.移动零 解题思路 C代码实现 3.复写零 解题思路 C代码实现 4.快乐数 解题思路 C代码实现 5.盛水最多的容器 解题思路 C代码实现 1.双指针介绍 常见的双指针有两种形式&#xff0c;一种是对撞指针&#xff0c;一种是快慢指针。 对撞指针&#x…

ARXML汽车可扩展标记性语言规范讲解

ARXML: Automotive Extensible Markup Language &#xff08;汽车可扩展标记语言&#xff09; xmlns: Xml name space &#xff08;xml 命名空间&#xff09; xsd: Xml Schema Definition (xml 架构定义) 1、XML与HTML的区别&#xff0c;可扩展。 可扩展&#xff0c;主要是…

自监督学习:机器学习的未来新方向

引言 自监督学习&#xff08;Self-Supervised Learning, SSL&#xff09;是近年来机器学习领域的一个重要发展方向&#xff0c;迅速成为许多研究和应用的热点。与传统的监督学习不同&#xff0c;自监督学习利用未标注数据&#xff0c;通过设计自我生成标签的任务&#xff0c;帮…