Closed stellna closed 9 months ago
We do not support currently that sensor and generally the speed depends as much from the sensor as it does from what the chip can really achieve. OV5640 provides 5MP images, but is also very slow at high resolutions.
What are your project requirements?
Well, There is no specific requirements in my project. It is just that currently, i'm using esp-idf human_face_detect DL header files. But it just keep showing human detected when there is no human in the picture. So, I thought that it maybe just because of the resolution.
This issue appears to be stale. Please close it if its no longer valid.
what are your recommendation for a full hd resolution for streamming with the esp32 cam?
Hello, I'm recently practicing using esp32. I have created a task using esp32 ov2640 camera, but it resolution is so low. So, I just bought an OV5647 camera to resolve this problem. But I need to change this line of code to match OV5647. Any idea or help will be appreciate. Thank you.
static camera_config_t camera_config = { .pin_pwdn = CAM_PIN_PWDN, .pin_reset = CAM_PIN_RESET, .pin_xclk = CAM_PIN_XCLK, .pin_sscb_sda = CAM_PIN_SIOD, .pin_sscb_scl = CAM_PIN_SIOC,
};
static esp_err_t init_camera(){ esp_err_t err = esp_camera_init(&camera_config); if (err != ESP_OK) { ESP_LOGE(TAG, "Camera Init Failed"); return err; }
}
For more precise information, Here is my github link for the project i'm working on. https://github.com/stellna/IOT-camera-learning