You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/peripherals/camera/camera_dsi/README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
## Overview
8
8
9
-
This example demonstrates how to use the esp_driver_cam component to capture camera sensor signals and display it via DSI interface.
9
+
This example demonstrates how to use the esp_driver_cam component to capture camera sensor signals and display it via DSI interface. This example will auto-detect camera sensors via [ESP camera sensor driver](https://components.espressif.com/components/espressif/esp_cam_sensor/versions/0.5.3) and capture camera sensor signals via CSI interface and display it via DSI interface.
10
10
11
11
## Usage
12
12
@@ -15,12 +15,12 @@ The subsections below give only absolutely necessary information. For full steps
15
15
16
16
### Hardware Required
17
17
18
-
This example requires:
19
-
20
-
- SC2336 or OV5647 camera sensor
18
+
- OV5647 or SC2336 camera sensor, or other camera sensors
21
19
- EK79007 or ILI9881C LCD screen
22
20
- ESP32P4 devkit
23
21
22
+
**Note:** OV5647 has its own ISP functions, whereas SC2336 is a camera sensor without ISP functions. You can use the ESP on-chip ISP functions to tune the image together with the sensor ISP functions, if the image quality is not as expected.
23
+
24
24
**Note:** For EK79007 you will need to connect following pins:
Copy file name to clipboardExpand all lines: examples/peripherals/isp/multi_pipelines/README.md
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,14 @@
6
6
7
7
## Overview
8
8
9
-
This example demonstrates how to use the ISP (image signal processor) to work with esp_driver_cam component. This example will capture camera sensor signals via CSI interface and display it via DSI interface. This example enables
9
+
This example demonstrates how to use the ISP (image signal processor) to work with esp_driver_cam component. This example will auto-detect camera sensors via [ESP camera sensor driver](https://components.espressif.com/components/espressif/esp_cam_sensor/versions/0.5.3) and capture camera sensor signals via CSI interface and display it via DSI interface. This example enables following ISP functions:
10
+
10
11
- ISP AF (auto-focus) feature
11
12
- ISP BF (bayer denoise) feature
12
13
- ISP Sharpen feature
14
+
- ISP Demosaic feature
15
+
- ISP GAMMA feature
16
+
- ISP Color feature
13
17
14
18
## Usage
15
19
@@ -20,10 +24,18 @@ The subsections below give only absolutely necessary information. For full steps
20
24
21
25
This example requires:
22
26
23
-
- OV5647 camera sensor with VCM (Voice Coil Motor). The VCM used in this example is DW9714.
24
-
- ILI9881C LCD screen
27
+
- OV5647 or SC2336 camera sensor, or other camera sensors
28
+
-EK79007 or ILI9881C LCD screen
25
29
- ESP32P4 devkit
26
30
31
+
**Note:** OV5647 has its own ISP functions, whereas SC2336 is a camera sensor without ISP functions. You can use the ESP on-chip ISP functions to tune the image together with the sensor ISP functions, if the image quality is not as expected.
32
+
33
+
**Note:** For EK79007 you will need to connect following pins:
34
+
- 5V - 5V
35
+
- GND - GND
36
+
- RST_LCD - 3V3
37
+
38
+
You can also connect camera sensors and LCD screens from other vendors to the ESP chip, you can find corresponding camera or LCD drivers from [ESP Component Registry](https://components.espressif.com), or design your own customized drivers.
0 commit comments