Search found 11 matches
- Wed Nov 06, 2024 5:44 am
- Forum: General Discussion
- Topic: Partition Table Error In Spiffs File System
- Replies: 2
- Views: 838
Re: Partition Table Error In Spiffs File System
1. Tried to increase the Size in partition table like 25MB. ... Espressif ESP32 Partition Table Name Type SubType Offset Size Flags ... factory app factory 0x250000 2M ... With this partition table, you set the start (Offset) of the factory partition to 25MB, but the size of that partition is still...
- Tue Nov 05, 2024 1:56 pm
- Forum: General Discussion
- Topic: Partition Table Error In Spiffs File System
- Replies: 2
- Views: 838
Partition Table Error In Spiffs File System
Hey, I was testing spiffs example on ESP32, the original example app is working fine. No i want to deploy it along with another component is around 21MB in size, that component is working fine in another example other than spiffs. Now, when i add that module in spiffs example the error occurs that a...
- Thu Oct 31, 2024 10:50 am
- Forum: General Discussion
- Topic: Loading Image From SD Card
- Replies: 15
- Views: 3614
Re: Loading Image From SD Card
Ok, it sounds like your main trouble is resolved. I cannot provide much help for processing pictures, not my domain. Generally, you can expect troubles with the system resources when processing any larger image data - ESP32* is embedded platform, which naturally brings in quite a few limitations :-...
- Thu Oct 31, 2024 10:03 am
- Forum: General Discussion
- Topic: Loading Image From SD Card
- Replies: 15
- Views: 3614
Re: Loading Image From SD Card
You can share your VERBOSE log here and let me see - can't guarantee I'll find the root cause, though. Again: if you had managed to run the SDMMC example on your ESP32-CAM board, appropriate setup obviously exists. If you start again from that point, you should be able to find a stable configuratio...
- Thu Oct 31, 2024 5:55 am
- Forum: General Discussion
- Topic: Loading Image From SD Card
- Replies: 15
- Views: 3614
Re: Loading Image From SD Card
0x107 means timeout (the card didn't respond in time, in your case to ACMD41 configuration command). There is a bunch of possible reasons, but I'd try another card first (4GB should be safe size). You can also format the card on your PC to see whether it helps, but it's likely unrelated to 0x107 he...
- Wed Oct 30, 2024 1:42 pm
- Forum: General Discussion
- Topic: Loading Image From SD Card
- Replies: 15
- Views: 3614
Re: Loading Image From SD Card
Hi @tahseenabbas52, the issue is actually in your image buffer calculation which is totally wrong, sorry: 1. I assume your JPG is really 320x240 pixels - actual image file size is used only to check the fread() succeeded, the image processing is run with hard-wired width/height. As @microcontroller...
- Wed Oct 30, 2024 8:39 am
- Forum: General Discussion
- Topic: Loading Image From SD Card
- Replies: 15
- Views: 3614
Re: Loading Image From SD Card
Hi @tahseenabbas52, the issue is actually in your image buffer calculation which is totally wrong, sorry: 1. I assume your JPG is really 320x240 pixels - actual image file size is used only to check the fread() succeeded, the image processing is run with hard-wired width/height. As @microcontroller...
- Tue Oct 29, 2024 5:49 am
- Forum: General Discussion
- Topic: Loading Image From SD Card
- Replies: 15
- Views: 3614
Re: Loading Image From SD Card
Any C++ example to mount SDCard ?
- Mon Oct 28, 2024 6:59 am
- Forum: General Discussion
- Topic: Loading Image From SD Card
- Replies: 15
- Views: 3614
Re: Loading Image From SD Card
Can you please also answer either we can use cv2's imread function to load image ? If YES! then how can i mount SD Card on it? I need an example code only.MicroController wrote: ↑Sat Oct 26, 2024 6:49 amhttps://components.espressif.com/compon ... f/esp_jpeg
I am not getting how to use this component in my use case ?
- Fri Oct 25, 2024 5:28 am
- Forum: General Discussion
- Topic: Loading Image From SD Card
- Replies: 15
- Views: 3614
Re: Loading Image From SD Card
1) What file/image format does the file on the card contain? If it's not exactly the raw pixel format you're interpreting it as this won't work. 2) The number/range of "pixels" you're looking at is unrelated to the number of bytes actually read from the file. You may be counting random data beyond ...