@@ -110,17 +110,28 @@ Functions
110
110
111
111
Returns the camera module ID.
112
112
113
- * `sensor.OV9650 `: First gen OpenMV Cam sensor - never released.
114
113
* `sensor.OV2640 `: Second gen OpenMV Cam sensor - never released.
115
- * `sensor.OV5640 `: High-res OpenMV Cam H7 sensor.
116
- * `sensor.OV7725 `: Rolling shutter sensor module.
114
+ * `sensor.OV5640 `: High-res OpenMV Cam H7 Plus sensor.
117
115
* `sensor.OV7690 `: OpenMV Cam Micro sensor module.
116
+ * `sensor.OV7725 `: Rolling shutter sensor module.
117
+ * `sensor.OV9650 `: First gen OpenMV Cam sensor - never released.
118
+ * `sensor.MT9V022 `: Global shutter sensor module.
119
+ * `sensor.MT9V024 `: Global shutter sensor module.
120
+ * `sensor.MT9V032 `: Global shutter sensor module.
118
121
* `sensor.MT9V034 `: Global shutter sensor module.
119
- * `sensor.MT9M114 `: New Rolling shutter sensor module.
122
+ * `sensor.MT9M114 `: OV7725 replacement rolling shutter sensor module.
123
+ * `sensor.BOSON320 `: Boson 320x256 thermal sensor module.
124
+ * `sensor.BOSON640 `: Boson 640x512 thermal sensor module.
120
125
* `sensor.LEPTON `: Lepton1/2/3 sensor module.
121
126
* `sensor.HM01B0 `: Arduino Portenta H7 sensor module.
127
+ * `sensor.HM0360 `: Arduino Portenta H7 sensor module.
122
128
* `sensor.GC2145 `: Arduino Nicla Vision H7 sensor module.
129
+ * `sensor.GENX320ES `: Prophesee Event Camera sensor module (engineering sample).
130
+ * `sensor.GENX320 `: Prophesee Event Camera sensor module.
131
+ * `sensor.PAG7920 `: PixArt Imaging sensor Module.
132
+ * `sensor.PAG7936 `: PixArt Imaging sensor Module.
123
133
* `sensor.PAJ6100 `: PixArt Imaging sensor Module.
134
+ * `sensor.FROGEYE2020 ` : FrogEye2020 event camera sensor module - never released.
124
135
125
136
.. function :: alloc_extra_fb(width:int, height:int, pixformat:int) -> image.Image
126
137
@@ -561,6 +572,7 @@ Functions
561
572
* `sensor.IOCTL_HIMAX_OSC_ENABLE ` - Pass this enum followed by ``True ``/``False `` to enable/disable the oscillator HM01B0 to save power.
562
573
* `sensor.IOCTL_RGB_STATS ` - Pass this enum to get the RGB statistics from the camera sensor. Returns a tuple of (r, gb, gr, b) values.
563
574
* `sensor.IOCTL_GENX320_SET_BIASES ` - Pass this enum followed by a bias enum to set the GENX320 sensor biases.
575
+ * `sensor.IOCTL_GENX320_SET_BIAS ` - Pass this enum followed by a bias enum and a bias value to set the GENX320 sensor bias.
564
576
565
577
.. function :: set_color_palette(palette:int) -> None
566
578
@@ -683,6 +695,16 @@ Constants
683
695
684
696
`sensor.get_id() ` returns this for the MT9M114 camera.
685
697
698
+ .. data :: BOSON320
699
+ :type: int
700
+
701
+ `sensor.get_id() ` returns this for the BOSON 320x256 camera.
702
+
703
+ .. data :: BOSON640
704
+ :type: int
705
+
706
+ `sensor.get_id() ` returns this for the BOSON 640x512 camera.
707
+
686
708
.. data :: LEPTON
687
709
:type: int
688
710
@@ -696,18 +718,33 @@ Constants
696
718
.. data :: HM0360
697
719
:type: int
698
720
699
- `sensor.get_id() ` returns this for the HM01B0 camera.
721
+ `sensor.get_id() ` returns this for the HM0360 camera.
700
722
701
723
.. data :: GC2145
702
724
:type: int
703
725
704
726
`sensor.get_id() ` returns this for the GC2145 camera.
705
727
728
+ .. data :: GENX320ES
729
+ :type: int
730
+
731
+ `sensor.get_id() ` returns this for the GENX320 (Engineering Samples) camera.
732
+
733
+ .. data :: GENX320
734
+ :type: int
735
+
736
+ `sensor.get_id() ` returns this for the GENX320 camera.
737
+
706
738
.. data :: PAG7920
707
739
:type: int
708
740
709
741
`sensor.get_id() ` returns this for the PAG7920 camera.
710
742
743
+ .. data :: PAG7936
744
+ :type: int
745
+
746
+ `sensor.get_id() ` returns this for the PAG7936 camera.
747
+
711
748
.. data :: PAJ6100
712
749
:type: int
713
750
@@ -1106,6 +1143,36 @@ Constants
1106
1143
1107
1144
High speed biases for the GENX320 camera sensor.
1108
1145
1146
+ .. data :: IOCTL_GENX320_SET_BIAS
1147
+ :type: int
1148
+
1149
+ Lets you set a single GENX320 camera sensor bias. See `sensor.ioctl() ` for more information.
1150
+
1151
+ .. data :: GENX320_BIAS_DIFF_OFF
1152
+ :type: int
1153
+
1154
+ Set the GENX320 DIFF OFF bias.
1155
+
1156
+ .. data :: GENX320_BIAS_DIFF_ON
1157
+ :type: int
1158
+
1159
+ Set the GENX320 DIFF ON bias.
1160
+
1161
+ .. data :: GENX320_BIAS_FO
1162
+ :type: int
1163
+
1164
+ Set the GENX320 FO bias.
1165
+
1166
+ .. data :: GENX320_BIAS_HPF
1167
+ :type: int
1168
+
1169
+ Set the GENX320 HPF bias.
1170
+
1171
+ .. data :: ENX320_BIAS_REFR
1172
+ :type: int
1173
+
1174
+ Set the GENX320 REFR bias.
1175
+
1109
1176
.. data :: SINGLE_BUFFER
1110
1177
:type: int
1111
1178
0 commit comments