Difference between revisions of "Mv mipi i2c.sh user guide"
(→snsreg) |
|||
Line 815: | Line 815: | ||
<br /> | <br /> | ||
+ | |||
+ | === Configuration Method for Typical Application Scenarios: === | ||
+ | |||
+ | ==== Manual Exposure Mode: ==== | ||
+ | <code>./mv_mipi_i2c.sh -w -f expmode -p1 0 -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f gainmode -p1 0 -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f metime -p1 exptime_you_want_to_set_us -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f mgain -p1 gain_you_want_to_set_dB -b your_i2c_bus_number</code> | ||
+ | |||
+ | After configuration, read the parameters with the following commands to confirm they have taken effect: | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -r -f exptime -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -r -f curgain -b your_i2c_bus_number</code> | ||
+ | |||
+ | '''Note:''' The maximum exposure time must be strictly less than the reciprocal of the '''fps'''. | ||
+ | |||
+ | ==== Continuous Auto Exposure Mode: ==== | ||
+ | <code>./mv_mipi_i2c.sh -w -f expmode -p1 2 -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f gainmode -p1 2 -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f aatarget -p1 brightness_target -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f aemaxtime -p1 [16,1000000/fps] -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f agmaxgain -p1 [0,maxgain] -b your_i2c_bus_number</code> | ||
+ | |||
+ | After continuous imaging for a while, you can read the current actual exposure time and gain using the following commands: | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -r -f exptime -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -r -f curgain -b your_i2c_bus_number</code> | ||
+ | |||
+ | ==== Normal Trigger Mode: ==== | ||
+ | First, stop the image acquisition to enter a state where the trigger mode can be modified: | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f imgacq -p1 0 -b your_i2c_bus_number</code> | ||
+ | |||
+ | In the following example, configure the camera for normal hardware trigger mode, where each trigger signal captures 1 image: | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f trgmode -p1 1 -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f trgsrc -p1 1 -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f trgnum -p1 1 -b your_i2c_bus_number</code> | ||
+ | |||
+ | You may optionally execute the following two commands to set the trigger edge and delay: | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f trgedge -p1 [0,1] -b your_i2c_bus_number</code> | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f trgdelay -p1 [us] -b your_i2c_bus_number</code> | ||
+ | |||
+ | After configuration, you can start the image acquisition to accept trigger signals: | ||
+ | |||
+ | <code>./mv_mipi_i2c.sh -w -f imgacq -p1 1 -b your_i2c_bus_number</code><br /> |
Revision as of 14:40, 22 October 2024
mv_mipi_i2c.sh Shell scripts usage
1 Overview
The mv_mipi_i2c.sh script is a tool set for configuring MV MIPI series cameras through the I2C.
This script is essentially an access to registers. For registers, please refer to MV Series and RAW Series MIPI Camera Register Map.
2 Raspberry Pi on Legacy mode Only, Set IO config
Note that if you are using v4l2 mode, you do not need to perform this step.
Running
./enable_i2c_vc.sh
./camera_i2c_config
first,it will config IO pin. Then you can run mv_mipi_i2c.sh.
3 Download
We provide download links for mv_mipi_i2c.sh for different embedded platforms.
Generally, these links can be found in the respective platform's GitHub repository.
Below is the list:
3.1 Nvidia Jetson:
https://github.com/veyeimaging/nvidia_jetson_veye_bsp/tree/master/mv_tools_jetson/i2c_tools
3.2 Raspberry Pi:
https://github.com/veyeimaging/raspberrypi_v4l2/tree/main/mv_tools_rpi
3.3 RK35xx:
https://github.com/veyeimaging/rk35xx_firefly/tree/main/mv_tools_rockchip/i2c_tools
4 Prepare
cd mv_tools_rpi/sources/
./make.sh
cd ..
chmod +x *
5 mv_mipi_i2c.sh USAGE
./mv_mipi_i2c.sh
Usage: ./mv_mipi_i2c.sh [-r/w] [-f] function name -p1 param1 -p2 param2 -b bus
options:
-r read
-w write
-f [function name] function name
-p1 [param1] param1 of each function
-p2 [param1] param2 of each function
-p3 [param3] param3 of each function
-p4 [param4] param4 of each function
-b [i2c bus num] i2c bus number
-d [i2c addr] i2c addr if not default 0x3b
Please open this srcipt and read the COMMENT on top for support functions and samples.
6 mv_mipi_i2c_new.sh USAGE
This script is a simplified version of mv_mipi_i2c.sh, in which -f -p1 -p2 -p3 -p4 is no longer needed.
$ ./mv_mipi_i2c_new.sh
Usage: ./mv_mipi_i2c.sh [-r/w] [function name] [param1] [param2 ] [param3] [param4] -b bus
options:
-r read
-w write
[function name] function name
[param1] param1 of each function
[param1] param2 of each function
[param3] param3 of each function
[param4] param4 of each function
-b [i2c bus num] i2c bus number
-d [i2c addr] i2c addr if not default 0x3b
Please open this srcipt and read the COMMENT on top for support functions and samples
7 i2c bus number on different board
Please refer to the following article to determine which -b parameter you need to use.
i2c bus number on different boards
8 Functions list
8.1 Note
The camera has two states, standby and running, after the start of image acquisition into the running state.
There are some registers that are write-protected in the running state, which will be marked with an asterisk. For example: trgsrc* .
There are some parameters that have strict range restrictions, and it's a good idea to try reading them when you're in doubt.
8.2 Basic Parameters
8.2.1 manufacturer
./mv_mipi_i2c.sh -r -f manufacturer -b your_i2c_bus_number
Get the manufacturer name, which is VEYE.
8.2.2 model
./mv_mipi_i2c.sh -r -f model -b your_i2c_bus_number
Get the product model, such as MV-MIPI-IMX178M / MV-MIPI-SC132M.
8.2.3 version
./mv_mipi_i2c.sh -r -f version -b your_i2c_bus_number
Get the Controller version number and Logical version number.
The system has two main control chips that serve the control and logic functions respectively.
8.2.4 serialno
./mv_mipi_i2c.sh -r -f serialno -b your_i2c_bus_number
Get the unique serial number of this module.
8.2.5 timestamp
./mv_mipi_i2c.sh -r -f timestamp -b your_i2c_bus_number
Time after system startup in Milliseconds.
This value starts counting again if you call the reboot command, or if the camera reboots unexpectedly.
8.2.6 errcode
./mv_mipi_i2c.sh -r -f errcode -b your_i2c_bus_number
System error code, each bit represents an error type.
bit0: sensor error.
bit1: Logic module startup error.
bit2: Logic module communication error.
bit5: AA(AE&AG) regulation cannot reach the target brightness.
bit6: Authorization failure.
8.2.7 fmtcap
./mv_mipi_i2c.sh -r -f fmtcap -b your_i2c_bus_number
Capbility of data formats supported by the camera.
bit0: Mono8
bit1: Mono10
bit2: Mono12
bit3: Mono14
bit4: UYVY
8.2.8 trgmodecap
./mv_mipi_i2c.sh -r -f trgmodecap-b your_i2c_bus_number
Capbility of trigger mode supported by the camera.
bit0:Video streaming mode.
bit1:Normal trigger mode.
bit2:Rolling shutter multi-frame trigger mode.
bit3: Pulse trigger mode.
8.2.9 factoryparam
./mv_mipi_i2c.sh -w -f factoryparam -b your_i2c_bus_number
All parameters restored to factory default values.
8.2.10 paramsave
./mv_mipi_i2c.sh -w -f paramsave -b your_i2c_bus_number
Save all parameters to flash, and they will not be lost when power off.
8.2.11 reboot
./mv_mipi_i2c.sh -w -f reboot -b your_i2c_bus_number
Reboot the camera.
8.2.12 i2caddr
./mv_mipi_i2c.sh -w -f i2caddr -p1 [new] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f i2caddr -b your_i2c_bus_number
This module support i2c address changed by software, i2c address range[0x3,0x77].
Will really take effect only after paramsave and reboot .
8.2.13 slavemode
./mv_mipi_i2c.sh -w -f slavemode -p1 [0/1] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f slavemode -b your_i2c_bus_number
Whether the sensor is operating in slave mode. In slave mode, the camera relies on external signals to provide XVS and XHS.
Writing this parameter will cause the camera to automatically save the current settings and reboot.
Currently, only RAW-MIPI-IMX462M support this function.
8.2.14 mcubypass
./mv_mipi_i2c.sh -w -f mcubypass -p1 [0/1] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f mcubypass -b your_i2c_bus_number
For Raw series camera,set SDA(Sensor Direct Access) mode.
8.3 Image Acquisition
8.3.1 imgacq
./mv_mipi_i2c.sh -w -f imgacq -p1 [0/1] -b your_i2c_bus_number
Start/Stop acquisition
There is no image output after the camera is powered on, which means it is in the standby state.
After writing 1 to this register, it enters the running state and starts outputting images or waiting for the trigger signal.
Writing 0 will stop the output image and enter the standby state.
8.3.2 trgmode*
./mv_mipi_i2c.sh -w -f trgmode -p1 [0,2] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f trgmode -b your_i2c_bus_number
value | description |
---|---|
0 | Video streaming mode |
1 | Normal trigger mode |
2 | Rolling shutter multi-frame trigger mode |
3 | Pulse trigger mode |
See product manual for details.
8.3.3 trgsrc*
./mv_mipi_i2c.sh -w -f trgsrc -p1 [0,1] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f trgsrc -b your_i2c_bus_number
value | description |
---|---|
0 | Software trigger |
1 | Hardware trigger |
8.3.4 trgnum*
./mv_mipi_i2c.sh -w -f trgnum -p1 [1,255] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f trgnum -b your_i2c_bus_number
The number of image frames output by one trigger signal in trigger mode.
8.3.5 trginterval*
./mv_mipi_i2c.sh -w -f trginterval -p1 [us] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f trginterval -b your_i2c_bus_number
Trigger interval in normal trigger mode, in microseconds. Range:[0.0xFFFFFF].
8.3.6 trgone
./mv_mipi_i2c.sh -w -f trgone -b your_i2c_bus_number
Software trigger command.One execution will perform a soft trigger.
8.3.7 trgcount
./mv_mipi_i2c.sh -r -f trgcount -b your_i2c_bus_number
Trigger count statistics.
Get the total number of triggers and the number of trigger loss.
./mv_mipi_i2c.sh -w -f trgcountclr -b your_i2c_bus_number
Clear trigger count.
8.3.8 framecount
./mv_mipi_i2c.sh -r -f framecount-b your_i2c_bus_number
Frame count statistics.
The number of frames output by the sensor and the number of frames output by the camera module. Cyclic counting.
8.4 IO Control
For RAW series cameras, the input IO supports trigger edge and trigger delay, and does not support trigger filtering function. The output IO is the strobe out pin of the sensor that leads directly.
8.4.1 trgdelay*
./mv_mipi_i2c.sh -r -f trgdelay -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f trgdelay -p1 [us] -b your_i2c_bus_number
Trigger delay, effective under both soft trigger and hard trigger mode.
range: 0 to 1000000 (unit: microsecond)
8.4.2 trgedge*
./mv_mipi_i2c.sh -r -f trgedge -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f trgedge -p1 [0,1] -b your_i2c_bus_number
Effective trigger edge in hard trigger mode.
value | description |
---|---|
0 | Rising edge |
1 | Falling edge |
8.4.3 trgfilter_enable*
./mv_mipi_i2c.sh -r -f trgfilter_enable -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f trgfilter_enable -p1 [0,2] -b your_i2c_bus_number
value | description |
---|---|
0 | No filtering |
1 | Rising edge filtering (filtering out low-level interference signals) |
2 | Falling edge filtering (filtering out high level interference signals) |
3 | Both rising edge and falling edge filtering |
8.4.4 trgfilter_time*
./mv_mipi_i2c.sh -r -f trgfilter_time -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f trgfilter_time -p1 [us] -b your_i2c_bus_number
Trigger signal filtering window width.
range: 1 to 1000000 (unit: microsecond)
8.4.5 trgexp_delay*
./mv_mipi_i2c.sh -r -f trgexp_delay -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f trgexp_delay -p1 [us] -b your_i2c_bus_number
Exposure delay, i.e. the time to turn on the Strobe signal in advance.
range: 1 to 1000000 (unit: microsecond)
The difference between trgexp_delay and trgdelay, see manual for details.
8.4.6 gpios_status
./mv_mipi_i2c.sh -r -f gpios_status -b your_i2c_bus_number
Get TriggerIN_IO, OUT_IO1 and OUT_IO2 status.
8.4.7 outio1_mode
./mv_mipi_i2c.sh -r -f outio1_mode -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f outio1_mode -p1 [0,1] -b your_i2c_bus_number
value | description |
---|---|
0 | strobe |
1 | user out |
strobe: High level active.
user out: defined by outio1_usr.
8.4.8 outio1_usr
./mv_mipi_i2c.sh -r -f outio1_usr -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f outio1_usr -p1 [0,1] -b your_i2c_bus_number
value | description |
---|---|
0 | low |
1 | high |
8.4.9 outio1_rvs
./mv_mipi_i2c.sh -r -f outio1_rvs -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f outio1_rvs -p1 [0,1] -b your_i2c_bus_number
Reverse OUT_IO1 high and low levels if set to 1.
8.4.10 outio2_mode
./mv_mipi_i2c.sh -r -f outio2_mode -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f outio2_mode -p1 [0,5] -b your_i2c_bus_number
value | description |
---|---|
0 | strobe |
1 | user out |
2 | trigger wait |
3 | XVS |
4 | XHS |
5 | Effective trigger signal (Sony's global shutter sensor only) |
strobe: High level active.
user out: defined by outio2_usr.
trigger wait: High level active. Indicate that the camera is not busy now, able to respond to the trigger signal.
XHS, XVS: The signal from the corresponding pin of the sensor. (For rolling shutter only).
8.4.11 outio2_usr
./mv_mipi_i2c.sh -r -f outio2_usr -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f outio2_usr -p1 [0,1] -b your_i2c_bus_number
value | description |
---|---|
0 | low |
1 | high |
8.4.12 outio2_rvs
./mv_mipi_i2c.sh -r -f outio2_rvs -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f outio2_rvs -p1 [0,1] -b your_i2c_bus_number
Reverse OUT_IO1 high and low levels if set to 1.
8.5 Image Features
8.5.1 maxwh
./mv_mipi_i2c.sh -r -f maxwh -b your_i2c_bus_number
Get the maximum supported resolution of the sensor.
8.5.2 maxfps
./mv_mipi_i2c.sh -r -f maxfps -b your_i2c_bus_number
The maximum frame rate supported in the current mode.
Depending on the configured ROI, the maximum frame rate will be different. This parameter supports decimals.
8.5.3 fps*
./mv_mipi_i2c.sh -w -f fps -p1 [framerate] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f fps -b your_i2c_bus_number
Configure the actual frame rate of the camera in the current mode.
Range:(0,maxfps].
In video streaming mode, this parameter determines the actual frame rate.
8.5.4 roi*
./mv_mipi_i2c.sh -w -f roi -p1 [x] -p2 [y] -p3 [width] -p4 [height] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f roi -b your_i2c_bus_number
ROI(region of interest) is the sensor output area, and the default is full screen output.
Parameter requirements:
[x] [y] [height] must be 4-aligned;
[width] must be 8-aligned;
The minimum ROI resolution will be different for different sensors.
For example, MV-MIPI-IMX178M minimum resolution is: 376*320;MV-MIPI-SC130M minimum resolution is 64*64.
The camera will make necessary adjustments to the user parameters to meet the parameter requirements.
So it is highly recommended that you read out the actual ROI parameters after writing them.
8.5.5 imgdir
./mv_mipi_i2c.sh -w -f imgdir -p1 [0,3] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f imgdir -b your_i2c_bus_number
value | description |
---|---|
0 | normal |
1 | mirror |
2 | flip |
3 | flip&mirror |
The image is first flipped/mirrored and then ROI cropped. For details, please refer to the manual.
8.5.6 pixelformat
./mv_mipi_i2c.sh -w -f pixelformat -p1 [0,2] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f pixelformat -b your_i2c_bus_number
value | description |
---|---|
0 | Mono8 |
1 | Mono10 |
2 | Mono12 |
4 | UYVY |
Note that for the MV-MIPI-IMX178M, the AD bits of the sensor is always 12 bits, and the logic unit performs data rounding to achieve a different pixel format.
8.5.7 blacklevel
./mv_mipi_i2c.sh -w -f blacklevel -p1 [blacklevel] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f blacklevel -b your_i2c_bus_number
This black level value will be set directly to the sensor.
8.5.8 blcmode
./mv_mipi_i2c.sh -w -f blcmode -p1 [0/1] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f blcmode -b your_i2c_bus_number
Black level calibration modes:
0: Sensor automatic calibration or use default black level.
1: Manually specify black level.
8.5.9 testimg
./mv_mipi_i2c.sh -w -f testimg -p1 [0,2] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f testimg -b your_i2c_bus_number
value | description |
---|---|
0 | Normal image |
1 | Test image 1 |
2 | Test image 2 |
8.5.10 lanenum*
./mv_mipi_i2c.sh -w -f lanenum -p1 [2/4] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f lanenum -b your_i2c_bus_number
For modules that support lane number configuration, use this register to modify the lane number.
8.5.11 mipidatarate
./mv_mipi_i2c.sh -r -f mipidatarate -b your_i2c_bus_number
he MIPI datarate for each lane, measured in Kbps.
8.6 ISP
8.6.1 Special Note
Generally, only manual exposure and manual gain are supported by RAW series cameras in this section. However, RAW-MIPI-AR0234M does support AEC control.
Commands supported by RAW-MIPI-AR0234M include:
expmode,metime,gainmode,mgain,aatarget,aemaxtime,exptime,curgain,aaroi,aaroienable.
8.6.2 gamma
./mv_mipi_i2c.sh -r -f gamma -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f gamma -p1 [gamma] -b your_i2c_bus_number
Range (0,4.0],accurate is 0.01.
For now, gamma only works on 8bit depth image.
8.6.3 gammaenable
./mv_mipi_i2c.sh -r -f gammaenable -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f gammaenable -p1 [0,1] -b your_i2c_bus_number
Enable/Disable gamma function.
8.6.4 dpcenable
./mv_mipi_i2c.sh -r -f dpcenable -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f dpcenable -p1 [0,1] -b your_i2c_bus_number
Enable/Disable DPC(Defect Point Correction) function.
8.6.5 lutenable
./mv_mipi_i2c.sh -r -f lutenable -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f lutenable -p1 [0,1] -b your_i2c_bus_number
Enable/Disable LUT(Look-Up-Table) function.
8.6.6 lut
./mv_mipi_i2c.sh -r -f lut -p1 [lutfilename] -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f lut -p1 [lutfilename] -b your_i2c_bus_number
Import or export a lut curve to a file, refer to the provided lut_linear.txt for the file format.
8.6.7 expmode
./mv_mipi_i2c.sh -r -f expmode -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f expmode -p1 [0,2] -b your_i2c_bus_number
value | description |
---|---|
0 | ME: manual exposure |
1 | AE once: auto exposure once |
2 | AE: auto exposure continuous |
Both ME and AE are easy to understand.
AE once: Execute automatic exposure in the set range once, then stop the adjustment.
RAW-MIPI-AR0234M do not support AE once mode.
8.6.8 metime
./mv_mipi_i2c.sh -w -f metime -p1 [us] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f metime -b your_i2c_bus_number
Range (0,1000000/fps].Because of Note1 and range limitation, please read back to confirm the real metime take effect.
8.6.9 gainmode
./mv_mipi_i2c.sh -r -f gainmode -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f gainmode -p1 [0,3] -b your_i2c_bus_number
value | description |
---|---|
0 | MG: manual gain |
1 | AG once: auto gain once |
2 | AG: auto gain continuous |
Both MG and AG are easy to understand.
AG once: Execute automatic gain in the set range once, then stop the adjustment.
RAW-MIPI-AR0234M do not support AG once mode.
RAW-MIPI-AR0234M can not enable AG in ME mode.
8.6.10 mgain
./mv_mipi_i2c.sh -w -f mgain -p1 [gain] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f mgain -b your_i2c_bus_number
Range [0,MAX_Gain],MAX_Gain varies from sensor to sensor, for example, IMX178 is 48dB.
Read back to confirm the real mgain take effect.
8.6.11 aatarget
./mv_mipi_i2c.sh -r -f aatarget -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f aatarget -p1 [1,255] -b your_i2c_bus_number
The target brightness of AE and AG algorithm.
Within the set range, the algorithm will prioritize the increase in exposure time,
and increase the gain if the exposure time reaches the maximum and still cannot reach the set target brightness value.
8.6.12 aemaxtime
./mv_mipi_i2c.sh -r -f aemaxtime -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f aemaxtime -p1 [16,1000000/fps] -b your_i2c_bus_number
Maximum exposure time in AE mode.Range[16,1000000]. Note1.
Please read back to confirm the real aemaxtime take effect.
8.6.13 agmaxgain
./mv_mipi_i2c.sh -r -f agmaxgain -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f agmaxgain -p1 [0,maxgain] -b your_i2c_bus_number
Maximum value of auto gain. The range and step vary according to the model.
Most sensors have a gain step of 0.1dB, some are 0.3dB.
Note:For RAW-MIPI-AR0234M, agmaxgain cannot be configured and remains fixed at 24dB.
8.6.14 exptime
./mv_mipi_i2c.sh -r -f exptime -b your_i2c_bus_number
Get the current exposure time. This command is valid in any exposure mode.
8.6.15 curgain
./mv_mipi_i2c.sh -r -f curgain -b your_i2c_bus_number
Gets the current gain. This command is valid in any exposure mode.
8.6.16 aaroienable
./mv_mipi_i2c.sh -w -f aaroienable -p1 [0,1] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f aaroienable -b your_i2c_bus_number
Whether to enable AAROI statistics function, not enable means full ROI statistics.
8.6.17 aaroi
./mv_mipi_i2c.sh -w -f aaroi -p1 [x] -p2 [y] -p3 [width] -p4 [height] -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f aaroi -b your_i2c_bus_number
The AAROI coordinates are relative coordinates within the ROI area. So the area must be smaller than the image ROI.
8.6.18 aeag_run_once_save
./mv_mipi_i2c.sh -w -f aeag_run_once_save -b your_i2c_bus_number
Execute AE&AG once operation and save the results to the camera as manual values!
This is a function that is useful when the camera is installed.
Please make sure that the image preview has already been started before executing this command.
It performs the following operations:
- Set AE and AG range to MAX.
- Run AE once and AG once.
- Wait 5 seconds.
- Check AE once and AG once result.
- Save the previous result to manual mode.
- Run paramsave,save to flash.
8.6.19 snsreg
./mv_mipi_i2c.sh -r -f snsreg -p1 [sensor reg addr] -b your_i2c_bus_number
Read the sensor's register indirectly via the camera controller unit.
8.7 Notes
Note1: All parameters of exposure time are in microseconds. However, due to the properties of the sensor, the actual exposure time unit of the sensor is 1 line, can not be accurate to 1us.
Note2: AE: Auto exposure; AG: Auto Gain; AA: AE and AG.
Note3: The AAROI coordinates are relative coordinates within the ROI area.
Note4: For RAW Series, there are some functions that are not supported, please refer to the register list for details.
9 Configuration Method for Typical Application Scenarios:
9.1 Manual Exposure Mode:
./mv_mipi_i2c.sh -w -f expmode -p1 0 -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f gainmode -p1 0 -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f metime -p1 exptime_you_want_to_set_us -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f mgain -p1 gain_you_want_to_set_dB -b your_i2c_bus_number
After configuration, read the parameters with the following commands to confirm they have taken effect:
./mv_mipi_i2c.sh -r -f exptime -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f curgain -b your_i2c_bus_number
Note: The maximum exposure time must be strictly less than the reciprocal of the fps.
9.2 Continuous Auto Exposure Mode:
./mv_mipi_i2c.sh -w -f expmode -p1 2 -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f gainmode -p1 2 -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f aatarget -p1 brightness_target -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f aemaxtime -p1 [16,1000000/fps] -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f agmaxgain -p1 [0,maxgain] -b your_i2c_bus_number
After continuous imaging for a while, you can read the current actual exposure time and gain using the following commands:
./mv_mipi_i2c.sh -r -f exptime -b your_i2c_bus_number
./mv_mipi_i2c.sh -r -f curgain -b your_i2c_bus_number
9.3 Normal Trigger Mode:
First, stop the image acquisition to enter a state where the trigger mode can be modified:
./mv_mipi_i2c.sh -w -f imgacq -p1 0 -b your_i2c_bus_number
In the following example, configure the camera for normal hardware trigger mode, where each trigger signal captures 1 image:
./mv_mipi_i2c.sh -w -f trgmode -p1 1 -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f trgsrc -p1 1 -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f trgnum -p1 1 -b your_i2c_bus_number
You may optionally execute the following two commands to set the trigger edge and delay:
./mv_mipi_i2c.sh -w -f trgedge -p1 [0,1] -b your_i2c_bus_number
./mv_mipi_i2c.sh -w -f trgdelay -p1 [us] -b your_i2c_bus_number
After configuration, you can start the image acquisition to accept trigger signals:
./mv_mipi_i2c.sh -w -f imgacq -p1 1 -b your_i2c_bus_number