mirror of https://github.com/OpenIPC/firmware.git
Add more sensors for GM8136
parent
535dab640d
commit
99e5be726a
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -4,6 +4,10 @@ config_path=/etc/sensors
|
|||
video_frontend=ov2715
|
||||
video_system=NTSC
|
||||
|
||||
# temporary hax, we need to know resolution before inserting sensor...
|
||||
resolution=$(fw_printenv -n resolution)
|
||||
resolution=${resolution:=1080p}
|
||||
|
||||
# Support video_front_end: ov2710, ov2715, ov9712, ov9715, ov9714, ov5653
|
||||
# Support video_front_end: mt9m034, ar0130, ar0140, ar0330, ar0331
|
||||
# Support video_front_end: imx222, imx238, imx236, imx238
|
||||
|
@ -11,30 +15,39 @@ video_system=NTSC
|
|||
chipver=$(head -1 /proc/pmu/chipver)
|
||||
chipid=$(echo $chipver | cut -c 1-4)
|
||||
|
||||
|
||||
if [ "$chipid" != "8136" ] && [ "$chipid" != "8135" ]; then
|
||||
echo "Error! Not support chip version $chipver."
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ "$video_system" != "NTSC" ] && [ "$video_system" != "PAL" ]; then
|
||||
echo "Invalid argument for NTSC/PAL."
|
||||
exit
|
||||
if [ -n "$SENSOR" ]; then
|
||||
logger -s -p daemon.info -t grainmedia "Manualy set SENSOR as ${SENSOR}"
|
||||
else
|
||||
if fw_printenv -n sensor >/dev/null; then
|
||||
SENSOR_ENV=$(fw_printenv -n sensor)
|
||||
export SENSOR=${SENSOR_ENV}
|
||||
logger -s -p daemon.info -t grainmedia "Get data from environment and set SENSOR as ${SENSOR}"
|
||||
else
|
||||
SENSOR_DETECT=$(ipcinfo --short-sensor)
|
||||
export SENSOR=${SENSOR_DETECT:=unknown}
|
||||
logger -s -p daemon.info -t grainmedia "Get data from ipcinfo and set SENSOR as ${SENSOR}"
|
||||
fw_setenv sensor $SENSOR && logger -s -p daemon.info -t grainmedia "Write detected ${SENSOR} to U-Boot ENV"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$1" != "" ]; then
|
||||
video_frontend=$1
|
||||
else
|
||||
video_frontend=${SENSOR}
|
||||
fi
|
||||
|
||||
if [ "$video_frontend" != "ov2715" ] && [ "$video_frontend" != "ov2710" ] &&
|
||||
[ "$video_frontend" != "ov9710" ] && [ "$video_frontend" != "ov9712" ] &&
|
||||
[ "$video_frontend" != "ov9715" ] && [ "$video_frontend" != "ov9714" ] &&
|
||||
[ "$video_frontend" != "ar0130" ] && [ "$video_frontend" != "mt9m034" ] &&
|
||||
[ "$video_frontend" != "ar0140" ] && [ "$video_frontend" != "ar0141" ] &&
|
||||
[ "$video_frontend" != "ar0330" ] && [ "$video_frontend" != "ar0331" ] &&
|
||||
[ "$video_frontend" != "imx222" ] && [ "$video_frontend" != "imx124" ] &&
|
||||
[ "$video_frontend" != "imx238" ] && [ "$video_frontend" != "imx236" ]; then
|
||||
echo "Invalid argument for video frontend: $video_frontend"
|
||||
exit
|
||||
if [ "$video_system" == "NTSC" ]; then
|
||||
pwr_freq=0
|
||||
fps=30
|
||||
elif [ "$video_system" == "PAL" ]; then
|
||||
pwr_freq=1
|
||||
fps=25
|
||||
fi
|
||||
|
||||
cd /lib/modules/3.3.0/grainmedia
|
||||
|
@ -42,7 +55,7 @@ cd /lib/modules/3.3.0/grainmedia
|
|||
insmod frammap.ko || exit 1
|
||||
cat /proc/frammap/ddr_info
|
||||
|
||||
insmod log.ko mode=0 log_ksize=256 config_path=${config_path}/gmlib.cfg
|
||||
insmod log.ko mode=0 log_ksize=256 config_path=${config_path}/gmlib_${resolution}.cfg
|
||||
insmod ms.ko
|
||||
insmod em.ko
|
||||
insmod gm2d.ko
|
||||
|
@ -54,6 +67,20 @@ insmod adda308.ko input_mode=0 single_end=1
|
|||
insmod ft3dnr200.ko src_yc_swap=1 dst_yc_swap=1 ref_yc_swap=1 config_path=${config_path}
|
||||
|
||||
case "$video_frontend" in
|
||||
"sc1035" | "sc1045" | "sc1145")
|
||||
codec_max_width=1280
|
||||
codec_max_height=720
|
||||
insmod fisp328.ko cfg_path=/etc/sensors/isp328_${video_frontend}.cfg
|
||||
insmod fisp_algorithm.ko pwr_freq=${pwr_freq}
|
||||
insmod fisp_${video_frontend}.ko sensor_w=${codec_max_width} sensor_h=${codec_max_height} fps=${fps} mirror=1 flip=1
|
||||
;;
|
||||
"sc1135")
|
||||
codec_max_width=1280
|
||||
codec_max_height=960
|
||||
insmod fisp328.ko cfg_path=/etc/sensors/isp328_${video_frontend}.cfg
|
||||
insmod fisp_algorithm.ko pwr_freq=${pwr_freq}
|
||||
insmod fisp_${video_frontend}.ko sensor_w=${codec_max_width} sensor_h=${codec_max_height} fps=${fps} mirror=1 flip=1
|
||||
;;
|
||||
"ov2715" | "ov2710")
|
||||
codec_max_width=1920
|
||||
codec_max_height=1080
|
||||
|
@ -206,13 +233,6 @@ echo 0 >/proc/videograph/dataout/dbglevel
|
|||
echo 0 >/proc/videograph/vpd/dbglevel
|
||||
echo 0 >/proc/videograph/gmlib/dbglevel
|
||||
|
||||
echo =========================================================================
|
||||
if [ -e /etc/sensors/gmlib.cfg ]; then
|
||||
grep ";" /etc/sensors/gmlib.cfg | sed -n '1,1p'
|
||||
else
|
||||
grep ";" /etc/sensors/spec.cfg | sed -n '2,6p'
|
||||
fi
|
||||
|
||||
echo =========================================================================
|
||||
echo " Video Front End: $video_frontend"
|
||||
echo " Chip Version: $chipver"
|
||||
|
|
|
@ -1,220 +0,0 @@
|
|||
; GM8135S Product Configuration
|
||||
[VERSION]
|
||||
VERSION = 1.0
|
||||
|
||||
|
||||
[GRAPH_TYPE]
|
||||
; graph type: 1(DVR with display 3DI), 2(IPCAM)
|
||||
GRAPH_TYPE = 1
|
||||
|
||||
|
||||
[RESOLUTION]
|
||||
; Set resolution information = resolution_keyword/width/height
|
||||
CONFIG1 = 8M/3840/2160
|
||||
CONFIG2 = 7M/3264/2176
|
||||
CONFIG3 = 6M/3072/2048
|
||||
CONFIG4 = 5M/2592/1944
|
||||
CONFIG5 = 4M/2304/1728
|
||||
CONFIG6 = 3M/2048/1536
|
||||
CONFIG7 = 1080P/1920/1080
|
||||
CONFIG8 = 1.3M/1280/1024
|
||||
CONFIG9 = 1.2M/1280/960
|
||||
CONFIG10 = 1080I/1920/540
|
||||
CONFIG11 = 1M/1280/800
|
||||
CONFIG12 = 720P/1280/720
|
||||
CONFIG13 = 960H/960/576
|
||||
CONFIG14 = SVGA/800/600
|
||||
CONFIG15 = 720I/1280/360
|
||||
CONFIG16 = D1/720/576
|
||||
CONFIG17 = VGA/640/480
|
||||
CONFIG18 = nHD/640/360
|
||||
CONFIG19 = 2CIF/360/596
|
||||
CONFIG20 = HD1/720/288
|
||||
CONFIG21 = CIF/360/288
|
||||
CONFIG22 = QCIF/176/144
|
||||
|
||||
|
||||
[BITRATE]
|
||||
; Set minimum compressed ratio = 10%(better compressed) ~ 90%(worser compressed)
|
||||
MIN_COMPRESSED_RATIO = 20
|
||||
|
||||
; Set maximum bitrate = resolution_keyword/bitrate
|
||||
MAX_BITRATE = 1080P/6144K, D1/4096K
|
||||
|
||||
|
||||
[GM_LCD0]
|
||||
; LCD0 liveview and playback
|
||||
|
||||
; Playback decode out DDR : dec_out_ddr/dec_out_ratio_ddr
|
||||
;CHIP0_FILE_DDR = 1/0
|
||||
|
||||
; Playback decode out : resolution_keyword/channels/total_fps/CHIPx_FILE_DDR ...
|
||||
;PB_CONFIG = 1080P/8/240/CHIP0_FILE_DDR
|
||||
|
||||
; Display capture out: width/height/disp_rate/count/ddr_channel, ...
|
||||
;IPCAM CVBS out
|
||||
DISP_CAP_OUT_CONFIG2 = 720/576/30/3/0
|
||||
|
||||
; Display buffer: width/height/disp_rate/count/ddr_channel, ...
|
||||
;IPCAM CVBS out
|
||||
DISP_CONFIG2 = 720/576/30/3/0
|
||||
|
||||
|
||||
; Display encode: max_width/max_height/count/ddr_channel
|
||||
;DISP_ENC = 720/576/3/2
|
||||
|
||||
; Playback bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
;PB_BUFFER_TIME = 330/0
|
||||
|
||||
; Display encode bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
;ENC_BUFFER_TIME = 330/0
|
||||
|
||||
; Decode out buffer with ratio format, 1:enable 0:disable
|
||||
;PB_RATIO_ENABLE = 1
|
||||
|
||||
; Playback scaler buffer count per channel
|
||||
;PB_SCALER_COUNT = 3
|
||||
|
||||
; Share buffer enable/disable (playback, liveview buffer sharing), 1:enable 0:disable
|
||||
;SHARE_BUFFER_ENABLE = 1
|
||||
|
||||
; Capture output buffer DPCM mode, 1:enable 0:disable
|
||||
;CAP_BUFFER_DPCM = 1
|
||||
|
||||
; LCD buffer DPCM mode, 1:enable 0:disable
|
||||
;LCD_BUFFER_DPCM = 0
|
||||
|
||||
|
||||
[GM_LCD3]
|
||||
; Channel Zero (liveview and playback) encode
|
||||
|
||||
; Playback decode out DDR : dec_out_ddr/dec_out_ratio_ddr
|
||||
;CHIP0_FILE_DDR = 1/0
|
||||
|
||||
; Playback decode out : GM_LCD0 or resolution_keyword/channels/total_fps/CHIPx_FILE_DDR ...
|
||||
;PB_CONFIG = GM_LCD0
|
||||
;PB_CONFIG = 1080P/1/30/CHIP0_FILE_DDR
|
||||
|
||||
; Display capture out: width/height/disp_rate/count/ddr_channel, ...
|
||||
; Minimum requirment: 6
|
||||
;DISP_CAP_OUT_CONFIG1 = 960/576/30/6/1
|
||||
|
||||
; Display buffer: width/height/disp_rate/count/ddr_channel, ...
|
||||
; Minimum requirement = 5
|
||||
;DISP_CONFIG1 = 720/576/30/5/0
|
||||
|
||||
; Playback bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
;PB_BUFFER_TIME = 330/0
|
||||
|
||||
; Display encode bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
;ENC_BUFFER_TIME = 330/0
|
||||
|
||||
; Decode out buffer with ratio format, 1:enable 0:disable
|
||||
;PB_RATIO_ENABLE = 1
|
||||
|
||||
; Playback scaler buffer count per channel
|
||||
;PB_SCALER_COUNT = 3
|
||||
|
||||
; Share buffer enable/disable (playback, liveview buffer sharing), 1:enable 0:disable
|
||||
;SHARE_BUFFER_ENABLE = 1
|
||||
|
||||
; Capture output buffer DPCM mode, 1:enable 0:disable
|
||||
;CAP_BUFFER_DPCM = 1
|
||||
|
||||
; LCD buffer DPCM mode, 1:enable 0:disable
|
||||
;LCD_BUFFER_DPCM = 0
|
||||
|
||||
|
||||
[RECORD]
|
||||
; Capture buffer DDR : ddr_channel
|
||||
CHIP0_CAP_DDR = 0
|
||||
; Encode reference DDR: ddr_channel
|
||||
CHIP0_REFER_DDR = 0
|
||||
; Scaler output DDR : ddr_channel
|
||||
CHIP0_SCL_DDR = 0
|
||||
; IVS output DDR : ddr_channel
|
||||
CHIP0_IVS_DDR = 0
|
||||
|
||||
; CAP_CONFIG = resolution_keywords/channels/total_fps/CHIPx_CAP_DDR, ...
|
||||
CAP_CONFIG = 1080P/1/30/CHIP0_CAP_DDR, VGA/1/30/CHIP0_CAP_DDR
|
||||
|
||||
; Capture buffer with extra size = resolution_keyword/total_count/CHIPx_CAP_DDR, ...
|
||||
;EXTRA_CAP_OUT = 1080P/1/CHIP0_CAP_DDR
|
||||
|
||||
; Scaler substream output buffer = resolution_keyword/channels/CHIPx_SCL_DDR, ...
|
||||
SCALER_CONFIG = 1080P/1/CHIP0_SCL_DDR
|
||||
|
||||
; IVS output buffer = size/channels/CHIPx_IVS_DDR, ...
|
||||
;IVS_CONFIG = 4573344/1/CHIP0_IVS_DDR
|
||||
|
||||
; Bitstream output buffer = resolution_keyword/channels/total_fps, ...
|
||||
STREAM_CONFIG = 1080P/1/30, VGA/1/30
|
||||
|
||||
; Encode bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
BUFFER_TIME = 330/0
|
||||
|
||||
; Scaler substream output buffer count per channel
|
||||
SCALER_COUNT = 2
|
||||
|
||||
; IVS output buffer count per channel
|
||||
;IVS_COUNT = 2.5
|
||||
|
||||
; Two level scaling for substream better image quality (spends more bandwidth), 1:enable 0:disable
|
||||
TWO_LEVEL_SCALING_ENABLE = 0
|
||||
|
||||
; Set capture output with YUV420 auto mode (over 960H with yuv420), 1:enable 0:disable
|
||||
BUFFER_YUV420 = 0
|
||||
|
||||
; Set capture output with DPCM mode, 1:enable 0:disable
|
||||
BUFFER_DPCM = 0
|
||||
|
||||
|
||||
[AUDIO_ENCODE]
|
||||
; Audio encode = sample_rate/stereo/bits/channels
|
||||
AU_ENC_CONFIG = 48K/mono/16/1
|
||||
|
||||
; Audio encode maximum number of samples per frame
|
||||
MAX_FRAME_SAMPLES = 2048
|
||||
|
||||
; Audio encode bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
BUFFER_TIME = 128/0
|
||||
|
||||
|
||||
[AUDIO_PLAYBACK]
|
||||
; Audio playback = sample_rate/stereo/bits/channels
|
||||
AU_PLAYBACK_CONFIG = 48K/mono/16/1
|
||||
|
||||
; Audio playback maximum number of samples per frame
|
||||
MAX_FRAME_SAMPLES = 2048
|
||||
|
||||
; Audio playback bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
BUFFER_TIME = 128/0
|
||||
|
||||
|
||||
[BUFFER_CAPTURE]
|
||||
; Encode capture buffer three slop: resolution_keyword/fps/count,...
|
||||
CONFIG1 = 1080P/30/2, 1080P/15/2, 1080P/1/2
|
||||
CONFIG2 = VGA/30/2, VGA/15/2, VGA/1/2
|
||||
;CONFIG3 = D1/30/4, D1/15/3, D1/1/2
|
||||
;CONFIG4 = CIF/30/6, CIF/15/4, CIF/1/2
|
||||
CAPTURE_MAX_FPS = 30
|
||||
|
||||
|
||||
[SNAPSHOT]
|
||||
YUV_MAX_WIDTH = 640
|
||||
YUV_MAX_HEIGHT = 360
|
||||
MAX_BITSTREAM_SIZE = 262144
|
||||
|
||||
|
||||
[TRANSCODE]
|
||||
TRANSCODE_CONFIG = GM_LCD0
|
||||
|
||||
;Only for 8135
|
||||
[RESERVED_BUFFER]
|
||||
; To reduce memory usage, set reserved_ratio = 0
|
||||
RESERVED_RATIO = 0
|
||||
|
||||
[ENCODE_DIDN]
|
||||
; CONFIG1 = resolution_keywords/channels/total_fps/ddr_channel, ...
|
||||
CONFIG1 = 2M/1/30/0
|
||||
|
|
@ -0,0 +1 @@
|
|||
gmlib_1080p.cfg
|
|
@ -0,0 +1,132 @@
|
|||
; GM8135S Product Configuration
|
||||
[VERSION]
|
||||
VERSION = 1.0
|
||||
|
||||
|
||||
[GRAPH_TYPE]
|
||||
; graph type: 1(DVR with display 3DI), 2(IPCAM)
|
||||
GRAPH_TYPE = 1
|
||||
|
||||
|
||||
[RESOLUTION]
|
||||
; Set resolution information = resolution_keyword/width/height
|
||||
CONFIG1 = 8M/3840/2160
|
||||
CONFIG2 = 7M/3264/2176
|
||||
CONFIG3 = 6M/3072/2048
|
||||
CONFIG4 = 5M/2592/1944
|
||||
CONFIG5 = 4M/2304/1728
|
||||
CONFIG6 = 3M/2048/1536
|
||||
CONFIG7 = 1080P/1920/1080
|
||||
CONFIG8 = 1.3M/1280/1024
|
||||
CONFIG9 = 1.2M/1280/960
|
||||
CONFIG10 = 1080I/1920/540
|
||||
CONFIG11 = 1M/1280/800
|
||||
CONFIG12 = 720P/1280/720
|
||||
CONFIG13 = 960H/960/576
|
||||
CONFIG14 = SVGA/800/600
|
||||
CONFIG15 = 720I/1280/360
|
||||
CONFIG16 = D1/720/576
|
||||
CONFIG17 = VGA/640/480
|
||||
CONFIG18 = nHD/640/360
|
||||
CONFIG19 = 2CIF/360/596
|
||||
CONFIG20 = HD1/720/288
|
||||
CONFIG21 = CIF/360/288
|
||||
CONFIG22 = QCIF/176/144
|
||||
|
||||
|
||||
[BITRATE]
|
||||
; Set minimum compressed ratio = 10%(better compressed) ~ 90%(worser compressed)
|
||||
MIN_COMPRESSED_RATIO = 20
|
||||
|
||||
; Set maximum bitrate = resolution_keyword/bitrate
|
||||
MAX_BITRATE = 1080P/6144K, D1/4096K
|
||||
|
||||
[RECORD]
|
||||
; Capture buffer DDR : ddr_channel
|
||||
CHIP0_CAP_DDR = 0
|
||||
; Encode reference DDR: ddr_channel
|
||||
CHIP0_REFER_DDR = 0
|
||||
; Scaler output DDR : ddr_channel
|
||||
CHIP0_SCL_DDR = 0
|
||||
; IVS output DDR : ddr_channel
|
||||
CHIP0_IVS_DDR = 0
|
||||
|
||||
; CAP_CONFIG = resolution_keywords/channels/total_fps/CHIPx_CAP_DDR, ...
|
||||
CAP_CONFIG = 1080P/1/30/CHIP0_CAP_DDR, VGA/1/30/CHIP0_CAP_DDR
|
||||
|
||||
; Capture buffer with extra size = resolution_keyword/total_count/CHIPx_CAP_DDR, ...
|
||||
;EXTRA_CAP_OUT = 1080P/1/CHIP0_CAP_DDR
|
||||
|
||||
; Scaler substream output buffer = resolution_keyword/channels/CHIPx_SCL_DDR, ...
|
||||
SCALER_CONFIG = 1080P/1/CHIP0_SCL_DDR
|
||||
|
||||
; IVS output buffer = size/channels/CHIPx_IVS_DDR, ...
|
||||
;IVS_CONFIG = 4573344/1/CHIP0_IVS_DDR
|
||||
|
||||
; Bitstream output buffer = resolution_keyword/channels/total_fps, ...
|
||||
STREAM_CONFIG = 1080P/1/30, VGA/1/30
|
||||
|
||||
; Encode bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
BUFFER_TIME = 330/0
|
||||
|
||||
; Scaler substream output buffer count per channel
|
||||
SCALER_COUNT = 2
|
||||
|
||||
; IVS output buffer count per channel
|
||||
;IVS_COUNT = 2.5
|
||||
|
||||
; Two level scaling for substream better image quality (spends more bandwidth), 1:enable 0:disable
|
||||
TWO_LEVEL_SCALING_ENABLE = 0
|
||||
|
||||
; Set capture output with YUV420 auto mode (over 960H with yuv420), 1:enable 0:disable
|
||||
BUFFER_YUV420 = 0
|
||||
|
||||
; Set capture output with DPCM mode, 1:enable 0:disable
|
||||
BUFFER_DPCM = 0
|
||||
|
||||
|
||||
[AUDIO_ENCODE]
|
||||
; Audio encode = sample_rate/stereo/bits/channels
|
||||
AU_ENC_CONFIG = 48K/mono/16/1
|
||||
|
||||
; Audio encode maximum number of samples per frame
|
||||
MAX_FRAME_SAMPLES = 2048
|
||||
|
||||
; Audio encode bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
BUFFER_TIME = 128/0
|
||||
|
||||
|
||||
[AUDIO_PLAYBACK]
|
||||
; Audio playback = sample_rate/stereo/bits/channels
|
||||
AU_PLAYBACK_CONFIG = 48K/mono/16/1
|
||||
|
||||
; Audio playback maximum number of samples per frame
|
||||
MAX_FRAME_SAMPLES = 2048
|
||||
|
||||
; Audio playback bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
BUFFER_TIME = 128/0
|
||||
|
||||
|
||||
[BUFFER_CAPTURE]
|
||||
; Encode capture buffer three slop: resolution_keyword/fps/count,...
|
||||
CONFIG1 = 1080P/30/2, 1080P/15/2, 1080P/1/2
|
||||
CONFIG2 = VGA/30/2, VGA/15/2, VGA/1/2
|
||||
;CONFIG3 = D1/30/4, D1/15/3, D1/1/2
|
||||
;CONFIG4 = CIF/30/6, CIF/15/4, CIF/1/2
|
||||
CAPTURE_MAX_FPS = 30
|
||||
|
||||
|
||||
[SNAPSHOT]
|
||||
YUV_MAX_WIDTH = 640
|
||||
YUV_MAX_HEIGHT = 360
|
||||
MAX_BITSTREAM_SIZE = 262144
|
||||
|
||||
;Only for 8135
|
||||
[RESERVED_BUFFER]
|
||||
; To reduce memory usage, set reserved_ratio = 0
|
||||
RESERVED_RATIO = 0
|
||||
|
||||
[ENCODE_DIDN]
|
||||
; CONFIG1 = resolution_keywords/channels/total_fps/ddr_channel, ...
|
||||
CONFIG1 = 2M/1/30/0
|
||||
|
|
@ -0,0 +1,131 @@
|
|||
; GM8135S Product Configuration
|
||||
[VERSION]
|
||||
VERSION = 1.0
|
||||
|
||||
|
||||
[GRAPH_TYPE]
|
||||
; graph type: 1(DVR with display 3DI), 2(IPCAM)
|
||||
GRAPH_TYPE = 1
|
||||
|
||||
|
||||
[RESOLUTION]
|
||||
; Set resolution information = resolution_keyword/width/height
|
||||
CONFIG1 = 8M/3840/2160
|
||||
CONFIG2 = 7M/3264/2176
|
||||
CONFIG3 = 6M/3072/2048
|
||||
CONFIG4 = 5M/2592/1944
|
||||
CONFIG5 = 4M/2304/1728
|
||||
CONFIG6 = 3M/2048/1536
|
||||
CONFIG7 = 1080P/1920/1080
|
||||
CONFIG8 = 1.3M/1280/1024
|
||||
CONFIG9 = 1.2M/1280/960
|
||||
CONFIG10 = 1080I/1920/540
|
||||
CONFIG11 = 1M/1280/800
|
||||
CONFIG12 = 720P/1280/720
|
||||
CONFIG13 = 960H/960/576
|
||||
CONFIG14 = SVGA/800/600
|
||||
CONFIG15 = 720I/1280/360
|
||||
CONFIG16 = D1/720/576
|
||||
CONFIG17 = VGA/640/480
|
||||
CONFIG18 = nHD/640/360
|
||||
CONFIG19 = 2CIF/360/596
|
||||
CONFIG20 = HD1/720/288
|
||||
CONFIG21 = CIF/360/288
|
||||
CONFIG22 = QCIF/176/144
|
||||
|
||||
|
||||
[BITRATE]
|
||||
; Set minimum compressed ratio = 10%(better compressed) ~ 90%(worser compressed)
|
||||
MIN_COMPRESSED_RATIO = 20
|
||||
|
||||
; Set maximum bitrate = resolution_keyword/bitrate
|
||||
MAX_BITRATE = 720P/2048K, D1/1024K
|
||||
|
||||
[RECORD]
|
||||
; Capture buffer DDR : ddr_channel
|
||||
CHIP0_CAP_DDR = 0
|
||||
; Encode reference DDR: ddr_channel
|
||||
CHIP0_REFER_DDR = 0
|
||||
; Scaler output DDR : ddr_channel
|
||||
CHIP0_SCL_DDR = 0
|
||||
; IVS output DDR : ddr_channel
|
||||
CHIP0_IVS_DDR = 0
|
||||
|
||||
; CAP_CONFIG = resolution_keywords/channels/total_fps/CHIPx_CAP_DDR, ...
|
||||
CAP_CONFIG = 720P/1/30/CHIP0_CAP_DDR, VGA/1/30/CHIP0_CAP_DDR
|
||||
|
||||
; Capture buffer with extra size = resolution_keyword/total_count/CHIPx_CAP_DDR, ...
|
||||
;EXTRA_CAP_OUT = 1080P/1/CHIP0_CAP_DDR
|
||||
|
||||
; Scaler substream output buffer = resolution_keyword/channels/CHIPx_SCL_DDR, ...
|
||||
SCALER_CONFIG = 720P/1/CHIP0_SCL_DDR
|
||||
|
||||
; IVS output buffer = size/channels/CHIPx_IVS_DDR, ...
|
||||
;IVS_CONFIG = 4573344/1/CHIP0_IVS_DDR
|
||||
|
||||
; Bitstream output buffer = resolution_keyword/channels/total_fps, ...
|
||||
STREAM_CONFIG = 720P/1/30, VGA/1/30
|
||||
|
||||
; Encode bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
BUFFER_TIME = 330/0
|
||||
|
||||
; Scaler substream output buffer count per channel
|
||||
SCALER_COUNT = 2
|
||||
|
||||
; IVS output buffer count per channel
|
||||
;IVS_COUNT = 2.5
|
||||
|
||||
; Two level scaling for substream better image quality (spends more bandwidth), 1:enable 0:disable
|
||||
TWO_LEVEL_SCALING_ENABLE = 0
|
||||
|
||||
; Set capture output with YUV420 auto mode (over 960H with yuv420), 1:enable 0:disable
|
||||
BUFFER_YUV420 = 0
|
||||
|
||||
; Set capture output with DPCM mode, 1:enable 0:disable
|
||||
BUFFER_DPCM = 0
|
||||
|
||||
|
||||
[AUDIO_ENCODE]
|
||||
; Audio encode = sample_rate/stereo/bits/channels
|
||||
AU_ENC_CONFIG = 48K/mono/16/1
|
||||
|
||||
; Audio encode maximum number of samples per frame
|
||||
MAX_FRAME_SAMPLES = 2048
|
||||
|
||||
; Audio encode bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
BUFFER_TIME = 128/0
|
||||
|
||||
|
||||
[AUDIO_PLAYBACK]
|
||||
; Audio playback = sample_rate/stereo/bits/channels
|
||||
AU_PLAYBACK_CONFIG = 48K/mono/16/1
|
||||
|
||||
; Audio playback maximum number of samples per frame
|
||||
MAX_FRAME_SAMPLES = 2048
|
||||
|
||||
; Audio playback bitstream buffer : buffer_time(ms)/ddr_channel
|
||||
BUFFER_TIME = 128/0
|
||||
|
||||
|
||||
[BUFFER_CAPTURE]
|
||||
; Encode capture buffer three slop: resolution_keyword/fps/count,...
|
||||
CONFIG1 = 720P/30/2, 720P/15/2, 720P/1/2
|
||||
CONFIG2 = VGA/30/2, VGA/15/2, VGA/1/2
|
||||
;CONFIG3 = D1/30/4, D1/15/3, D1/1/2
|
||||
;CONFIG4 = CIF/30/6, CIF/15/4, CIF/1/2
|
||||
CAPTURE_MAX_FPS = 25
|
||||
|
||||
|
||||
[SNAPSHOT]
|
||||
YUV_MAX_WIDTH = 640
|
||||
YUV_MAX_HEIGHT = 360
|
||||
MAX_BITSTREAM_SIZE = 262144
|
||||
|
||||
;Only for 8135
|
||||
[RESERVED_BUFFER]
|
||||
; To reduce memory usage, set reserved_ratio = 0
|
||||
RESERVED_RATIO = 0
|
||||
|
||||
[ENCODE_DIDN]
|
||||
; CONFIG1 = resolution_keywords/channels/total_fps/ddr_channel, ...
|
||||
CONFIG1 = 720P/1/30/0
|
|
@ -0,0 +1,389 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = IMX225
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =128
|
||||
adjust_blc =1
|
||||
adjust_nr =1
|
||||
adjust_gamma =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th =96,128,256,512,1024,2048,4096,8192,16076
|
||||
gamma_idx =4,4,4,4,4,4,4,4,4
|
||||
#nl_dpc =10,80,110,130,140,140,155,155,160
|
||||
nl_dpc =50,130,160,180,180,185,185,190,190
|
||||
nl_raw =6,10,15,15,15,20,25,35,150
|
||||
nl_ctk =6,11,13,28,35,40,45,50,50
|
||||
nl_ci =0,12,13,22,35,40,50,70,120
|
||||
sp_lvl =120,120,120,110,110,110,80,40,20
|
||||
ce_lvl =35,32,32,30,25,20,12,26,26
|
||||
saturation_lvl =128,128,128,115,100,85,65,50,50
|
||||
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,0,0,0,0
|
||||
tmnr_lvl=12,16,18,20,48,64,64,64,64
|
||||
blc_r=-248,-248,-248,-248,-248,-248,-248,-248,-248
|
||||
blc_g=-248,-248,-248,-248,-248,-248,-248,-248,-248
|
||||
blc_b=-248,-248,-248,-248,-248,-248,-248,-246,-246
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2048, 3040, 4000
|
||||
wdr_kn_y = 64, 128, 4096, 65535
|
||||
wdr_sl = 1, 1, 64, 1024
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-248, -248, -248, -248
|
||||
|
||||
[LS]
|
||||
lsc_segrds =14
|
||||
lsc_ctr_r =482, 589
|
||||
lsc_ctr_gr =482, 589
|
||||
lsc_ctr_gb =482, 589
|
||||
lsc_ctr_b =482, 589
|
||||
lsc_mxtn_r=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gr=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gb=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_b=175,372,418,156,115,566,504,129
|
||||
lsc_rdsparam_r=256,256,268,259,274,263,281,267,288,271,293,276,298,279,303,284,307,288,311,293,316,296,322,299,323,303,324,307,324,308,325,309,264,258,271,261,277,265,285,269,289,273,296,278,300,282,306,286,309,291,313,294,320,298,322,301,324,305,324,308,325,308,326,310,256,256,267,260,272,263,278,268,284,272,289,275,294,279,299,285,302,288,306,291,310,293,315,297,319,299,323,302,326,305,329,307,263,258,270,261,275,265,282,271,286,274,292,277,297,282,301,287,304,290,309,292,313,296,317,298,321,301,325,303,327,306,330,310,256,256,262,264,266,271,272,274,278,275,281,276,282,276,283,278,283,278,284,279,285,280,286,281,286,281,287,282,288,283,288,283,259,261,265,268,269,273,276,274,280,275,281,276,282,277,283,278,284,279,285,279,285,280,286,281,287,282,287,282,288,283,290,284,256,256,259,268,263,274,267,281,272,286,277,292,279,295,283,300,287,304,292,307,294,311,297,317,300,322,303,326,306,327,309,327,258,263,261,271,265,277,270,283,274,289,279,294,280,298,284,302,290,306,293,308,295,315,299,319,302,325,304,327,307,327,312,328,
|
||||
lsc_rdsparam_gr=256,256,263,259,267,262,271,265,275,268,279,272,281,276,284,280,286,283,291,286,294,289,295,293,296,295,297,297,297,299,297,299,261,258,265,260,269,263,273,266,277,270,280,274,283,278,285,281,289,285,293,288,295,291,296,294,296,296,297,298,297,299,298,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,281,280,285,284,289,285,293,288,296,290,298,292,301,295,302,297,303,300,260,259,263,261,267,265,272,267,276,271,279,275,280,278,283,282,287,285,291,287,294,289,298,291,300,293,302,296,302,298,304,301,256,256,260,263,263,267,268,269,272,269,275,270,276,271,276,271,277,272,278,273,278,273,279,274,280,274,280,275,281,275,281,275,259,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,275,273,278,276,280,278,283,281,286,285,290,287,294,291,296,294,298,296,302,298,302,301,302,258,260,260,266,263,270,267,274,271,276,275,279,277,282,279,284,283,288,286,292,289,296,292,297,295,300,297,302,301,302,302,303,
|
||||
lsc_rdsparam_gb=256,256,263,259,267,261,272,265,275,268,279,272,281,276,284,280,287,283,292,287,294,289,297,293,298,295,298,297,298,299,299,299,260,258,265,260,269,263,274,266,277,270,280,274,283,278,285,281,289,286,293,288,296,291,297,294,298,296,298,298,298,299,300,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,282,280,285,284,289,286,293,288,298,290,300,292,301,295,302,297,304,300,259,259,263,261,267,265,272,267,276,271,279,275,281,278,283,282,287,285,291,287,295,289,298,291,300,293,302,296,303,298,306,302,256,256,260,263,263,267,267,269,272,269,275,270,276,271,276,271,277,272,278,273,279,273,279,274,280,274,280,275,281,275,281,275,258,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,276,273,278,276,280,278,283,281,286,285,290,288,294,290,297,294,298,296,301,298,302,301,302,258,260,260,266,263,270,267,274,271,277,275,279,277,282,279,284,283,288,287,292,289,296,292,297,295,300,297,302,299,302,302,303,
|
||||
lsc_rdsparam_b=256,256,263,257,264,258,269,261,274,264,277,264,278,267,279,268,280,267,282,269,287,272,290,274,291,276,292,278,292,280,293,280,261,256,263,257,267,259,272,263,276,264,278,265,278,268,280,267,281,268,285,270,288,273,291,275,292,277,292,280,293,280,294,282,256,256,261,256,262,258,268,262,272,264,276,265,278,267,279,267,280,267,283,268,284,271,284,273,287,275,291,277,294,280,297,282,260,256,261,257,265,260,270,263,274,264,277,266,277,267,280,267,280,268,283,269,284,272,285,274,289,276,292,279,297,280,301,284,256,256,259,260,260,263,264,264,268,265,269,265,270,265,270,265,270,265,270,265,271,266,271,267,271,267,272,268,272,268,273,268,258,258,259,262,262,264,266,264,269,265,270,265,270,265,270,265,270,266,271,266,271,266,271,267,271,268,272,268,273,268,274,269,256,256,258,262,259,265,262,269,265,273,268,276,271,276,272,278,272,277,273,277,274,280,274,285,276,288,278,291,280,290,283,290,257,260,258,263,260,267,263,272,267,275,270,276,272,277,271,277,271,278,274,279,274,281,275,287,277,291,279,290,281,290,285,290,
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength=0
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_F_Manual=0
|
||||
|
||||
|
||||
[DRC_WDR]
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_PG_index = 0,769,9,10,1035,28,29,30,31,18,19,20,21,22,23,792
|
||||
wdr_PG_value = 256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,4210,8362,16609,32993,65534
|
||||
wdr_F_index = 0,1025,785,537,285,28,29,30,31,28,29,30,31,0,0,0
|
||||
wdr_F_value = 2233,2273,2310,2346,2380,2412,2443,2472,2500,2527,2553,2579,2603,2626,2649,2671,2692,2770,2841,2905,2963,3017,3067,3113,3157,3307,3431,3535,3625,3900,4096,65535
|
||||
wdr_A_index = 768,520,524,272,274,20,21,22,23,24,25,26,27,28,29,30
|
||||
wdr_A_value = 3752,3142,2541,2042,1652,1352,1122,944,693,530,418,339,281,237,202,175,136,108,89,74,54,41,33,27,22,19,16,14,12,11,10,127
|
||||
wdr_qcoef1 = 2364
|
||||
wdr_qcoef2 = 1831
|
||||
wdr_qcoef3 = 1548
|
||||
wdr_intensity_blend = 5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth = 255
|
||||
wdr_max_gain_ratio = 64
|
||||
wdr_strength = 128
|
||||
|
||||
[GM]
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
value =1,4,6,8,11,14,17,20,35,52,68,82,109,128,145,161,176,190,202,213,223,232,236,240,242,244,246,248,250,251,253,255
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=8
|
||||
VirtualControls=0,0,277,24,516,51,792,85,1136,118,2139,181,3351,234,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 128
|
||||
ce_th = 3
|
||||
ce_strength = 10
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,151,29,-6,-305,312,296,-276,-20
|
||||
cv_1=77,151,29,5,-289,283,324,-262,-62
|
||||
cv_2=77,151,29,49,-416,367,283,-201,-82
|
||||
|
||||
## default value
|
||||
#cv_0 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_1 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_2 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode =0
|
||||
ia_colorize_u =12
|
||||
ia_colorize_v =6
|
||||
ia_offset_u =0
|
||||
ia_offset_v =0
|
||||
ia_hue=0,3,1,254,251,255,2,4
|
||||
ia_saturation=149,148,178,139,139,125,110,137
|
||||
ia_poster_th =160,208,104,180
|
||||
ia_poster_y =90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 11
|
||||
const_k = 25205901
|
||||
target_y = 120
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=0
|
||||
auto_contrast=0
|
||||
#max ISP gain (125 ~ 65536)
|
||||
max_isp_gain=640
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
awb_th0=5
|
||||
awb_th1=245
|
||||
awb_th2=59
|
||||
awb_th3=270
|
||||
awb_th4=-49
|
||||
awb_th5=146
|
||||
awb_th6=40
|
||||
awb_th7=174
|
||||
awb_th8=19
|
||||
awb_th9=97
|
||||
awb_th10=17
|
||||
awb_th11=50
|
||||
awb_th12=255
|
||||
rb_ratio=112,235,413
|
||||
target_rg_ratio=990,990,990
|
||||
target_bg_ratio=990,990,990
|
||||
VirtualXPoints=66,56,51,45,41,82,66,56,48,40,0,0,0,0,0,127,108,91,76,65
|
||||
VirtualYPoints=74,87,106,123,136,54,62,71,79,88,0,0,0,0,0,46,49,61,73,82
|
||||
VirtualMode=0
|
||||
VirtualPoints=52,84,43,99,36,121,31,139,26,155,64,57,49,65,41,78,33,88,26,97,112,46,89,55,74,69,61,82,50,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=15,245,59,270,-49,146,40,174,19,97,13,50,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=175,142,220,238,265,292,399,492,317,294,264,239,119,244,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
OffsetThs=5,0,-81,66,17,10,-26,-2,-12,-36,-10,-33,0,
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=175,142,220,238,265,292
|
||||
B_gain=399,492,317,294,264,239
|
||||
outdoor_ev_th=60000
|
||||
|
||||
#grass region
|
||||
awb_roi1_enable=0
|
||||
awb_roi1_mode=1
|
||||
awb_roi1_th0=5
|
||||
awb_roi1_th1=120
|
||||
awb_roi1_th2=84
|
||||
awb_roi1_th3=155
|
||||
awb_roi1_th4=-9
|
||||
awb_roi1_th5=60
|
||||
awb_roi1_th6=42
|
||||
awb_roi1_th7=100
|
||||
awb_roi1_th8=33
|
||||
awb_roi1_th9=64
|
||||
awb_roi1_th10=10
|
||||
awb_roi1_th11=45
|
||||
|
||||
[AWB_M2]
|
||||
VirtualPoints0=0x121f14,0x365936,0x15423f,0x112b17,0x225252,0x249264,0x394016,0x0f3343,0x343320,0x0e1c1f,0x2f7c2c,0x46671d,0x091f2e,0x12471f,0x282212,0x518c24,0x333a3a,0x0f4f4c,0x5cd795,0x419e6f,0x2c6b4d,0x1a412d,0x0d231a,0x06120f,
|
||||
VirtualPoints1=0x161e0e,0x495e2f,0x184036,0x142a10,0x2b5247,0x2d9357,0x4e4711,0x122e3a,0x48361a,0x111817,0x3e8426,0x607118,0x081a24,0x15461a,0x37210d,0x6e9a21,0x443c31,0x114b41,0x7be486,0x55a463,0x386c42,0x203d25,0x0e1d11,0x050c08,
|
||||
VirtualPoints2=0x181d0c,0x4d5926,0x1a3b2a,0x16280d,0x2f4b38,0x2f8545,0x54470f,0x132a2c,0x4c3516,0x111812,0x427c21,0x666e15,0x09171c,0x164216,0x3b230b,0x74961d,0x4a3a28,0x124433,0x80d76d,0x5a9a4f,0x3b6635,0x213b1e,0x111d10,0x060e07,
|
||||
VirtualPoints3=0x29270a,0x7e7321,0x274323,0x1f300a,0x3d4f28,0x3d8633,0x815e0e,0x192b21,0x6f4310,0x17180d,0x568418,0x868112,0x0b1413,0x1d4810,0x4c2808,0x97a518,0x593b1a,0x143821,0xa6d84e,0x739a37,0x4a6324,0x2a3713,0x121a09,0x070a02,
|
||||
VirtualPoints4=0x3a2c0a,0xae8520,0x35471b,0x293209,0x575420,0x4e8c2d,0xa66a0e,0x212b18,0x934b0f,0x1f1908,0x6d8718,0xad8712,0x0d140b,0x22410f,0x682c08,0xb9a617,0x7a4013,0x193619,0xc2d03b,0x879229,0x565e1a,0x30340d,0x161806,0x0a0a03,
|
||||
VirtualPoints5=0x402b08,0xc07c1a,0x3a3e13,0x2e2c07,0x604b16,0x52771f,0xba6a0e,0x272710,0xa74d0e,0x251906,0x767c14,0xbe8210,0x111209,0x283c0c,0x7a3108,0xd0a116,0x8d4010,0x1b2e11,0xdbc42c,0x998b1f,0x635a14,0x37320b,0x1b1804,0x0d0a02,
|
||||
VirtualPoints6=0x1f2709,0x5d6e1d,0x20401e,0x182e0a,0x2b4724,0x34842d,0x62600c,0x13281e,0x4d3c0d,0x10160c,0x478716,0x698211,0x091311,0x194610,0x332207,0x78aa15,0x3e3416,0x10341e,0x86db47,0x5e9b32,0x3c6520,0x213711,0x0f1a08,0x050b02,
|
||||
rgb_min=5
|
||||
rgb_max=240
|
||||
grey_cx_min=896
|
||||
grey_cx_max=1324
|
||||
grey_cy_min=696
|
||||
grey_cy_max=846
|
||||
grey_cs_min=694
|
||||
grey_cs_max=765
|
||||
grey_cs_multiplier=12
|
||||
grey_cs_offset=1046
|
||||
grey_cx_boundary=960,1020,1098,1189,1261
|
||||
cwf_cx_min=1055
|
||||
cwf_cx_max=1178
|
||||
cwf_cy_min=613
|
||||
cwf_cy_max=696
|
||||
gamut0_ca_min=-1012
|
||||
gamut0_ca_max=293
|
||||
gamut0_ca_slope=2544
|
||||
gamut0_cb_min=1420
|
||||
gamut0_cb_max=2475
|
||||
gamut0_cb_slope=-2302
|
||||
gamut0_cx_min=581
|
||||
gamut0_cx_max=1322
|
||||
gamut0_cy_min=376
|
||||
gamut0_cy_max=1143
|
||||
gamut1_ca_min=-1057
|
||||
gamut1_ca_max=226
|
||||
gamut1_ca_slope=2577
|
||||
gamut1_cb_min=1364
|
||||
gamut1_cb_max=2605
|
||||
gamut1_cb_slope=-2112
|
||||
gamut1_cx_min=606
|
||||
gamut1_cx_max=1464
|
||||
gamut1_cy_min=365
|
||||
gamut1_cy_max=1189
|
||||
gamut2_ca_min=-1084
|
||||
gamut2_ca_max=111
|
||||
gamut2_ca_slope=2598
|
||||
gamut2_cb_min=1309
|
||||
gamut2_cb_max=2516
|
||||
gamut2_cb_slope=-1953
|
||||
gamut2_cx_min=670
|
||||
gamut2_cx_max=1495
|
||||
gamut2_cy_min=362
|
||||
gamut2_cy_max=1174
|
||||
gamut3_ca_min=-1413
|
||||
gamut3_ca_max=-283
|
||||
gamut3_ca_slope=3075
|
||||
gamut3_cb_min=1388
|
||||
gamut3_cb_max=2657
|
||||
gamut3_cb_slope=-2020
|
||||
gamut3_cx_min=787
|
||||
gamut3_cx_max=1568
|
||||
gamut3_cy_min=338
|
||||
gamut3_cy_max=1198
|
||||
gamut4_ca_min=-1331
|
||||
gamut4_ca_max=-552
|
||||
gamut4_ca_slope=2955
|
||||
gamut4_cb_min=1051
|
||||
gamut4_cb_max=2223
|
||||
gamut4_cb_slope=-1212
|
||||
gamut4_cx_min=904
|
||||
gamut4_cx_max=1635
|
||||
gamut4_cy_min=411
|
||||
gamut4_cy_max=1296
|
||||
gamut5_ca_min=-1446
|
||||
gamut5_ca_max=-711
|
||||
gamut5_ca_slope=3136
|
||||
gamut5_cb_min=1160
|
||||
gamut5_cb_max=2292
|
||||
gamut5_cb_slope=-1260
|
||||
gamut5_cx_min=979
|
||||
gamut5_cx_max=1656
|
||||
gamut5_cy_min=470
|
||||
gamut5_cy_max=1317
|
||||
|
||||
[AF]
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
Cb_NoiseLevel_0=1,1,1,1
|
||||
Cr_NoiseLevel_0=1,1,1,1
|
||||
Y_NoiseLevel_1=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
Cb_NoiseLevel_1=68,54,40,27
|
||||
Cr_NoiseLevel_1=84,67,50,33
|
||||
Y_NoiseLevel_2=24,44,51,57,61,63,61,21,18,37,40,45,49,50,49,16,6,13,30,34,37,37,37,12,5,7,20,22,24,25,24,8
|
||||
Cb_NoiseLevel_2=100,80,60,40
|
||||
Cr_NoiseLevel_2=100,80,60,40
|
||||
Y_NoiseLevel_3=122,201,160,129,122,105,68,48,97,160,128,102,97,83,54,37,72,120,95,77,72,62,40,28,48,79,63,51,48,41,27,18
|
||||
Cb_NoiseLevel_3=245,209,154,99
|
||||
Cr_NoiseLevel_3=169,150,112,71
|
||||
Y_NoiseLevel_4=83,97,74,58,46,33,29,21,66,78,59,46,36,26,23,16,49,58,44,35,27,19,17,12,33,39,29,23,18,13,11,8
|
||||
Cb_NoiseLevel_4=248,198,148,99
|
||||
Cr_NoiseLevel_4=242,193,145,96
|
||||
Y_NoiseLevel_5=152,225,179,134,88,69,49,37,121,180,143,107,70,55,39,29,91,134,107,80,52,41,29,21,60,90,71,53,34,27,19,13
|
||||
Cb_NoiseLevel_5=255,215,180,123
|
||||
Cr_NoiseLevel_5=240,201,165,112
|
||||
Y_NoiseLevel_6=336,394,344,283,227,190,121,73,268,315,275,226,181,152,96,58,201,236,206,169,136,113,72,43,134,157,137,113,90,76,48,29
|
||||
Cb_NoiseLevel_6=317,301,226,144
|
||||
Cr_NoiseLevel_6=338,322,241,142
|
||||
Y_NoiseLevel_7=450,611,469,406,327,252,139,65,359,488,375,324,261,202,111,51,270,366,280,242,195,151,83,38,179,244,187,162,130,100,55,25
|
||||
Cb_NoiseLevel_7=566,489,393,246
|
||||
Cr_NoiseLevel_7=383,306,229,153
|
||||
Y_NoiseLevel_8=1718,2023,1686,1433,1187,863,749,521,1374,1617,1580,1145,950,690,599,415,1030,1212,1427,859,711,518,448,311,687,808,550,572,475,344,299,207
|
||||
Cb_NoiseLevel_8=696,662,508,299
|
||||
Cr_NoiseLevel_8=692,553,415,276
|
||||
|
||||
[SHARPEN]
|
||||
BrightHaloClip=128
|
||||
DarkHaloClip=128
|
||||
PeakingGain=16
|
||||
|
||||
[CC]
|
||||
cc_0=256,0,0,0,256,0,0,0,256
|
||||
cc_1=256,0,0,0,256,0,0,0,256
|
||||
cc_2=256,0,0,0,256,0,0,0,256
|
||||
enable=0
|
|
@ -0,0 +1,285 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = IMX291
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =128
|
||||
adjust_blc =0
|
||||
adjust_nr =1
|
||||
adjust_gamma =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th =96,128,256,512,1024,2048,4096,8192,16640
|
||||
gamma_idx =4,4,4,4,4,4,4,4,4
|
||||
nl_dpc =0,0,0,30,45,80,85,85,95
|
||||
nl_raw =0,0,0,0,20,30,30,70,100
|
||||
nl_ctk =0,0,0,30,50,60,80,80,80
|
||||
nl_ci =0,0,0,20,40,40,50,140,148
|
||||
sp_lvl =120,120,115,110,105,100,90,90,80
|
||||
saturation_lvl =128,128,128,120,115,95,80,80,80
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,0,0,0,0
|
||||
tmnr_lvl=10,16,16,20,24,36,46,64,64
|
||||
blc_r=-248,-248,-248,-248,-248,-248,-248,-248,-248
|
||||
blc_g=-248,-248,-248,-248,-248,-248,-248,-248,-248
|
||||
blc_b=-248,-248,-248,-248,-248,-248,-248,-248,-248
|
||||
ce_lvl=30,25,25,25,25,25,25,0,0
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2048, 3040, 4000
|
||||
wdr_kn_y = 64, 128, 4096, 65535
|
||||
wdr_sl = 1, 1, 64, 1024
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-240, -248, -248, -240
|
||||
|
||||
[LS]
|
||||
lsc_segrds =14
|
||||
lsc_ctr_r =482, 589
|
||||
lsc_ctr_gr =482, 589
|
||||
lsc_ctr_gb =482, 589
|
||||
lsc_ctr_b =482, 589
|
||||
lsc_mxtn_r=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gr=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gb=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_b=175,372,418,156,115,566,504,129
|
||||
lsc_rdsparam_r=256,256,268,259,274,263,281,267,288,271,293,276,298,279,303,284,307,288,311,293,316,296,322,299,323,303,324,307,324,308,325,309,264,258,271,261,277,265,285,269,289,273,296,278,300,282,306,286,309,291,313,294,320,298,322,301,324,305,324,308,325,308,326,310,256,256,267,260,272,263,278,268,284,272,289,275,294,279,299,285,302,288,306,291,310,293,315,297,319,299,323,302,326,305,329,307,263,258,270,261,275,265,282,271,286,274,292,277,297,282,301,287,304,290,309,292,313,296,317,298,321,301,325,303,327,306,330,310,256,256,262,264,266,271,272,274,278,275,281,276,282,276,283,278,283,278,284,279,285,280,286,281,286,281,287,282,288,283,288,283,259,261,265,268,269,273,276,274,280,275,281,276,282,277,283,278,284,279,285,279,285,280,286,281,287,282,287,282,288,283,290,284,256,256,259,268,263,274,267,281,272,286,277,292,279,295,283,300,287,304,292,307,294,311,297,317,300,322,303,326,306,327,309,327,258,263,261,271,265,277,270,283,274,289,279,294,280,298,284,302,290,306,293,308,295,315,299,319,302,325,304,327,307,327,312,328,
|
||||
lsc_rdsparam_gr=256,256,263,259,267,262,271,265,275,268,279,272,281,276,284,280,286,283,291,286,294,289,295,293,296,295,297,297,297,299,297,299,261,258,265,260,269,263,273,266,277,270,280,274,283,278,285,281,289,285,293,288,295,291,296,294,296,296,297,298,297,299,298,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,281,280,285,284,289,285,293,288,296,290,298,292,301,295,302,297,303,300,260,259,263,261,267,265,272,267,276,271,279,275,280,278,283,282,287,285,291,287,294,289,298,291,300,293,302,296,302,298,304,301,256,256,260,263,263,267,268,269,272,269,275,270,276,271,276,271,277,272,278,273,278,273,279,274,280,274,280,275,281,275,281,275,259,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,275,273,278,276,280,278,283,281,286,285,290,287,294,291,296,294,298,296,302,298,302,301,302,258,260,260,266,263,270,267,274,271,276,275,279,277,282,279,284,283,288,286,292,289,296,292,297,295,300,297,302,301,302,302,303,
|
||||
lsc_rdsparam_gb=256,256,263,259,267,261,272,265,275,268,279,272,281,276,284,280,287,283,292,287,294,289,297,293,298,295,298,297,298,299,299,299,260,258,265,260,269,263,274,266,277,270,280,274,283,278,285,281,289,286,293,288,296,291,297,294,298,296,298,298,298,299,300,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,282,280,285,284,289,286,293,288,298,290,300,292,301,295,302,297,304,300,259,259,263,261,267,265,272,267,276,271,279,275,281,278,283,282,287,285,291,287,295,289,298,291,300,293,302,296,303,298,306,302,256,256,260,263,263,267,267,269,272,269,275,270,276,271,276,271,277,272,278,273,279,273,279,274,280,274,280,275,281,275,281,275,258,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,276,273,278,276,280,278,283,281,286,285,290,288,294,290,297,294,298,296,301,298,302,301,302,258,260,260,266,263,270,267,274,271,277,275,279,277,282,279,284,283,288,287,292,289,296,292,297,295,300,297,302,299,302,302,303,
|
||||
lsc_rdsparam_b=256,256,263,257,264,258,269,261,274,264,277,264,278,267,279,268,280,267,282,269,287,272,290,274,291,276,292,278,292,280,293,280,261,256,263,257,267,259,272,263,276,264,278,265,278,268,280,267,281,268,285,270,288,273,291,275,292,277,292,280,293,280,294,282,256,256,261,256,262,258,268,262,272,264,276,265,278,267,279,267,280,267,283,268,284,271,284,273,287,275,291,277,294,280,297,282,260,256,261,257,265,260,270,263,274,264,277,266,277,267,280,267,280,268,283,269,284,272,285,274,289,276,292,279,297,280,301,284,256,256,259,260,260,263,264,264,268,265,269,265,270,265,270,265,270,265,270,265,271,266,271,267,271,267,272,268,272,268,273,268,258,258,259,262,262,264,266,264,269,265,270,265,270,265,270,265,270,266,271,266,271,266,271,267,271,268,272,268,273,268,274,269,256,256,258,262,259,265,262,269,265,273,268,276,271,276,272,278,272,277,273,277,274,280,274,285,276,288,278,291,280,290,283,290,257,260,258,263,260,267,263,272,267,275,270,276,272,277,271,277,271,278,274,279,274,281,275,287,277,291,279,290,281,290,285,290,
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1920x1080
|
||||
Virtual_F=1.000000
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
Virtual_F_Manual=0
|
||||
wdr_bghno=8
|
||||
wdr_bgvno=7
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=238
|
||||
wdr_bgvo=138
|
||||
wdr_bghskip=2
|
||||
wdr_bgvskip=4
|
||||
wdr_intensity_blend=0
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=16
|
||||
wdr_strength=0
|
||||
wdr_max_gain_ratio=48
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
Virtual_F_Manual=0
|
||||
|
||||
|
||||
[DRC_WDR]
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_PG_index = 0,769,9,10,1035,28,29,30,31,18,19,20,21,22,23,792
|
||||
wdr_PG_value = 256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,4210,8362,16609,32993,65534
|
||||
wdr_F_index = 0,1025,785,537,285,28,29,30,31,28,29,30,31,0,0,0
|
||||
wdr_F_value = 2233,2273,2310,2346,2380,2412,2443,2472,2500,2527,2553,2579,2603,2626,2649,2671,2692,2770,2841,2905,2963,3017,3067,3113,3157,3307,3431,3535,3625,3900,4096,65535
|
||||
wdr_A_index = 768,520,524,272,274,20,21,22,23,24,25,26,27,28,29,30
|
||||
wdr_A_value = 3752,3142,2541,2042,1652,1352,1122,944,693,530,418,339,281,237,202,175,136,108,89,74,54,41,33,27,22,19,16,14,12,11,10,127
|
||||
wdr_qcoef1 = 2364
|
||||
wdr_qcoef2 = 1831
|
||||
wdr_qcoef3 = 1548
|
||||
wdr_intensity_blend = 5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth = 255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength = 128
|
||||
|
||||
[GM]
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
value =1,4,6,8,11,14,17,20,35,52,68,82,109,128,145,161,176,190,202,213,223,232,236,240,242,244,246,248,250,251,253,255
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=8
|
||||
VirtualControls=0,0,277,24,516,51,792,85,1136,118,2139,181,3351,234,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 239
|
||||
ce_th = 3
|
||||
ce_strength = 20
|
||||
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,151,29,-9,-255,264,216,-198,-17
|
||||
cv_1=77,151,29,-15,-248,263,219,-201,-18
|
||||
cv_2=77,151,29,28,-378,350,244,-146,-97
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode=0
|
||||
ia_colorize_u=12
|
||||
ia_colorize_v=6
|
||||
ia_offset_u=0
|
||||
ia_offset_v=0
|
||||
ia_hue=4,0,0,5,4,1,5,0
|
||||
ia_saturation=131,128,141,118,115,115,120,137
|
||||
ia_poster_th=160,208,104,180
|
||||
ia_poster_y=90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 11
|
||||
const_k = 25205901
|
||||
target_y = 130
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=5
|
||||
auto_contrast=1
|
||||
#max ISP gain (125 ~ 65536)
|
||||
max_isp_gain=256
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
awb_th0=5
|
||||
awb_th1=245
|
||||
awb_th2=60
|
||||
awb_th3=287
|
||||
awb_th4=-56
|
||||
awb_th5=136
|
||||
awb_th6=37
|
||||
awb_th7=172
|
||||
awb_th8=24
|
||||
awb_th9=115
|
||||
awb_th10=29
|
||||
awb_th11=54
|
||||
awb_th12=255
|
||||
rb_ratio=111,94,389
|
||||
target_rg_ratio=1000,1000,1000
|
||||
target_bg_ratio=1024,1024,1024
|
||||
VirtualXPoints=57,46,41,35,33,69,53,47,38,34,113,88,79,66,58,127,108,91,76,65
|
||||
VirtualYPoints=86,108,123,141,150,62,73,82,92,98,48,61,71,83,91,46,49,61,73,82
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=168,140,276,291,231,369
|
||||
B_gain=301,361,183,174,219,137
|
||||
VirtualMode=0
|
||||
VirtualPoints=63,87,51,99,38,120,35,130,30,153,141,43,117,50,88,64,77,71,62,88,126,45,105,53,79,70,70,77,57,95,16,146,22,134,27,120,34,107,42,85,51,62,55,59,65,56,73,54,79,53,83,51,85,50,0,0,0,0,0,0,
|
||||
VirtualThs=15,245,60,287,-56,136,37,172,24,115,29,54,255,15,245,53,249,-42,147,41,168,3,90,5,46,255,
|
||||
VirutalGainRatio=168,140,276,291,231,369,301,361,183,174,219,137,113,93,404,183,175,208,257,257,304,448,469,394,318,318,269,110,263,568,
|
||||
OffsetThs=0,0,11,47,-19,-4,-2,12,22,26,12,8,0,
|
||||
outdoor_ev_th=32768
|
||||
|
||||
[AF]
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0=22,22,21,16,12,9,7,7,18,17,16,12,9,7,6,6,13,12,11,9,7,5,4,4,9,9,9,8,4,3,3,3
|
||||
Cb_NoiseLevel_0=18,14,10,7
|
||||
Cr_NoiseLevel_0=18,14,10,7
|
||||
Y_NoiseLevel_1=48,51,49,37,30,26,21,17,38,40,32,30,24,21,16,13,28,30,19,22,18,15,12,10,19,20,14,15,12,10,8,6
|
||||
Cb_NoiseLevel_1=30,24,18,12
|
||||
Cr_NoiseLevel_1=30,24,18,12
|
||||
Y_NoiseLevel_2=83,80,83,71,65,62,57,54,51,51,54,43,52,49,45,43,28,28,32,24,39,37,34,32,17,20,20,16,26,24,22,21
|
||||
Cb_NoiseLevel_2=62,49,37,24
|
||||
Cr_NoiseLevel_2=62,49,37,24
|
||||
Y_NoiseLevel_3=150,150,149,134,123,114,108,106,120,120,93,83,78,91,86,85,90,90,51,45,50,68,64,64,60,60,34,32,37,45,42,42
|
||||
Cb_NoiseLevel_3=140,112,84,56
|
||||
Cr_NoiseLevel_3=140,112,84,56
|
||||
Y_NoiseLevel_4=203,202,207,181,166,158,153,155,130,126,128,113,105,126,122,123,73,70,68,58,65,94,91,92,46,31,40,36,48,63,61,61
|
||||
Cb_NoiseLevel_4=180,144,108,72
|
||||
Cr_NoiseLevel_4=180,144,108,72
|
||||
Y_NoiseLevel_5=250,256,241,208,199,197,197,197,176,204,169,166,159,150,151,151,111,153,104,124,119,103,104,104,64,102,61,83,79,77,78,78
|
||||
Cb_NoiseLevel_5=297,283,217,134
|
||||
Cr_NoiseLevel_5=297,237,178,118
|
||||
Y_NoiseLevel_6=404,396,337,278,255,238,234,234,251,242,204,168,148,146,149,149,135,129,102,81,77,85,90,90,68,63,47,39,38,53,61,61
|
||||
Cb_NoiseLevel_6=383,306,229,153
|
||||
Cr_NoiseLevel_6=383,306,229,153
|
||||
Y_NoiseLevel_7=343,410,299,235,208,176,155,133,274,270,239,188,166,141,124,106,205,168,179,140,124,105,93,79,136,108,119,94,83,70,61,52
|
||||
Cb_NoiseLevel_7=383,306,229,153
|
||||
Cr_NoiseLevel_7=383,306,229,153
|
||||
Y_NoiseLevel_8=549,629,476,399,309,250,215,184,439,385,380,318,247,199,171,146,327,204,284,238,184,150,128,109,218,99,190,159,123,99,85,72
|
||||
Cb_NoiseLevel_8=383,306,229,153
|
||||
Cr_NoiseLevel_8=383,306,229,153
|
||||
|
||||
|
||||
[SHARPEN]
|
||||
BrightHaloClip=128
|
||||
DarkHaloClip=128
|
||||
PeakingGain=16
|
||||
|
||||
[CC]
|
||||
cc_0=256,0,0,0,256,0,0,0,256
|
||||
cc_1=256,0,0,0,256,0,0,0,256
|
||||
cc_2=256,0,0,0,256,0,0,0,256
|
||||
enable=0
|
|
@ -0,0 +1,273 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = MT9M034/AR0130
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =128
|
||||
adjust_blc =0
|
||||
adjust_nr =1
|
||||
adjust_gamma =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th =96,128,256,512,1024,2048,4096,8192,11424
|
||||
blc_r =-204,-204,-204,-204,-204,-204,-204,-204,-204
|
||||
blc_g =-204,-204,-204,-204,-204,-204,-204,-204,-204
|
||||
blc_b =-204,-204,-204,-204,-204,-204,-204,-204,-204
|
||||
gamma_idx =4,4,4,4,4,4,4,4,4
|
||||
nl_dpc =0,230,230,230,230,230,250,255,255
|
||||
nl_raw=6,10,19,21,29,36,40,60,73
|
||||
nl_ctk=6,10,19,21,29,36,78,111,133
|
||||
nl_ci=0,3,28,41,57,60,60,100,150
|
||||
ce_lvl =20,20,10,10,20,10,10,5,0
|
||||
sp_lvl =128,128,120,100,100,100,80,70,70
|
||||
saturation_lvl =128,128,118,100,90,80,70,70,60
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,45,45,84,84
|
||||
tmnr_lvl=16,16,16,20,20,48,64,64,64
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2048, 3040, 4000
|
||||
wdr_kn_y = 64, 128, 4096, 65535
|
||||
wdr_sl = 1, 1, 64, 1024
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-204, -204, -204, -204
|
||||
|
||||
[LS]
|
||||
lsc_segrds =14
|
||||
lsc_ctr_r =482, 589
|
||||
lsc_ctr_gr =482, 589
|
||||
lsc_ctr_gb =482, 589
|
||||
lsc_ctr_b =482, 589
|
||||
lsc_mxtn_r=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gr=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gb=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_b=175,372,418,156,115,566,504,129
|
||||
lsc_rdsparam_r=256,256,268,259,274,263,281,267,288,271,293,276,298,279,303,284,307,288,311,293,316,296,322,299,323,303,324,307,324,308,325,309,264,258,271,261,277,265,285,269,289,273,296,278,300,282,306,286,309,291,313,294,320,298,322,301,324,305,324,308,325,308,326,310,256,256,267,260,272,263,278,268,284,272,289,275,294,279,299,285,302,288,306,291,310,293,315,297,319,299,323,302,326,305,329,307,263,258,270,261,275,265,282,271,286,274,292,277,297,282,301,287,304,290,309,292,313,296,317,298,321,301,325,303,327,306,330,310,256,256,262,264,266,271,272,274,278,275,281,276,282,276,283,278,283,278,284,279,285,280,286,281,286,281,287,282,288,283,288,283,259,261,265,268,269,273,276,274,280,275,281,276,282,277,283,278,284,279,285,279,285,280,286,281,287,282,287,282,288,283,290,284,256,256,259,268,263,274,267,281,272,286,277,292,279,295,283,300,287,304,292,307,294,311,297,317,300,322,303,326,306,327,309,327,258,263,261,271,265,277,270,283,274,289,279,294,280,298,284,302,290,306,293,308,295,315,299,319,302,325,304,327,307,327,312,328,
|
||||
lsc_rdsparam_gr=256,256,263,259,267,262,271,265,275,268,279,272,281,276,284,280,286,283,291,286,294,289,295,293,296,295,297,297,297,299,297,299,261,258,265,260,269,263,273,266,277,270,280,274,283,278,285,281,289,285,293,288,295,291,296,294,296,296,297,298,297,299,298,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,281,280,285,284,289,285,293,288,296,290,298,292,301,295,302,297,303,300,260,259,263,261,267,265,272,267,276,271,279,275,280,278,283,282,287,285,291,287,294,289,298,291,300,293,302,296,302,298,304,301,256,256,260,263,263,267,268,269,272,269,275,270,276,271,276,271,277,272,278,273,278,273,279,274,280,274,280,275,281,275,281,275,259,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,275,273,278,276,280,278,283,281,286,285,290,287,294,291,296,294,298,296,302,298,302,301,302,258,260,260,266,263,270,267,274,271,276,275,279,277,282,279,284,283,288,286,292,289,296,292,297,295,300,297,302,301,302,302,303,
|
||||
lsc_rdsparam_gb=256,256,263,259,267,261,272,265,275,268,279,272,281,276,284,280,287,283,292,287,294,289,297,293,298,295,298,297,298,299,299,299,260,258,265,260,269,263,274,266,277,270,280,274,283,278,285,281,289,286,293,288,296,291,297,294,298,296,298,298,298,299,300,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,282,280,285,284,289,286,293,288,298,290,300,292,301,295,302,297,304,300,259,259,263,261,267,265,272,267,276,271,279,275,281,278,283,282,287,285,291,287,295,289,298,291,300,293,302,296,303,298,306,302,256,256,260,263,263,267,267,269,272,269,275,270,276,271,276,271,277,272,278,273,279,273,279,274,280,274,280,275,281,275,281,275,258,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,276,273,278,276,280,278,283,281,286,285,290,288,294,290,297,294,298,296,301,298,302,301,302,258,260,260,266,263,270,267,274,271,277,275,279,277,282,279,284,283,288,287,292,289,296,292,297,295,300,297,302,299,302,302,303,
|
||||
lsc_rdsparam_b=256,256,263,257,264,258,269,261,274,264,277,264,278,267,279,268,280,267,282,269,287,272,290,274,291,276,292,278,292,280,293,280,261,256,263,257,267,259,272,263,276,264,278,265,278,268,280,267,281,268,285,270,288,273,291,275,292,277,292,280,293,280,294,282,256,256,261,256,262,258,268,262,272,264,276,265,278,267,279,267,280,267,283,268,284,271,284,273,287,275,291,277,294,280,297,282,260,256,261,257,265,260,270,263,274,264,277,266,277,267,280,267,280,268,283,269,284,272,285,274,289,276,292,279,297,280,301,284,256,256,259,260,260,263,264,264,268,265,269,265,270,265,270,265,270,265,270,265,271,266,271,267,271,267,272,268,272,268,273,268,258,258,259,262,262,264,266,264,269,265,270,265,270,265,270,265,270,266,271,266,271,266,271,267,271,268,272,268,273,268,274,269,256,256,258,262,259,265,262,269,265,273,268,276,271,276,272,278,272,277,273,277,274,280,274,285,276,288,278,291,280,290,283,290,257,260,258,263,260,267,263,272,267,275,270,276,272,277,271,277,271,278,274,279,274,281,275,287,277,291,279,290,281,290,285,290,
|
||||
lsc_adjust=0
|
||||
lsc_vepm=1024,0,1024,0,0
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength=0
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_F_Manual=0
|
||||
|
||||
[DRC_WDR]
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_PG_index = 0,769,9,10,1035,28,29,30,31,18,19,20,21,22,23,792
|
||||
wdr_PG_value = 256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,4210,8362,16609,32993,65534
|
||||
wdr_F_index = 0,1025,785,537,285,28,29,30,31,28,29,30,31,0,0,0
|
||||
wdr_F_value = 2233,2273,2310,2346,2380,2412,2443,2472,2500,2527,2553,2579,2603,2626,2649,2671,2692,2770,2841,2905,2963,3017,3067,3113,3157,3307,3431,3535,3625,3900,4096,65535
|
||||
wdr_A_index = 768,520,524,272,274,20,21,22,23,24,25,26,27,28,29,30
|
||||
wdr_A_value = 3752,3142,2541,2042,1652,1352,1122,944,693,530,418,339,281,237,202,175,136,108,89,74,54,41,33,27,22,19,16,14,12,11,10,127
|
||||
wdr_qcoef1 = 2364
|
||||
wdr_qcoef2 = 1831
|
||||
wdr_qcoef3 = 1548
|
||||
wdr_intensity_blend = 5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth = 255
|
||||
wdr_max_gain_ratio = 64
|
||||
wdr_strength = 128
|
||||
|
||||
[GM]
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
value =1,4,6,8,11,14,17,20,35,52,68,82,109,128,145,161,176,190,202,213,223,232,236,240,242,244,246,248,250,251,253,255
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=8
|
||||
VirtualControls=0,0,277,24,516,51,792,85,1136,118,2139,181,3351,234,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 128
|
||||
ce_th = 3
|
||||
ce_strength = 10
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,151,29,-25,-187,209,239,-179,-61
|
||||
cv_1=77,151,29,-24,-194,214,266,-191,-75
|
||||
cv_2=77,151,29,-18,-250,264,215,-99,-116
|
||||
[IA]
|
||||
ia_contrast_mode =0
|
||||
ia_colorize_u =12
|
||||
ia_colorize_v =6
|
||||
ia_offset_u =0
|
||||
ia_offset_v =0
|
||||
ia_hue =0,0,0,0,0,0,0,0
|
||||
ia_saturation =128,128,128,128,128,128,128,128
|
||||
ia_poster_th =160,208,104,180
|
||||
ia_poster_y =90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 10
|
||||
const_k = 25205901
|
||||
target_y = 130
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=5
|
||||
auto_contrast=1
|
||||
#max ISP gain (125 ~ 65536)
|
||||
max_isp_gain=128
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
VirtualMode=0
|
||||
VirtualPoints=69,98,55,112,47,136,41,153,35,167,80,67,63,75,54,88,42,95,33,101,159,62,123,71,99,83,86,91,65,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=10,245,83,319,-62,146,56,186,26,120,20,84,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=149,121,189,198,208,238,271,333,213,204,194,169,106,210,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
OffsetThs=0,0,-37,99,17,7,5,8,0,-14,2,7,0,
|
||||
awb_th0=5
|
||||
awb_th1=245
|
||||
awb_th2=83
|
||||
awb_th3=319
|
||||
awb_th4=-62
|
||||
awb_th5=146
|
||||
awb_th6=64
|
||||
awb_th7=186
|
||||
awb_th8=26
|
||||
awb_th9=128
|
||||
awb_th10=33
|
||||
awb_th11=84
|
||||
awb_th12=255
|
||||
rb_ratio=106,210,352
|
||||
target_rg_ratio=990,990,990
|
||||
target_bg_ratio=1024,1024,1024
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=149,121,189,198,208,238
|
||||
B_gain=271,333,213,204,194,169
|
||||
outdoor_ev_th=46000
|
||||
|
||||
[AF]
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
Cb_NoiseLevel_0=1,1,1,1
|
||||
Cr_NoiseLevel_0=1,1,1,1
|
||||
Y_NoiseLevel_1=4,8,6,4,1,1,1,1,3,6,4,3,1,1,1,1,2,4,3,2,1,1,1,1,1,2,1,1,1,1,1,1
|
||||
Cb_NoiseLevel_1=1,1,1,1
|
||||
Cr_NoiseLevel_1=1,1,1,1
|
||||
Y_NoiseLevel_2=19,24,24,19,14,14,14,9,14,18,18,14,10,10,10,6,9,12,12,9,7,7,7,4,4,6,6,4,3,3,3,2
|
||||
Cb_NoiseLevel_2=19,14,9,4
|
||||
Cr_NoiseLevel_2=19,14,9,4
|
||||
Y_NoiseLevel_3=51,58,66,55,45,38,36,36,38,43,49,41,33,28,27,27,25,29,33,27,22,19,18,18,12,14,16,13,11,9,9,9
|
||||
Cb_NoiseLevel_3=20,15,10,5
|
||||
Cr_NoiseLevel_3=20,15,10,5
|
||||
Y_NoiseLevel_4=154,260,172,111,68,49,41,33,123,208,137,88,54,36,30,24,92,155,103,66,40,24,20,16,61,104,68,44,27,12,10,8
|
||||
Cb_NoiseLevel_4=21,15,10,5
|
||||
Cr_NoiseLevel_4=24,18,12,6
|
||||
Y_NoiseLevel_5=260,364,291,222,172,138,125,120,208,291,232,177,137,103,93,90,155,218,174,133,103,69,62,60,104,145,116,88,68,34,31,30
|
||||
Cb_NoiseLevel_5=71,53,35,17
|
||||
Cr_NoiseLevel_5=77,57,38,19
|
||||
Y_NoiseLevel_6=265,356,318,268,225,171,147,134,212,284,254,214,180,128,110,100,158,213,190,160,134,85,73,67,106,142,127,107,90,42,36,33
|
||||
Cb_NoiseLevel_6=300,240,179,120
|
||||
Cr_NoiseLevel_6=300,240,179,120
|
||||
Y_NoiseLevel_7=470,520,470,422,381,346,329,313,387,427,387,349,316,274,261,249,305,335,305,276,251,202,193,185,222,242,222,203,187,130,125,121
|
||||
Cb_NoiseLevel_7=300,225,150,75
|
||||
Cr_NoiseLevel_7=300,225,150,75
|
||||
Y_NoiseLevel_8=410,466,450,384,355,299,263,263,307,349,337,288,266,224,197,197,205,233,225,192,177,149,131,131,102,116,112,96,88,74,65,65
|
||||
Cb_NoiseLevel_8=388,291,194,97
|
||||
Cr_NoiseLevel_8=388,291,194,97
|
||||
|
||||
[SHARPEN]
|
||||
BrightHaloClip=128
|
||||
DarkHaloClip=128
|
||||
PeakingGain=16
|
|
@ -0,0 +1,292 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = PS1211
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =120
|
||||
adjust_blc =1
|
||||
adjust_nr =1
|
||||
adjust_gamma =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th =96,128,256,512,1024,2048,4096,8192,8192
|
||||
gamma_idx =4,4,4,4,4,4,4,4,4
|
||||
nl_dpc =0,0,20,40,78,120,160,180,220
|
||||
nl_raw =5,10,12,14,24,31,46,156,186
|
||||
nl_ctk =5,10,12,14,24,21,26,34,34
|
||||
nl_ci =7,14,34,22,38,88,101,180,202
|
||||
sp_lvl =100,100,100,90,90,90,90,90,80
|
||||
saturation_lvl =120,120,115,100,80,60,50,35,30
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,0,0,0,0
|
||||
tmnr_lvl=8,16,16,20,32,42,48,56,64
|
||||
blc_r=-30,-30,-30,-30,-30,-30,-30,-30,-30
|
||||
blc_g=-30,-30,-30,-30,-30,-30,-30,-30,-30
|
||||
blc_b=-30,-30,-30,-30,-30,-30,-30,-34,-30
|
||||
ce_lvl=25,24,23,22,15,10,5,5,0
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2048, 3040, 4000
|
||||
wdr_kn_y = 64, 128, 4096, 65535
|
||||
wdr_sl = 1, 1, 64, 1024
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-30, -30, -30, -30
|
||||
|
||||
[LS]
|
||||
enable=1
|
||||
lsc_ctr_r=506, 588
|
||||
lsc_ctr_gr=531, 523
|
||||
lsc_ctr_gb=531, 524
|
||||
lsc_ctr_b=484, 511
|
||||
lsc_segrds=15
|
||||
lsc_mxtn_r=167,391,400,163,121,540,528,124
|
||||
lsc_mxtn_gr=141,461,428,152,146,448,482,135
|
||||
lsc_mxtn_gb=142,460,428,153,145,449,483,135
|
||||
lsc_mxtn_b=151,431,480,136,136,478,429,152
|
||||
lsc_rdsparam_r=256,262,269,275,282,289,295,301,307,313,319,326,334,340,348,355,364,373,385,397,409,421,435,450,467,491,512,533,543,550,559,562,256,261,266,272,279,285,289,295,301,307,312,317,323,328,335,341,349,355,362,372,380,389,401,412,424,437,453,467,486,505,528,537,256,260,262,266,272,277,284,290,296,300,303,305,306,307,308,309,311,312,313,315,316,318,319,321,324,326,329,332,335,338,342,344,256,259,262,267,272,278,283,288,293,298,302,307,311,315,318,323,328,334,340,345,350,356,363,372,382,392,405,418,429,440,449,453,256,259,264,269,275,280,287,294,299,304,307,313,317,323,328,334,342,348,355,362,369,378,387,399,412,427,442,458,471,477,484,485,256,260,267,274,282,290,297,302,306,311,316,322,328,334,340,346,352,359,368,376,384,396,406,418,432,449,468,488,508,529,554,561,256,265,274,284,293,301,306,309,311,312,313,315,316,317,318,320,322,324,326,328,330,333,336,340,344,348,353,357,362,367,374,376,256,263,271,279,289,297,303,308,315,321,328,336,342,348,355,364,375,384,395,409,421,437,454,476,497,523,547,570,596,616,647,662,
|
||||
lsc_rdsparam_gr=256,260,265,271,276,283,288,294,301,307,312,317,322,328,334,341,348,354,359,367,375,385,391,400,411,424,436,447,460,469,486,490,256,260,264,269,274,279,285,291,297,304,309,314,319,324,329,334,340,347,352,359,367,374,381,389,399,411,422,433,444,455,467,475,257,261,263,267,273,279,284,291,300,309,313,314,316,317,318,319,321,322,323,325,326,327,329,331,333,335,337,340,342,345,349,351,257,261,265,270,275,280,285,291,297,304,310,314,317,322,327,334,340,346,352,359,365,372,380,389,397,407,415,425,435,449,465,475,257,261,266,271,277,282,288,294,301,307,312,316,319,324,330,338,345,351,358,366,373,381,389,394,401,405,410,413,415,418,422,424,257,261,268,274,281,287,294,300,306,312,316,321,327,333,339,345,352,357,363,372,380,388,399,408,417,424,435,447,460,470,484,494,257,263,270,277,284,291,298,304,310,312,313,314,316,317,318,320,321,322,323,325,327,328,331,333,335,337,339,342,345,348,352,354,256,261,266,273,280,287,293,300,307,313,317,322,328,335,341,347,352,358,365,371,379,388,398,410,420,430,443,456,474,489,507,514,
|
||||
lsc_rdsparam_gb=257,261,266,271,277,283,288,295,301,307,312,317,322,328,334,341,348,355,360,368,376,385,392,401,411,423,436,447,459,469,485,490,257,261,265,270,275,280,285,291,296,304,308,314,319,324,328,334,340,347,353,360,367,374,381,389,398,411,422,433,444,455,467,474,257,261,264,269,275,280,285,291,299,308,310,312,314,315,316,317,318,320,321,322,324,325,327,328,330,333,335,337,339,342,346,348,257,261,265,270,275,280,285,291,297,304,310,314,318,323,328,335,340,346,352,358,364,371,380,388,397,406,415,425,435,448,464,470,257,261,266,271,277,282,288,294,301,307,312,316,320,324,330,338,344,351,358,363,371,378,386,391,397,402,409,412,415,417,422,423,257,261,268,274,281,287,294,300,306,312,316,321,327,333,339,344,349,354,362,368,376,385,395,405,413,423,434,444,454,465,481,488,257,263,270,277,284,291,298,304,307,309,311,312,313,315,316,317,318,319,321,322,324,326,328,330,332,334,336,339,342,345,349,351,256,261,266,273,280,287,293,300,306,312,316,322,328,335,340,346,352,358,364,371,379,388,398,409,419,428,441,455,473,487,502,512,
|
||||
lsc_rdsparam_b=257,264,270,276,283,288,293,301,306,312,318,322,328,334,342,348,355,362,371,384,395,405,416,425,434,439,445,450,455,459,466,468,257,263,269,274,280,286,292,297,303,307,313,317,323,328,334,340,346,352,358,367,376,385,396,407,422,436,450,468,488,508,532,542,256,258,261,265,270,276,280,285,291,293,295,296,297,298,299,300,300,301,302,303,305,306,308,310,312,314,316,319,321,324,328,330,256,259,261,264,268,271,275,278,281,285,287,292,297,299,304,307,310,313,314,318,322,328,335,339,345,352,359,366,371,378,386,393,256,259,262,265,269,273,276,280,284,287,290,294,299,301,305,310,314,317,320,325,330,336,339,346,352,358,362,368,377,386,396,401,257,260,265,270,275,279,284,289,293,297,301,304,310,312,317,320,324,327,332,335,339,343,350,356,361,368,374,382,391,399,409,413,256,263,271,278,283,290,297,306,314,316,318,320,321,322,323,324,325,326,327,328,330,332,334,336,338,341,345,348,351,354,358,360,256,266,274,281,286,292,299,307,313,317,321,326,331,337,344,350,356,361,370,380,392,403,415,427,441,462,489,505,523,541,565,577,
|
||||
lsc_adjust=0
|
||||
lsc_vepm=1024,0,1024,0,0
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1920x1080
|
||||
Virtual_F=1.000000
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
wdr_bghno=8
|
||||
wdr_bgvno=7
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=238
|
||||
wdr_bgvo=138
|
||||
wdr_bghskip=2
|
||||
wdr_bgvskip=4
|
||||
wdr_intensity_blend=0
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=16
|
||||
wdr_strength=0
|
||||
wdr_max_gain_ratio=48
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
Virtual_F_Manual=0
|
||||
|
||||
[DRC_WDR]
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_PG_index = 0,769,9,10,1035,28,29,30,31,18,19,20,21,22,23,792
|
||||
wdr_PG_value = 256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,4210,8362,16609,32993,65534
|
||||
wdr_F_index = 0,1025,785,537,285,28,29,30,31,28,29,30,31,0,0,0
|
||||
wdr_F_value = 2233,2273,2310,2346,2380,2412,2443,2472,2500,2527,2553,2579,2603,2626,2649,2671,2692,2770,2841,2905,2963,3017,3067,3113,3157,3307,3431,3535,3625,3900,4096,65535
|
||||
wdr_A_index = 768,520,524,272,274,20,21,22,23,24,25,26,27,28,29,30
|
||||
wdr_A_value = 3752,3142,2541,2042,1652,1352,1122,944,693,530,418,339,281,237,202,175,136,108,89,74,54,41,33,27,22,19,16,14,12,11,10,127
|
||||
wdr_qcoef1 = 2364
|
||||
wdr_qcoef2 = 1831
|
||||
wdr_qcoef3 = 1548
|
||||
wdr_intensity_blend = 5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth = 255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength = 128
|
||||
|
||||
[GM]
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
value =1,4,6,8,11,14,17,20,35,52,68,82,109,128,145,161,176,190,202,213,223,232,236,240,242,244,246,248,250,251,253,255
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=8
|
||||
VirtualControls=0,0,277,24,516,51,792,85,1136,118,2139,181,3351,234,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 239
|
||||
ce_th = 3
|
||||
ce_strength = 20
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=76,150,29,-34,-367,401,306,-264,-41
|
||||
cv_1=76,150,29,-52,-371,423,376,-291,-85
|
||||
cv_2=76,150,29,-190,-490,680,483,-188,-295
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode=0
|
||||
ia_colorize_u=12
|
||||
ia_colorize_v=6
|
||||
ia_offset_u=0
|
||||
ia_offset_v=0
|
||||
ia_hue=8,252,0,252,253,254,0,0
|
||||
ia_saturation=132,140,141,115,115,137,120,133
|
||||
ia_poster_th=160,208,104,180
|
||||
ia_poster_y=90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 10
|
||||
const_k = 25205901
|
||||
target_y = 140
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=1
|
||||
auto_contrast=1
|
||||
#max ISP gain (125 ~ 65536)
|
||||
max_isp_gain=512
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
awb_th0=5
|
||||
awb_th1=245
|
||||
awb_th2=120
|
||||
awb_th3=355
|
||||
awb_th4=-82
|
||||
awb_th5=174
|
||||
awb_th6=74
|
||||
awb_th7=218
|
||||
awb_th8=31
|
||||
awb_th9=138
|
||||
awb_th10=28
|
||||
awb_th11=98
|
||||
awb_th12=255
|
||||
rb_ratio=108,151,334
|
||||
target_rg_ratio=1024,1024,1024
|
||||
target_bg_ratio=1024,1024,1024
|
||||
VirtualXPoints=66,56,51,45,41,82,66,56,48,40,0,0,0,0,0,127,108,91,76,65
|
||||
VirtualYPoints=74,87,106,123,136,54,62,71,79,88,0,0,0,0,0,46,49,61,73,82
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=151,116,197,211,224,271
|
||||
B_gain=276,357,211,197,185,154
|
||||
VirtualMode=0
|
||||
VirtualPoints=76,99,64,118,53,149,49,173,41,198,89,64,69,77,58,95,46,111,37,120,162,41,128,51,102,74,85,98,69,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=15,245,65,355,-82,174,35,218,31,138,28,91,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=151,116,197,211,224,271,276,357,211,197,185,154,93,210,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
OffsetThs=5,0,-74,80,10,12,-23,2,-8,-27,-6,-28,0,
|
||||
outdoor_ev_th=32768
|
||||
#grass region
|
||||
awb_roi1_enable=0
|
||||
awb_roi1_mode=1
|
||||
awb_roi1_th0=5
|
||||
awb_roi1_th1=120
|
||||
awb_roi1_th2=86
|
||||
awb_roi1_th3=147
|
||||
awb_roi1_th4=-17
|
||||
awb_roi1_th5=44
|
||||
awb_roi1_th6=44
|
||||
awb_roi1_th7=91
|
||||
awb_roi1_th8=33
|
||||
awb_roi1_th9=73
|
||||
awb_roi1_th10=12
|
||||
awb_roi1_th11=40
|
||||
|
||||
[AF]
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0 =39,46,39,28,24,21,21,19,28,34,28,21,18,15,15,15,18,23,18,14,12,9,9,9,7,11,7,6,6,4,4,4
|
||||
Cb_NoiseLevel_0=90,67,45,22
|
||||
Cr_NoiseLevel_0=90,67,45,22
|
||||
Y_NoiseLevel_1=53,78,61,51,36,27,27,27,38,58,44,38,27,20,20,20,24,39,29,25,18,12,12,12,9,19,14,12,9,5,5,5
|
||||
Cb_NoiseLevel_1=90,67,45,22
|
||||
Cr_NoiseLevel_1=90,67,45,22
|
||||
Y_NoiseLevel_2=49,74,62,51,29,16,16,16,37,55,46,38,22,11,11,11,24,37,31,25,14,7,7,7,11,18,14,12,7,3,3,3
|
||||
Cb_NoiseLevel_2=90,67,45,22
|
||||
Cr_NoiseLevel_2=90,67,45,22
|
||||
Y_NoiseLevel_3=58,87,79,52,37,32,26,26,43,65,59,39,27,24,19,19,29,43,39,26,18,16,13,13,14,21,19,13,9,8,6,6
|
||||
Cb_NoiseLevel_3=90,67,45,22
|
||||
Cr_NoiseLevel_3=90,67,45,22
|
||||
Y_NoiseLevel_4=274,228,235,218,199,199,199,199,188,159,165,160,157,157,157,157,119,106,110,113,129,129,129,129,75,67,71,82,112,112,112,112
|
||||
Cb_NoiseLevel_4=307,292,231,146
|
||||
Cr_NoiseLevel_4=259,248,194,125
|
||||
Y_NoiseLevel_5=393,379,336,285,245,251,236,236,276,272,245,206,184,195,195,195,188,184,164,135,126,149,162,162,114,117,108,83,87,123,138,138
|
||||
Cb_NoiseLevel_5=332,316,248,156
|
||||
Cr_NoiseLevel_5=277,265,210,135
|
||||
Y_NoiseLevel_6=576,728,628,604,604,604,604,604,428,528,451,432,432,432,432,432,295,358,296,280,280,280,280,280,178,223,187,177,177,177,177,177
|
||||
Cb_NoiseLevel_6=550,520,395,241
|
||||
Cr_NoiseLevel_6=443,421,325,203
|
||||
Y_NoiseLevel_7=536,740,726,600,556,556,556,556,448,602,596,492,461,461,461,461,329,428,432,361,348,348,348,348,193,256,268,216,229,229,229,229
|
||||
Cb_NoiseLevel_7=288,274,216,135
|
||||
Cr_NoiseLevel_7=238,228,179,114
|
||||
Y_NoiseLevel_8=536,740,726,600,556,556,556,556,448,602,596,492,461,461,461,461,329,428,432,361,348,348,348,348,193,256,268,216,229,229,229,229
|
||||
Cb_NoiseLevel_8=288,274,216,135
|
||||
Cr_NoiseLevel_8=238,228,179,114
|
||||
|
||||
[SHARPEN]
|
||||
BrightHaloClip=128
|
||||
DarkHaloClip=128
|
||||
PeakingGain=16
|
|
@ -0,0 +1,279 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = PS5230
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =128
|
||||
adjust_blc =0
|
||||
adjust_nr =1
|
||||
adjust_gamma =0
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th =96,128,256,512,1024,2048,2048,2048,2048
|
||||
gamma_idx =4,4,4,4,4,4,4,4,4
|
||||
nl_dpc =0,0,0,20,50,160,200,220,220
|
||||
nl_raw =0,6,12,16,32,55,55,55,55
|
||||
nl_ctk =0,6,12,16,32,60,60,60,60
|
||||
nl_ci =2,8,18,20,39,70,70,70,70
|
||||
ce_lvl =40,30,15,15,10,0,0,0,0
|
||||
sp_lvl =110,110,110,110,100,90,90,90,90
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,0,0,0,0
|
||||
saturation_lvl =128,128,128,110,70,50,50,30,30
|
||||
tmnr_lvl =16,20,20,28,38,64,64,64,64
|
||||
blc_r=-80,-80,-80,-80,-80,-80,-80,-80,-80
|
||||
blc_g=-80,-80,-80,-80,-80,-80,-80,-80,-80
|
||||
blc_b=-80,-80,-80,-80,-80,-80,-80,-80,-80
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2560, 3456, 3968
|
||||
wdr_kn_y = 1024, 4096, 32768, 65536
|
||||
wdr_sl = 16, 32, 512, 1024
|
||||
bit_width=16
|
||||
enable=0
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =0, 0, 0, 0
|
||||
|
||||
[LS]
|
||||
enable =1
|
||||
lsc_ctr_r=515, 497
|
||||
lsc_ctr_gr=515, 497
|
||||
lsc_ctr_gb=515, 497
|
||||
lsc_ctr_b=515, 497
|
||||
lsc_segrds=16
|
||||
lsc_mxtn_r=139,471,466,140,149,439,444,147
|
||||
lsc_mxtn_gr=139,471,466,140,149,439,444,147
|
||||
lsc_mxtn_gb=139,471,466,140,149,439,444,147
|
||||
lsc_mxtn_b=139,471,466,140,149,439,444,147
|
||||
lsc_rdsparam_r=255,274,286,297,307,317,327,338,349,361,374,388,401,414,427,454,499,572,630,687,743,799,854,909,964,1019,1074,1129,1184,1236,1295,1322,256,274,286,298,308,318,328,339,351,363,376,390,404,419,435,471,535,647,726,804,878,951,1024,1096,1168,1240,1312,1384,1456,1525,1602,1638,254,273,285,296,305,314,324,334,345,356,368,380,394,408,424,450,490,557,604,648,691,733,774,816,857,899,940,981,1023,1062,1107,1127,253,270,281,292,301,311,320,329,339,349,360,371,384,398,413,427,442,461,474,485,496,507,518,529,539,550,561,572,582,593,605,610,253,269,280,290,299,308,317,326,335,345,355,366,378,391,404,417,430,448,466,484,503,521,540,558,577,595,614,632,651,668,688,697,253,268,279,289,299,308,317,326,335,343,353,363,374,385,397,410,425,446,472,499,528,557,586,615,644,673,702,731,760,787,817,832,253,270,281,291,300,311,320,330,339,349,360,371,383,395,407,420,437,461,489,518,548,579,610,641,672,703,734,765,796,825,857,872,254,272,284,295,305,314,323,334,344,355,367,380,393,405,417,433,455,484,516,550,584,618,652,687,721,755,789,823,858,890,926,943,
|
||||
lsc_rdsparam_gr=254,272,283,294,304,313,322,332,343,354,366,379,391,404,418,443,488,561,617,671,724,777,829,881,933,985,1037,1089,1141,1190,1245,1271,254,273,284,295,304,313,323,334,345,356,368,381,395,409,425,461,525,636,714,790,860,931,1001,1070,1140,1210,1280,1349,1419,1484,1558,1592,253,271,282,293,301,310,319,329,339,349,360,373,386,399,415,440,481,549,600,650,697,745,792,839,886,933,980,1027,1075,1119,1169,1192,252,268,278,289,298,307,316,325,334,343,353,365,377,390,405,419,434,456,479,502,526,550,574,598,622,646,670,694,718,739,765,777,252,267,277,287,296,304,313,321,329,338,348,359,371,383,396,408,422,441,463,486,511,536,560,585,610,635,659,685,709,732,759,771,252,266,276,286,295,303,312,321,329,337,346,357,367,378,389,401,416,436,461,486,514,542,570,597,625,653,680,708,736,762,791,805,253,268,279,289,298,307,316,325,334,343,353,364,375,387,398,410,427,449,475,503,531,559,588,616,645,673,702,730,759,786,816,830,253,270,281,291,301,310,319,328,338,348,360,372,384,395,408,422,443,473,503,534,565,597,628,660,692,724,755,787,818,848,882,898,
|
||||
lsc_rdsparam_gb=254,272,283,294,304,313,322,332,343,354,366,379,391,404,418,443,488,561,617,671,724,777,829,881,933,985,1037,1089,1141,1190,1245,1271,254,273,284,295,304,313,323,334,345,356,368,381,395,409,425,461,525,636,714,790,860,931,1001,1070,1140,1210,1280,1349,1419,1484,1558,1592,253,271,282,293,301,310,319,329,339,349,360,373,386,399,415,440,481,549,600,650,697,745,792,839,886,933,980,1027,1075,1119,1169,1192,252,268,278,289,298,307,316,325,334,343,353,365,377,390,405,419,434,456,479,502,526,550,574,598,622,646,670,694,718,739,765,777,252,267,277,287,296,304,313,321,329,338,348,359,371,383,396,408,422,441,463,486,511,536,560,585,610,635,659,685,709,732,759,771,252,266,276,286,295,303,312,321,329,337,346,357,367,378,389,401,416,436,461,486,514,542,570,597,625,653,680,708,736,762,791,805,253,268,279,289,298,307,316,325,334,343,353,364,375,387,398,410,427,449,475,503,531,559,588,616,645,673,702,730,759,786,816,830,253,270,281,291,301,310,319,328,338,348,360,372,384,395,408,422,443,473,503,534,565,597,628,660,692,724,755,787,818,848,882,898,
|
||||
lsc_rdsparam_b=254,273,285,295,305,314,323,333,344,355,367,380,393,406,419,444,491,568,625,681,735,789,842,895,948,1001,1054,1107,1160,1211,1267,1293,254,273,285,296,305,314,324,334,345,357,368,381,394,408,424,461,529,646,722,796,865,933,1000,1067,1133,1200,1266,1333,1400,1463,1534,1567,254,271,283,294,303,311,320,330,340,351,361,374,386,400,416,442,485,556,606,655,700,746,791,835,880,925,969,1014,1059,1101,1149,1171,254,269,280,290,299,308,317,326,335,345,355,367,379,393,408,422,438,461,483,507,530,553,576,599,622,645,667,690,713,735,759,771,253,268,279,289,298,307,315,324,332,341,352,363,375,387,401,413,428,449,472,496,522,547,573,598,623,649,674,700,725,748,776,788,253,268,278,288,297,306,315,324,332,341,350,360,372,383,395,408,423,446,474,503,533,564,595,625,656,686,717,748,778,807,840,854,253,270,280,290,300,309,318,327,335,345,355,366,378,389,401,414,432,457,487,518,551,584,617,650,683,715,748,781,814,845,880,896,253,272,283,293,303,312,320,330,339,349,361,373,385,397,409,424,446,478,512,547,584,621,657,694,731,767,804,840,877,912,950,968,
|
||||
lsc_adjust=0
|
||||
lsc_vepm=1024,0,1024,0,0
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1920x1080
|
||||
Virtual_F=1.000000
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
Virtual_F_Manual=0
|
||||
wdr_bghno=8
|
||||
wdr_bgvno=7
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=238
|
||||
wdr_bgvo=138
|
||||
wdr_bghskip=2
|
||||
wdr_bgvskip=4
|
||||
wdr_intensity_blend=0
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=16
|
||||
wdr_strength=0
|
||||
wdr_max_gain_ratio=48
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
Virtual_F_Manual=0
|
||||
|
||||
[DRC_WDR]
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_PG_index = 0,769,9,10,1035,28,29,30,31,18,19,20,21,22,23,792
|
||||
wdr_PG_value = 256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,4210,8362,16609,32993,65534
|
||||
wdr_F_index = 0,1025,785,537,285,28,29,30,31,28,29,30,31,0,0,0
|
||||
wdr_F_value = 2233,2273,2310,2346,2380,2412,2443,2472,2500,2527,2553,2579,2603,2626,2649,2671,2692,2770,2841,2905,2963,3017,3067,3113,3157,3307,3431,3535,3625,3900,4096,65535
|
||||
wdr_A_index = 768,520,524,272,274,20,21,22,23,24,25,26,27,28,29,30
|
||||
wdr_A_value = 3752,3142,2541,2042,1652,1352,1122,944,693,530,418,339,281,237,202,175,136,108,89,74,54,41,33,27,22,19,16,14,12,11,10,127
|
||||
wdr_qcoef1 = 2364
|
||||
wdr_qcoef2 = 1831
|
||||
wdr_qcoef3 = 1548
|
||||
wdr_intensity_blend = 5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth = 255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength = 128
|
||||
|
||||
[GM]
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
value =1,4,6,8,11,14,17,20,35,52,68,82,109,128,145,161,176,190,202,213,223,232,236,240,242,244,246,248,250,251,253,255
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=8
|
||||
VirtualControls=0,0,277,24,516,51,792,85,1136,118,2139,181,3351,234,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 239
|
||||
ce_th = 3
|
||||
ce_strength = 20
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,151,29,-44,-305,349,240,-240,0
|
||||
cv_1=77,151,29,-51,-399,450,316,-234,-82
|
||||
cv_2=77,151,29,-94,-595,689,354,-194,-160
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode=0
|
||||
ia_colorize_u=12
|
||||
ia_colorize_v=6
|
||||
ia_offset_u=0
|
||||
ia_offset_v=0
|
||||
ia_hue=4,0,0,2,5,1,3,0
|
||||
ia_saturation=124,118,131,107,105,114,111,131
|
||||
ia_poster_th=160,208,104,180
|
||||
ia_poster_y=90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 10
|
||||
const_k = 25205901
|
||||
target_y = 120
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=0
|
||||
auto_contrast=0
|
||||
#max ISP gain (125 ~ 65536)
|
||||
max_isp_gain=256
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
VirtualMode=0
|
||||
VirtualPoints=67,86,59,99,52,124,50,130,48,149,119,44,104,52,89,68,77,71,68,87,115,50,95,56,80,74,72,79,65,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=15,245,79,270,-50,114,38,168,42,102,35,62,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=167,143,240,250,210,296,260,302,181,173,207,146,118,98,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
awb_th0=5
|
||||
awb_th1=245
|
||||
awb_th2=77
|
||||
awb_th3=274
|
||||
awb_th4=-57
|
||||
awb_th5=120
|
||||
awb_th6=43
|
||||
awb_th7=183
|
||||
awb_th8=35
|
||||
awb_th9=111
|
||||
awb_th10=31
|
||||
awb_th11=114
|
||||
awb_th12=255
|
||||
rb_ratio=119,212,318
|
||||
target_rg_ratio=1024,1024,1024
|
||||
target_bg_ratio=1024,1024,1024
|
||||
VirtualXPoints=73,64,59,55,52,80,67,60,52,46,0,0,0,0,0,130,107,93,80,70
|
||||
VirtualYPoints=117,137,167,191,212,82,93,111,123,135,0,0,0,0,0,70,82,99,116,133
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=156,133,187,198,212,229
|
||||
B_gain=302,355,252,238,223,205
|
||||
outdoor_ev_th=62768
|
||||
[AF]
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0 =29,30,29,28,27,26,26,25,21,22,21,21,20,19,19,18,14,15,14,14,13,13,13,12,7,7,7,7,6,6,6,6
|
||||
Cb_NoiseLevel_0=1,1,1,1
|
||||
Cr_NoiseLevel_0=1,1,1,1
|
||||
Y_NoiseLevel_1 =45,58,56,40,20,20,20,19,33,43,42,30,15,15,15,14,22,29,28,20,10,10,10,9,11,14,14,10,5,5,5,4
|
||||
Cb_NoiseLevel_1=1,1,1,1
|
||||
Cr_NoiseLevel_1=1,1,1,1
|
||||
Y_NoiseLevel_2 =99,111,105,90,69,59,54,44,75,84,79,72,55,47,43,33,51,57,54,54,41,35,32,23,27,30,28,36,28,24,22,13
|
||||
Cb_NoiseLevel_2=1,1,1,1
|
||||
Cr_NoiseLevel_2=1,1,1,1
|
||||
Y_NoiseLevel_3 =102,126,112,87,75,72,58,43,76,94,84,65,56,54,43,32,51,63,56,43,37,36,29,21,25,31,28,21,18,18,14,10
|
||||
Cb_NoiseLevel_3=1,1,1,1
|
||||
Cr_NoiseLevel_3=1,1,1,1
|
||||
Y_NoiseLevel_4 =374,423,423,351,271,261,232,201,293,332,332,277,216,209,187,164,214,240,240,203,163,158,143,129,135,148,148,129,110,106,100,92
|
||||
Cb_NoiseLevel_4=100,75,50,25
|
||||
Cr_NoiseLevel_4=100,75,50,25
|
||||
Y_NoiseLevel_5 =522,577,549,473,412,390,363,338,398,438,417,360,314,298,277,260,273,300,286,248,218,206,193,181,148,162,154,135,120,114,108,102
|
||||
Cb_NoiseLevel_5=225,168,112,56
|
||||
Cr_NoiseLevel_5=225,168,112,56
|
||||
Y_NoiseLevel_6 =522,577,549,473,412,390,363,338,398,438,417,360,314,298,277,260,273,300,286,248,218,206,193,181,148,162,154,135,120,114,108,102
|
||||
Cb_NoiseLevel_6=225,168,112,56
|
||||
Cr_NoiseLevel_6=225,168,112,56
|
||||
Y_NoiseLevel_7 =522,577,549,473,412,390,363,338,398,438,417,360,314,298,277,260,273,300,286,248,218,206,193,181,148,162,154,135,120,114,108,102
|
||||
Cb_NoiseLevel_7=225,168,112,56
|
||||
Cr_NoiseLevel_7=225,168,112,56
|
||||
Y_NoiseLevel_8 =522,577,549,473,412,390,363,338,398,438,417,360,314,298,277,260,273,300,286,248,218,206,193,181,148,162,154,135,120,114,108,102
|
||||
Cb_NoiseLevel_8=225,168,112,56
|
||||
Cr_NoiseLevel_8=225,168,112,56
|
||||
|
||||
[SHARPEN]
|
||||
BrightHaloClip=128
|
||||
DarkHaloClip=128
|
||||
PeakingGain=16
|
||||
|
|
@ -0,0 +1,403 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = AR0140
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =128
|
||||
adjust_blc =0
|
||||
adjust_nr =1
|
||||
adjust_gamma =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th =96,128,256,512,1024,2048,4096,6820,6820
|
||||
gamma_idx =4,4,4,4,4,4,4,4,4
|
||||
nl_dpc =120,120,168,195,195,195,195,167,167
|
||||
nl_raw =0,0,0,0,0,0,0,24,24
|
||||
nl_ctk =0,0,0,0,0,0,0,0,0
|
||||
nl_ci =0,0,0,0,0,0,43,112,112
|
||||
ce_lvl =20,20,10,10,20,10,10,0,0
|
||||
sp_lvl =110,100,100,100,100,100,80,70,70
|
||||
saturation_lvl =128,128,128,128,100,84,70,50,50
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,45,45,84,84
|
||||
tmnr_lvl=16,16,16,20,20,48,48,50,50
|
||||
blc_r=-152,-152,-152,-152,-152,-152,-152,-152,-152
|
||||
blc_g=-152,-152,-152,-152,-152,-152,-152,-152,-152
|
||||
blc_b=-156,-156,-156,-156,-156,-156,-156,-156,-156
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2560, 3456, 3968
|
||||
wdr_kn_y = 1024, 4096, 32768, 65535
|
||||
wdr_sl = 16, 32, 512, 1024
|
||||
bit_width=16
|
||||
enable=1
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-192, -192, -192, -192
|
||||
|
||||
[LS]
|
||||
lsc_segrds =14
|
||||
lsc_ctr_r =482, 589
|
||||
lsc_ctr_gr =482, 589
|
||||
lsc_ctr_gb =482, 589
|
||||
lsc_ctr_b =482, 589
|
||||
lsc_mxtn_r=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gr=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gb=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_b=175,372,418,156,115,566,504,129
|
||||
lsc_rdsparam_r=256,256,268,259,274,263,281,267,288,271,293,276,298,279,303,284,307,288,311,293,316,296,322,299,323,303,324,307,324,308,325,309,264,258,271,261,277,265,285,269,289,273,296,278,300,282,306,286,309,291,313,294,320,298,322,301,324,305,324,308,325,308,326,310,256,256,267,260,272,263,278,268,284,272,289,275,294,279,299,285,302,288,306,291,310,293,315,297,319,299,323,302,326,305,329,307,263,258,270,261,275,265,282,271,286,274,292,277,297,282,301,287,304,290,309,292,313,296,317,298,321,301,325,303,327,306,330,310,256,256,262,264,266,271,272,274,278,275,281,276,282,276,283,278,283,278,284,279,285,280,286,281,286,281,287,282,288,283,288,283,259,261,265,268,269,273,276,274,280,275,281,276,282,277,283,278,284,279,285,279,285,280,286,281,287,282,287,282,288,283,290,284,256,256,259,268,263,274,267,281,272,286,277,292,279,295,283,300,287,304,292,307,294,311,297,317,300,322,303,326,306,327,309,327,258,263,261,271,265,277,270,283,274,289,279,294,280,298,284,302,290,306,293,308,295,315,299,319,302,325,304,327,307,327,312,328,
|
||||
lsc_rdsparam_gr=256,256,263,259,267,262,271,265,275,268,279,272,281,276,284,280,286,283,291,286,294,289,295,293,296,295,297,297,297,299,297,299,261,258,265,260,269,263,273,266,277,270,280,274,283,278,285,281,289,285,293,288,295,291,296,294,296,296,297,298,297,299,298,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,281,280,285,284,289,285,293,288,296,290,298,292,301,295,302,297,303,300,260,259,263,261,267,265,272,267,276,271,279,275,280,278,283,282,287,285,291,287,294,289,298,291,300,293,302,296,302,298,304,301,256,256,260,263,263,267,268,269,272,269,275,270,276,271,276,271,277,272,278,273,278,273,279,274,280,274,280,275,281,275,281,275,259,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,275,273,278,276,280,278,283,281,286,285,290,287,294,291,296,294,298,296,302,298,302,301,302,258,260,260,266,263,270,267,274,271,276,275,279,277,282,279,284,283,288,286,292,289,296,292,297,295,300,297,302,301,302,302,303,
|
||||
lsc_rdsparam_gb=256,256,263,259,267,261,272,265,275,268,279,272,281,276,284,280,287,283,292,287,294,289,297,293,298,295,298,297,298,299,299,299,260,258,265,260,269,263,274,266,277,270,280,274,283,278,285,281,289,286,293,288,296,291,297,294,298,296,298,298,298,299,300,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,282,280,285,284,289,286,293,288,298,290,300,292,301,295,302,297,304,300,259,259,263,261,267,265,272,267,276,271,279,275,281,278,283,282,287,285,291,287,295,289,298,291,300,293,302,296,303,298,306,302,256,256,260,263,263,267,267,269,272,269,275,270,276,271,276,271,277,272,278,273,279,273,279,274,280,274,280,275,281,275,281,275,258,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,276,273,278,276,280,278,283,281,286,285,290,288,294,290,297,294,298,296,301,298,302,301,302,258,260,260,266,263,270,267,274,271,277,275,279,277,282,279,284,283,288,287,292,289,296,292,297,295,300,297,302,299,302,302,303,
|
||||
lsc_rdsparam_b=256,256,263,257,264,258,269,261,274,264,277,264,278,267,279,268,280,267,282,269,287,272,290,274,291,276,292,278,292,280,293,280,261,256,263,257,267,259,272,263,276,264,278,265,278,268,280,267,281,268,285,270,288,273,291,275,292,277,292,280,293,280,294,282,256,256,261,256,262,258,268,262,272,264,276,265,278,267,279,267,280,267,283,268,284,271,284,273,287,275,291,277,294,280,297,282,260,256,261,257,265,260,270,263,274,264,277,266,277,267,280,267,280,268,283,269,284,272,285,274,289,276,292,279,297,280,301,284,256,256,259,260,260,263,264,264,268,265,269,265,270,265,270,265,270,265,270,265,271,266,271,267,271,267,272,268,272,268,273,268,258,258,259,262,262,264,266,264,269,265,270,265,270,265,270,265,270,266,271,266,271,266,271,267,271,268,272,268,273,268,274,269,256,256,258,262,259,265,262,269,265,273,268,276,271,276,272,278,272,277,273,277,274,280,274,285,276,288,278,291,280,290,283,290,257,260,258,263,260,267,263,272,267,275,270,276,272,277,271,277,271,278,274,279,274,281,275,287,277,291,279,290,281,290,285,290,
|
||||
lsc_adjust=0
|
||||
lsc_vepm=1024,0,1024,0,0
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength=0
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_F_Manual=0
|
||||
|
||||
[DRC_WDR]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=0.008000
|
||||
Virtual_F_Contrast=1.100000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=110
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
Virtual_F_Manual=1
|
||||
Virtual_ControlNum=12
|
||||
Virtual_Controls=0,0,304,3518,668,8847,1189,15146,2407,22348,4322,26818,5658,30224,10844,38304,16973,42793,25932,47880,33475,51172,65536,65536,
|
||||
wdr_bghno=8
|
||||
wdr_bgvno=7
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=238
|
||||
wdr_bgvo=138
|
||||
wdr_bghskip=2
|
||||
wdr_bgvskip=4
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_strength=0
|
||||
wdr_max_gain_ratio=48
|
||||
wdr_F_index=768,1032,24,25,26,27,28,29,286,0,0,0,0,0,0,0
|
||||
wdr_F_value=330,670,1019,1377,1745,2123,2509,2906,3107,3311,3518,3726,3937,4151,4366,4584,4805,5028,5253,5480,5710,5942,6177,6414,13208,20577,26726,35204,42650,50901,58217,65532
|
||||
wdr_A_index=0,1,2,3,4,261,519,523,527,275,277,279,281,283,29,286
|
||||
wdr_A_value=43550,24729,18427,16008,14890,14551,14297,14193,14102,14021,13950,13886,13829,13777,13731,13689,13651,13617,13585,13530,13484,13444,13410,13381,13356,13334,13315,13297,13282,13257,13246,13235
|
||||
wdr_PG_index=768,1032,280,26,27,28,29,30,31,0,0,0,0,0,0,0
|
||||
wdr_PG_value=64,120,174,226,276,326,375,424,448,472,495,519,543,566,589,613,636,659,682,705,728,750,773,796,1150,1494,2806,5270,9896,18583,34899,65534
|
||||
|
||||
[GM]
|
||||
#index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
#value = 6,12,18,25,31,37,43,49,71,92,106,117,135,150,163,174,185,195,205,215,224,232,236,240,242,244,246,248,249,251,253,255
|
||||
#VirtualType=2
|
||||
#VirtualGamma=23
|
||||
#VirtualBlack=0
|
||||
#VirtualContrast=100
|
||||
#VirtualControlNum=9
|
||||
#VirtualControls=0,0,191,38,315,61,516,93,840,122,1404,157,2330,196,3265,231,4096,255,
|
||||
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x200,0x104,0x6,0x7,0x108,0xa,0xb,0xc,0xd,0xe,0x20f,0x13,0x114,0x16,0x17,0x318
|
||||
value =13,24,36,48,68,83,104,122,131,139,154,167,178,189,201,204,206,209,212,222,227,231,240,248,249,250,251,251,252,253,254,255
|
||||
enable=1
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=9
|
||||
VirtualControls=0,0,188,32,297,53,495,80,811,106,1158,131,2139,181,3354,232,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 128
|
||||
ce_th = 3
|
||||
ce_strength = 10
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,151,29,-23,-284,307,237,-204,-33
|
||||
cv_1=77,151,29,-21,-339,360,265,-163,-101
|
||||
cv_2=77,151,29,-31,-399,430,257,-119,-138
|
||||
## default value
|
||||
#cv_0 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_1 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_2 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode =0
|
||||
ia_colorize_u =12
|
||||
ia_colorize_v =6
|
||||
ia_offset_u =0
|
||||
ia_offset_v =0
|
||||
ia_hue=0,0,0,0,0,0,0,0
|
||||
ia_saturation=128,128,128,128,128,128,128,128
|
||||
ia_poster_th =160,208,104,180
|
||||
ia_poster_y =90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 11
|
||||
const_k = 25205901
|
||||
target_y = 100
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=0
|
||||
auto_contrast=0
|
||||
max_isp_gain=512
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
VirtualMode=0
|
||||
VirtualPoints=69,98,55,112,47,136,41,153,35,167,80,67,63,75,54,88,42,95,33,101,159,62,123,71,99,83,86,91,65,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=10,245,83,319,-62,146,56,186,26,120,20,84,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=149,121,189,198,208,238,271,333,213,204,194,169,106,210,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
OffsetThs=0,0,-37,99,17,7,5,8,0,-14,2,7,0,
|
||||
awb_th0=10
|
||||
awb_th1=245
|
||||
awb_th2=83
|
||||
awb_th3=319
|
||||
awb_th4=-62
|
||||
awb_th5=146
|
||||
awb_th6=56
|
||||
awb_th7=186
|
||||
awb_th8=26
|
||||
awb_th9=120
|
||||
awb_th10=20
|
||||
awb_th11=84
|
||||
awb_th12=255
|
||||
rb_ratio=98,210,273
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=149,121,189,198,208,238
|
||||
B_gain=271,333,213,204,194,169
|
||||
outdoor_ev_th=46000
|
||||
|
||||
#grass region
|
||||
awb_roi1_enable=1
|
||||
awb_roi1_mode=1
|
||||
awb_roi1_th0=5
|
||||
awb_roi1_th1=200
|
||||
awb_roi1_th2=111
|
||||
awb_roi1_th3=182
|
||||
awb_roi1_th4=-8
|
||||
awb_roi1_th5=78
|
||||
awb_roi1_th6=56
|
||||
awb_roi1_th7=122
|
||||
awb_roi1_th8=35
|
||||
awb_roi1_th9=75
|
||||
awb_roi1_th10=20
|
||||
awb_roi1_th11=64
|
||||
|
||||
[AWB_M2]
|
||||
VirtualPoints0=0x101712,0x2c3f33,0x112c37,0x0d1c13,0x1a3544,0x1c5a51,0x38351b,0x0e2841,0x2b2420,0x0b131a,0x29592f,0x3a4b22,0x081a2e,0x113c25,0x231913,0x4a712e,0x2c2d38,0x0f3b48,0x6ad9c1,0x499487,0x2d5c55,0x1a3330,0x0d1a19,0x060d0e,
|
||||
VirtualPoints1=0x14170f,0x3b432f,0x152b2e,0x0f1b10,0x20353a,0x225c49,0x4b3c1a,0x122538,0x3b271b,0x0d1116,0x335f2a,0x4e5320,0x0a1727,0x153c20,0x311b10,0x637c2d,0x3b2f31,0x11383f,0x88e1ac,0x5d9979,0x385e4a,0x1e3328,0x0f1814,0x060b09,
|
||||
VirtualPoints2=0x181a10,0x47472e,0x172d2b,0x121c10,0x263735,0x265e44,0x58441a,0x132631,0x462c1c,0x101313,0x3d652b,0x5c5b21,0x0c1822,0x1a401f,0x3b1f11,0x75882f,0x48322e,0x123938,0x9de99f,0x6b9f70,0x426245,0x253627,0x121b12,0x070c08,
|
||||
VirtualPoints3=0x221c0c,0x685326,0x223223,0x1b260d,0x323b29,0x326033,0x794c17,0x192223,0x653418,0x15120d,0x4f6e24,0x76681f,0x0c1216,0x1e4018,0x49220d,0x96942c,0x54301f,0x142d22,0xb3d16b,0x7c914c,0x4d5b2f,0x293118,0x13160d,0x070904,
|
||||
VirtualPoints4=0x382711,0xa67032,0x333d24,0x282b11,0x52482b,0x4a763b,0xaf6321,0x242920,0x96441d,0x21170e,0x707e2c,0xaa7a25,0x101411,0x274219,0x712c13,0xcfa834,0x7f3c21,0x193022,0xe9e267,0xa09c47,0x62612c,0x373418,0x1a180b,0x0b0a03,
|
||||
VirtualPoints5=0x341f0e,0x955725,0x2e2c16,0x25210b,0x4a351c,0x3f5125,0xa1521b,0x231f15,0x8a3a18,0x20140a,0x64601f,0x99611e,0x10100a,0x263213,0x6c2710,0xbe862a,0x793419,0x182214,0xd9b148,0x957a32,0x5d4c1e,0x332a11,0x181308,0x0a0801,
|
||||
VirtualPoints6=0x1c1f0c,0x515525,0x1d3422,0x16250d,0x273927,0x2d6330,0x615417,0x152422,0x493315,0x10140d,0x477a24,0x63701f,0x0a1315,0x1c4417,0x351f0d,0x82a72d,0x40301f,0x122f22,0xa2ed6e,0x70a54d,0x466632,0x26371b,0x111a0d,0x070b04,
|
||||
rgb_min=5
|
||||
rgb_max=240
|
||||
grey_cx_min=866
|
||||
grey_cx_max=1285
|
||||
grey_cy_min=803
|
||||
grey_cy_max=948
|
||||
grey_cs_min=797
|
||||
grey_cs_max=866
|
||||
grey_cs_multiplier=13
|
||||
grey_cs_offset=1023
|
||||
grey_cx_boundary=932,991,1069,1156,1222
|
||||
cwf_cx_min=1060
|
||||
cwf_cx_max=1120
|
||||
cwf_cy_min=722
|
||||
cwf_cy_max=803
|
||||
gamut0_ca_min=-762
|
||||
gamut0_ca_max=487
|
||||
gamut0_ca_slope=2358
|
||||
gamut0_cb_min=1381
|
||||
gamut0_cb_max=2448
|
||||
gamut0_cb_slope=-2088
|
||||
gamut0_cx_min=537
|
||||
gamut0_cx_max=1301
|
||||
gamut0_cy_min=486
|
||||
gamut0_cy_max=1227
|
||||
gamut1_ca_min=-950
|
||||
gamut1_ca_max=338
|
||||
gamut1_ca_slope=2643
|
||||
gamut1_cb_min=1466
|
||||
gamut1_cb_max=2685
|
||||
gamut1_cb_slope=-2173
|
||||
gamut1_cx_min=592
|
||||
gamut1_cx_max=1427
|
||||
gamut1_cy_min=478
|
||||
gamut1_cy_max=1268
|
||||
gamut2_ca_min=-851
|
||||
gamut2_ca_max=264
|
||||
gamut2_ca_slope=2452
|
||||
gamut2_cb_min=1315
|
||||
gamut2_cb_max=2462
|
||||
gamut2_cb_slope=-1771
|
||||
gamut2_cx_min=665
|
||||
gamut2_cx_max=1455
|
||||
gamut2_cy_min=482
|
||||
gamut2_cy_max=1277
|
||||
gamut3_ca_min=-1146
|
||||
gamut3_ca_max=-44
|
||||
gamut3_ca_slope=2891
|
||||
gamut3_cb_min=1614
|
||||
gamut3_cb_max=2918
|
||||
gamut3_cb_slope=-2297
|
||||
gamut3_cx_min=758
|
||||
gamut3_cx_max=1542
|
||||
gamut3_cy_min=458
|
||||
gamut3_cy_max=1293
|
||||
gamut4_ca_min=-1098
|
||||
gamut4_ca_max=-266
|
||||
gamut4_ca_slope=2824
|
||||
gamut4_cb_min=1236
|
||||
gamut4_cb_max=2403
|
||||
gamut4_cb_slope=-1394
|
||||
gamut4_cx_min=845
|
||||
gamut4_cx_max=1581
|
||||
gamut4_cy_min=519
|
||||
gamut4_cy_max=1378
|
||||
gamut5_ca_min=-1435
|
||||
gamut5_ca_max=-565
|
||||
gamut5_ca_slope=3107
|
||||
gamut5_cb_min=1300
|
||||
gamut5_cb_max=2393
|
||||
gamut5_cb_slope=-1313
|
||||
gamut5_cx_min=940
|
||||
gamut5_cx_max=1610
|
||||
gamut5_cy_min=594
|
||||
gamut5_cy_max=1407
|
||||
[AF]
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0 =1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
Cb_NoiseLevel_0 =1,1,1,1
|
||||
Cr_NoiseLevel_0 =1,1,1,1
|
||||
Y_NoiseLevel_1 =4,8,6,4,1,1,1,1,3,6,4,3,1,1,1,1,2,4,3,2,1,1,1,1,1,2,1,1,1,1,1,1
|
||||
Cb_NoiseLevel_1 =1,1,1,1
|
||||
Cr_NoiseLevel_1 =1,1,1,1
|
||||
Y_NoiseLevel_2 =18,23,23,18,13,13,13,8,13,17,17,13,9,9,9,5,8,11,11,8,6,6,6,3,3,5,5,3,2,2,2,1
|
||||
Cb_NoiseLevel_2 =19,14,9,4
|
||||
Cr_NoiseLevel_2 =19,14,9,4
|
||||
Y_NoiseLevel_3 =44,50,57,47,39,32,31,31,32,37,42,35,28,24,23,23,21,25,28,23,19,16,15,15,10,12,13,11,9,7,7,7
|
||||
Cb_NoiseLevel_3 =20,15,10,5
|
||||
Cr_NoiseLevel_3 =20,15,10,5
|
||||
Y_NoiseLevel_4 =169,173,166,134,108,78,65,52,134,138,124,107,85,57,47,38,100,104,83,79,64,38,32,25,66,69,41,52,42,19,15,12
|
||||
Cb_NoiseLevel_4 =21,15,10,5
|
||||
Cr_NoiseLevel_4 =24,18,12,6
|
||||
Y_NoiseLevel_5 =392,394,364,332,303,293,291,288,313,315,291,265,242,234,232,230,235,236,218,198,181,175,174,172,156,157,145,132,121,117,116,115
|
||||
Cb_NoiseLevel_5 =71,53,35,17
|
||||
Cr_NoiseLevel_5 =77,57,38,19
|
||||
Y_NoiseLevel_6 =357,367,344,300,261,249,236,232,285,293,274,224,195,199,189,185,214,220,206,147,129,149,141,138,142,146,137,71,62,99,94,92
|
||||
Cb_NoiseLevel_6 =180,135,90,45
|
||||
Cr_NoiseLevel_6 =180,135,90,45
|
||||
Y_NoiseLevel_7 =517,553,524,460,428,398,375,354,387,414,394,348,323,301,284,267,258,275,266,235,218,203,191,182,129,137,138,122,114,107,100,95
|
||||
Cb_NoiseLevel_7 =300,225,150,75
|
||||
Cr_NoiseLevel_7 =300,225,150,75
|
||||
Y_NoiseLevel_8 =517,553,524,460,428,398,375,354,387,414,394,348,323,301,284,267,258,275,266,235,218,203,191,182,129,137,138,122,114,107,100,95
|
||||
Cb_NoiseLevel_8 =300,225,150,75
|
||||
Cr_NoiseLevel_8 =300,225,150,75
|
||||
|
||||
|
||||
|
||||
[SHARPEN]
|
||||
BrightHaloClip=128
|
||||
DarkHaloClip=128
|
||||
PeakingGain=16
|
||||
[CC]
|
||||
cc_0=256,0,0,0,256,0,0,0,256
|
||||
cc_1=256,0,0,0,256,0,0,0,256
|
||||
cc_2=256,0,0,0,256,0,0,0,256
|
||||
enable=0
|
||||
|
|
@ -0,0 +1,389 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = SC1045
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =128
|
||||
adjust_blc =0
|
||||
adjust_nr =1
|
||||
adjust_gamma =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th=96,128,256,512,1024,2048,3852,3852,3852
|
||||
blc_r=-252,-252,-252,-252,-252,-252,-252,-252,-252
|
||||
blc_g=-252,-252,-252,-252,-252,-252,-252,-252,-252
|
||||
blc_b=-256,-256,-256,-256,-256,-256,-256,-256,-256
|
||||
nl_dpc=27,76,168,170,248,248,255,255,255
|
||||
nl_raw=0,0,35,42,48,52,75,75,75
|
||||
nl_ctk=0,0,0,0,0,8,8,8,8
|
||||
nl_ci=0,0,3,6,8,10,28,28,28
|
||||
gamma_idx=4,4,4,4,4,4,4,4,4
|
||||
saturation_lvl=128,128,128,128,100,84,70,70,70
|
||||
sp_lvl=110,100,100,100,90,90,80,80,80
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,45,45,45,45
|
||||
ce_lvl=20,20,10,10,10,10,10,10,10
|
||||
tmnr_lvl=16,16,24,42,42,60,62,62,62
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2560, 3456, 3968
|
||||
wdr_kn_y = 1024, 4096, 32768, 65535
|
||||
wdr_sl = 16, 32, 512, 1024
|
||||
bit_width=16
|
||||
enable=1
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-252, -252, -252, -256
|
||||
|
||||
[LS]
|
||||
lsc_segrds =14
|
||||
lsc_ctr_r =482, 589
|
||||
lsc_ctr_gr =482, 589
|
||||
lsc_ctr_gb =482, 589
|
||||
lsc_ctr_b =482, 589
|
||||
lsc_mxtn_r=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gr=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gb=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_b=175,372,418,156,115,566,504,129
|
||||
lsc_rdsparam_r=256,256,268,259,274,263,281,267,288,271,293,276,298,279,303,284,307,288,311,293,316,296,322,299,323,303,324,307,324,308,325,309,264,258,271,261,277,265,285,269,289,273,296,278,300,282,306,286,309,291,313,294,320,298,322,301,324,305,324,308,325,308,326,310,256,256,267,260,272,263,278,268,284,272,289,275,294,279,299,285,302,288,306,291,310,293,315,297,319,299,323,302,326,305,329,307,263,258,270,261,275,265,282,271,286,274,292,277,297,282,301,287,304,290,309,292,313,296,317,298,321,301,325,303,327,306,330,310,256,256,262,264,266,271,272,274,278,275,281,276,282,276,283,278,283,278,284,279,285,280,286,281,286,281,287,282,288,283,288,283,259,261,265,268,269,273,276,274,280,275,281,276,282,277,283,278,284,279,285,279,285,280,286,281,287,282,287,282,288,283,290,284,256,256,259,268,263,274,267,281,272,286,277,292,279,295,283,300,287,304,292,307,294,311,297,317,300,322,303,326,306,327,309,327,258,263,261,271,265,277,270,283,274,289,279,294,280,298,284,302,290,306,293,308,295,315,299,319,302,325,304,327,307,327,312,328,
|
||||
lsc_rdsparam_gr=256,256,263,259,267,262,271,265,275,268,279,272,281,276,284,280,286,283,291,286,294,289,295,293,296,295,297,297,297,299,297,299,261,258,265,260,269,263,273,266,277,270,280,274,283,278,285,281,289,285,293,288,295,291,296,294,296,296,297,298,297,299,298,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,281,280,285,284,289,285,293,288,296,290,298,292,301,295,302,297,303,300,260,259,263,261,267,265,272,267,276,271,279,275,280,278,283,282,287,285,291,287,294,289,298,291,300,293,302,296,302,298,304,301,256,256,260,263,263,267,268,269,272,269,275,270,276,271,276,271,277,272,278,273,278,273,279,274,280,274,280,275,281,275,281,275,259,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,275,273,278,276,280,278,283,281,286,285,290,287,294,291,296,294,298,296,302,298,302,301,302,258,260,260,266,263,270,267,274,271,276,275,279,277,282,279,284,283,288,286,292,289,296,292,297,295,300,297,302,301,302,302,303,
|
||||
lsc_rdsparam_gb=256,256,263,259,267,261,272,265,275,268,279,272,281,276,284,280,287,283,292,287,294,289,297,293,298,295,298,297,298,299,299,299,260,258,265,260,269,263,274,266,277,270,280,274,283,278,285,281,289,286,293,288,296,291,297,294,298,296,298,298,298,299,300,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,282,280,285,284,289,286,293,288,298,290,300,292,301,295,302,297,304,300,259,259,263,261,267,265,272,267,276,271,279,275,281,278,283,282,287,285,291,287,295,289,298,291,300,293,302,296,303,298,306,302,256,256,260,263,263,267,267,269,272,269,275,270,276,271,276,271,277,272,278,273,279,273,279,274,280,274,280,275,281,275,281,275,258,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,276,273,278,276,280,278,283,281,286,285,290,288,294,290,297,294,298,296,301,298,302,301,302,258,260,260,266,263,270,267,274,271,277,275,279,277,282,279,284,283,288,287,292,289,296,292,297,295,300,297,302,299,302,302,303,
|
||||
lsc_rdsparam_b=256,256,263,257,264,258,269,261,274,264,277,264,278,267,279,268,280,267,282,269,287,272,290,274,291,276,292,278,292,280,293,280,261,256,263,257,267,259,272,263,276,264,278,265,278,268,280,267,281,268,285,270,288,273,291,275,292,277,292,280,293,280,294,282,256,256,261,256,262,258,268,262,272,264,276,265,278,267,279,267,280,267,283,268,284,271,284,273,287,275,291,277,294,280,297,282,260,256,261,257,265,260,270,263,274,264,277,266,277,267,280,267,280,268,283,269,284,272,285,274,289,276,292,279,297,280,301,284,256,256,259,260,260,263,264,264,268,265,269,265,270,265,270,265,270,265,270,265,271,266,271,267,271,267,272,268,272,268,273,268,258,258,259,262,262,264,266,264,269,265,270,265,270,265,270,265,270,266,271,266,271,266,271,267,271,268,272,268,273,268,274,269,256,256,258,262,259,265,262,269,265,273,268,276,271,276,272,278,272,277,273,277,274,280,274,285,276,288,278,291,280,290,283,290,257,260,258,263,260,267,263,272,267,275,270,276,272,277,271,277,271,278,274,279,274,281,275,287,277,291,279,290,281,290,285,290,
|
||||
lsc_adjust=0
|
||||
lsc_vepm=1024,0,1024,0,0
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength=0
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_F_Manual=0
|
||||
|
||||
[DRC_WDR]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=0.008000
|
||||
Virtual_F_Contrast=1.100000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=110
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
Virtual_F_Manual=1
|
||||
Virtual_ControlNum=12
|
||||
Virtual_Controls=0,0,304,3518,668,8847,1189,15146,2407,22348,4322,26818,5658,30224,10844,38304,16973,42793,25932,47880,33475,51172,65536,65536,
|
||||
wdr_bghno=8
|
||||
wdr_bgvno=7
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=238
|
||||
wdr_bgvo=138
|
||||
wdr_bghskip=2
|
||||
wdr_bgvskip=4
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_strength=0
|
||||
wdr_max_gain_ratio=48
|
||||
wdr_F_index=768,1032,24,25,26,27,28,29,286,0,0,0,0,0,0,0
|
||||
wdr_F_value=330,670,1019,1377,1745,2123,2509,2906,3107,3311,3518,3726,3937,4151,4366,4584,4805,5028,5253,5480,5710,5942,6177,6414,13208,20577,26726,35204,42650,50901,58217,65532
|
||||
wdr_A_index=0,1,2,3,4,261,519,523,527,275,277,279,281,283,29,286
|
||||
wdr_A_value=43550,24729,18427,16008,14890,14551,14297,14193,14102,14021,13950,13886,13829,13777,13731,13689,13651,13617,13585,13530,13484,13444,13410,13381,13356,13334,13315,13297,13282,13257,13246,13235
|
||||
wdr_PG_index=768,1032,280,26,27,28,29,30,31,0,0,0,0,0,0,0
|
||||
wdr_PG_value=64,120,174,226,276,326,375,424,448,472,495,519,543,566,589,613,636,659,682,705,728,750,773,796,1150,1494,2806,5270,9896,18583,34899,65534
|
||||
|
||||
[GM]
|
||||
#index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
#value = 6,12,18,25,31,37,43,49,71,92,106,117,135,150,163,174,185,195,205,215,224,232,236,240,242,244,246,248,249,251,253,255
|
||||
#VirtualType=2
|
||||
#VirtualGamma=23
|
||||
#VirtualBlack=0
|
||||
#VirtualContrast=100
|
||||
#VirtualControlNum=9
|
||||
#VirtualControls=0,0,191,38,315,61,516,93,840,122,1404,157,2330,196,3265,231,4096,255,
|
||||
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x200,0x104,0x6,0x7,0x108,0xa,0xb,0xc,0xd,0xe,0x20f,0x13,0x114,0x16,0x17,0x318
|
||||
value =13,24,36,48,68,83,104,122,131,139,154,167,178,189,201,204,206,209,212,222,227,231,240,248,249,250,251,251,252,253,254,255
|
||||
enable=1
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=9
|
||||
VirtualControls=0,0,188,32,297,53,495,80,811,106,1158,131,2139,181,3354,232,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 128
|
||||
ce_th = 3
|
||||
ce_strength = 10
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,150,29,-27,-400,427,317,-289,-28
|
||||
cv_1=77,150,29,-48,-415,463,389,-276,-113
|
||||
cv_2=77,150,29,-46,-617,663,375,-174,-201
|
||||
## default value
|
||||
#cv_0 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_1 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_2 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode =0
|
||||
ia_colorize_u =12
|
||||
ia_colorize_v =6
|
||||
ia_offset_u =0
|
||||
ia_offset_v =0
|
||||
ia_hue=0,0,0,0,0,0,0,0
|
||||
ia_saturation=128,128,128,128,128,128,128,128
|
||||
ia_poster_th =160,208,104,180
|
||||
ia_poster_y =90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 11
|
||||
const_k = 25205901
|
||||
target_y = 100
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=0
|
||||
auto_contrast=0
|
||||
max_isp_gain=512
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
VirtualMode=0
|
||||
VirtualPoints=84,93,75,109,67,130,63,149,59,165,92,66,77,74,68,85,60,98,54,107,144,54,121,63,106,76,93,89,81,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=15,245,95,311,-74,128,47,184,47,132,38,90,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=155,133,185,196,215,225,224,261,188,178,162,155,92,160,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
OffsetThs=0,0,-37,99,17,7,5,8,0,-14,2,7,0,
|
||||
awb_th0=5
|
||||
awb_th1=245
|
||||
awb_th2=95
|
||||
awb_th3=311
|
||||
awb_th4=-74
|
||||
awb_th5=128
|
||||
awb_th6=47
|
||||
awb_th7=184
|
||||
awb_th8=47
|
||||
awb_th9=132
|
||||
awb_th10=38
|
||||
awb_th11=90
|
||||
awb_th12=255
|
||||
rb_ratio=98,210,273
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=155,133,185,196,215,225
|
||||
B_gain=224,261,188,178,162,155
|
||||
outdoor_ev_th=60000
|
||||
|
||||
#grass region
|
||||
awb_roi1_enable=0
|
||||
awb_roi1_mode=1
|
||||
awb_roi1_th0=5
|
||||
awb_roi1_th1=200
|
||||
awb_roi1_th2=111
|
||||
awb_roi1_th3=182
|
||||
awb_roi1_th4=-8
|
||||
awb_roi1_th5=78
|
||||
awb_roi1_th6=56
|
||||
awb_roi1_th7=122
|
||||
awb_roi1_th8=35
|
||||
awb_roi1_th9=75
|
||||
awb_roi1_th10=20
|
||||
awb_roi1_th11=64
|
||||
|
||||
[AWB_M2]
|
||||
VirtualPoints0=0x141d18,0x3d5649,0x1a414f,0x13291d,0x285265,0x2f9185,0x3e3d22,0x12304e,0x36302b,0x111b24,0x3a7b44,0x506631,0x0b1d32,0x17432c,0x291f19,0x5d8c42,0x373a48,0x144d5f,0x6dddcc,0x4fa198,0x356d67,0x1f3f3c,0x101f1f,0x070f0f,
|
||||
VirtualPoints1=0x171913,0x45503c,0x1b373c,0x152417,0x2c484f,0x317f69,0x483c1d,0x12283b,0x412e23,0x11151a,0x41733a,0x5e632c,0x091725,0x183c23,0x321e14,0x6d893b,0x413539,0x144148,0x7ccba6,0x59937a,0x3b6352,0x22372e,0x101b17,0x070b0a,
|
||||
VirtualPoints2=0x1b1d13,0x54573c,0x1f3b39,0x192817,0x354c4b,0x398565,0x594420,0x162a37,0x503524,0x141819,0x4d7d3c,0x706f2f,0x0b1722,0x1b4123,0x3e2216,0x83983f,0x503c38,0x174344,0x92d79f,0x699d76,0x466950,0x283c2d,0x121d16,0x080c0a,
|
||||
VirtualPoints3=0x292512,0x816c3a,0x2c4130,0x223016,0x424f3a,0x48874e,0x845723,0x1b292a,0x714022,0x191813,0x638835,0x938331,0x0d1518,0x23481e,0x4e2713,0xa9ac3e,0x5f3b29,0x19382d,0xbee180,0x86a05d,0x57683d,0x303a22,0x171b10,0x0a0b06,
|
||||
VirtualPoints4=0x392814,0xae783f,0x374129,0x2c2e15,0x5c5034,0x568348,0xa56129,0x242821,0x924726,0x231910,0x768336,0xb88434,0x111312,0x263d1b,0x692d18,0xc6a240,0x7f4028,0x1d3325,0xd1c96b,0x928e4c,0x5f5d31,0x36341b,0x19190d,0x0b0b06,
|
||||
VirtualPoints5=0x392411,0xa96532,0x35331d,0x2b2611,0x594025,0x506331,0xa35725,0x242116,0x934221,0x23160d,0x706a2b,0xb1712d,0x11100c,0x263216,0x6e2c17,0xc48c38,0x823b22,0x1c2719,0xd0a852,0x93783b,0x605026,0x372d15,0x1a150a,0x0c0905,
|
||||
VirtualPoints6=0x1e2010,0x585c2e,0x213827,0x192811,0x2d402e,0x397741,0x5d511d,0x142323,0x48331a,0x12140f,0x4d7c2d,0x6b7628,0x091214,0x1c3e19,0x301e0f,0x7e9d34,0x3e2f21,0x132f25,0x8fcd6d,0x65924f,0x436034,0x25351c,0x11190e,0x080a05,
|
||||
rgb_min=5
|
||||
rgb_max=240
|
||||
grey_cx_min=858
|
||||
grey_cx_max=1256
|
||||
grey_cy_min=821
|
||||
grey_cy_max=970
|
||||
grey_cs_min=811
|
||||
grey_cs_max=883
|
||||
grey_cs_multiplier=14
|
||||
grey_cs_offset=990
|
||||
grey_cx_boundary=922,977,1048,1132,1195
|
||||
cwf_cx_min=1021
|
||||
cwf_cx_max=1113
|
||||
cwf_cy_min=753
|
||||
cwf_cy_max=821
|
||||
gamut0_ca_min=-763
|
||||
gamut0_ca_max=422
|
||||
gamut0_ca_slope=2461
|
||||
gamut0_cb_min=1527
|
||||
gamut0_cb_max=2531
|
||||
gamut0_cb_slope=-2302
|
||||
gamut0_cx_min=569
|
||||
gamut0_cx_max=1275
|
||||
gamut0_cy_min=533
|
||||
gamut0_cy_max=1220
|
||||
gamut1_ca_min=-784
|
||||
gamut1_ca_max=371
|
||||
gamut1_ca_slope=2452
|
||||
gamut1_cb_min=1330
|
||||
gamut1_cb_max=2375
|
||||
gamut1_cb_slope=-1775
|
||||
gamut1_cx_min=593
|
||||
gamut1_cx_max=1380
|
||||
gamut1_cy_min=526
|
||||
gamut1_cy_max=1252
|
||||
gamut2_ca_min=-869
|
||||
gamut2_ca_max=247
|
||||
gamut2_ca_slope=2585
|
||||
gamut2_cb_min=1384
|
||||
gamut2_cb_max=2498
|
||||
gamut2_cb_slope=-1880
|
||||
gamut2_cx_min=646
|
||||
gamut2_cx_max=1413
|
||||
gamut2_cy_min=512
|
||||
gamut2_cy_max=1281
|
||||
gamut3_ca_min=-1189
|
||||
gamut3_ca_max=-156
|
||||
gamut3_ca_slope=3058
|
||||
gamut3_cb_min=1449
|
||||
gamut3_cb_max=2611
|
||||
gamut3_cb_slope=-1938
|
||||
gamut3_cx_min=762
|
||||
gamut3_cx_max=1489
|
||||
gamut3_cy_min=487
|
||||
gamut3_cy_max=1285
|
||||
gamut4_ca_min=-1089
|
||||
gamut4_ca_max=-266
|
||||
gamut4_ca_slope=2938
|
||||
gamut4_cb_min=1434
|
||||
gamut4_cb_max=2552
|
||||
gamut4_cb_slope=-1703
|
||||
gamut4_cx_min=856
|
||||
gamut4_cx_max=1522
|
||||
gamut4_cy_min=562
|
||||
gamut4_cy_max=1356
|
||||
gamut5_ca_min=-1158
|
||||
gamut5_ca_max=-475
|
||||
gamut5_ca_slope=3051
|
||||
gamut5_cb_min=1310
|
||||
gamut5_cb_max=2327
|
||||
gamut5_cb_slope=-1313
|
||||
gamut5_cx_min=927
|
||||
gamut5_cx_max=1547
|
||||
gamut5_cy_min=618
|
||||
gamut5_cy_max=1382
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0=76,104,87,73,56,49,49,49,65,87,74,62,49,49,49,49,55,71,61,52,42,49,49,49,45,56,49,43,37,49,49,49
|
||||
Cb_NoiseLevel_0=1,1,1,1
|
||||
Cr_NoiseLevel_0=1,1,1,1
|
||||
Y_NoiseLevel_1=87,136,136,103,72,64,64,57,79,118,118,91,67,61,61,55,72,100,100,81,63,58,58,54,64,84,84,70,58,55,55,52
|
||||
Cb_NoiseLevel_1=1,1,1,1
|
||||
Cr_NoiseLevel_1=1,1,1,1
|
||||
Y_NoiseLevel_2=111,168,202,168,123,114,102,93,102,149,176,149,114,107,95,88,93,131,152,131,105,100,90,85,85,114,128,114,97,93,83,81
|
||||
Cb_NoiseLevel_2=19,14,9,4
|
||||
Cr_NoiseLevel_2=19,14,9,4
|
||||
Y_NoiseLevel_3=162,227,260,238,193,171,160,133,136,183,210,202,167,149,140,116,111,140,160,167,140,127,120,98,87,96,110,133,116,107,102,80
|
||||
Cb_NoiseLevel_3=26,20,15,10
|
||||
Cr_NoiseLevel_3=26,20,15,10
|
||||
Y_NoiseLevel_4=497,507,489,410,346,272,240,208,410,420,386,344,289,220,196,173,326,336,284,275,238,173,159,141,242,250,181,208,183,126,117,109
|
||||
Cb_NoiseLevel_4=21,15,10,5
|
||||
Cr_NoiseLevel_4=24,18,12,6
|
||||
Y_NoiseLevel_5=736,739,697,652,611,598,595,591,626,629,595,559,526,515,512,509,516,517,493,465,441,432,431,428,406,407,390,372,356,351,349,348
|
||||
Cb_NoiseLevel_5=72,57,43,28
|
||||
Cr_NoiseLevel_5=78,62,46,31
|
||||
Y_NoiseLevel_6=343,352,330,288,250,239,226,222,273,281,263,215,187,191,181,177,205,211,197,141,123,143,135,132,136,140,131,68,59,95,90,88
|
||||
Cb_NoiseLevel_6=180,135,90,45
|
||||
Cr_NoiseLevel_6=180,135,90,45
|
||||
Y_NoiseLevel_7=343,352,330,288,250,239,226,222,273,281,263,215,187,191,181,177,205,211,197,141,123,143,135,132,136,140,131,68,59,95,90,88
|
||||
Cb_NoiseLevel_7=180,135,90,45
|
||||
Cr_NoiseLevel_7=180,135,90,45
|
||||
Y_NoiseLevel_8=343,352,330,288,250,239,226,222,273,281,263,215,187,191,181,177,205,211,197,141,123,143,135,132,136,140,131,68,59,95,90,88
|
||||
Cb_NoiseLevel_8=180,135,90,45
|
||||
Cr_NoiseLevel_8=180,135,90,45
|
|
@ -0,0 +1,401 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = SC1135
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =128
|
||||
adjust_blc =0
|
||||
adjust_nr =1
|
||||
adjust_gamma =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th =96,128,256,512,1024,2048,4096,6820,6820
|
||||
gamma_idx =4,4,4,4,4,4,4,4,4
|
||||
nl_dpc =0,0,0,80,100,110,113,167,167
|
||||
nl_raw =0,0,0,0,0,0,0,27,27
|
||||
nl_ctk =0,0,0,0,0,0,0,0,0
|
||||
nl_ci =0,0,0,0,0,10,40,145,145
|
||||
ce_lvl =20,20,20,20,20,10,10,0,0
|
||||
sp_lvl =110,105,100,100,100,95,80,70,70
|
||||
saturation_lvl =128,128,128,128,100,70,60,50,50
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,45,45,84,84
|
||||
tmnr_lvl=6,16,16,20,20,48,48,50,50
|
||||
blc_r=-192,-192,-192,-192,-192,-192,-192,-192,-192
|
||||
blc_g=-192,-192,-192,-192,-192,-192,-192,-192,-192
|
||||
blc_b=-192,-192,-192,-192,-192,-192,-192,-192,-192
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2560, 3456, 3968
|
||||
wdr_kn_y = 1024, 4096, 32768, 65535
|
||||
wdr_sl = 16, 32, 512, 1024
|
||||
bit_width=16
|
||||
enable=1
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-192, -192, -192, -192
|
||||
|
||||
[LS]
|
||||
lsc_segrds =14
|
||||
lsc_ctr_r =482, 589
|
||||
lsc_ctr_gr =482, 589
|
||||
lsc_ctr_gb =482, 589
|
||||
lsc_ctr_b =482, 589
|
||||
lsc_mxtn_r=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gr=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gb=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_b=175,372,418,156,115,566,504,129
|
||||
lsc_rdsparam_r=256,256,268,259,274,263,281,267,288,271,293,276,298,279,303,284,307,288,311,293,316,296,322,299,323,303,324,307,324,308,325,309,264,258,271,261,277,265,285,269,289,273,296,278,300,282,306,286,309,291,313,294,320,298,322,301,324,305,324,308,325,308,326,310,256,256,267,260,272,263,278,268,284,272,289,275,294,279,299,285,302,288,306,291,310,293,315,297,319,299,323,302,326,305,329,307,263,258,270,261,275,265,282,271,286,274,292,277,297,282,301,287,304,290,309,292,313,296,317,298,321,301,325,303,327,306,330,310,256,256,262,264,266,271,272,274,278,275,281,276,282,276,283,278,283,278,284,279,285,280,286,281,286,281,287,282,288,283,288,283,259,261,265,268,269,273,276,274,280,275,281,276,282,277,283,278,284,279,285,279,285,280,286,281,287,282,287,282,288,283,290,284,256,256,259,268,263,274,267,281,272,286,277,292,279,295,283,300,287,304,292,307,294,311,297,317,300,322,303,326,306,327,309,327,258,263,261,271,265,277,270,283,274,289,279,294,280,298,284,302,290,306,293,308,295,315,299,319,302,325,304,327,307,327,312,328,
|
||||
lsc_rdsparam_gr=256,256,263,259,267,262,271,265,275,268,279,272,281,276,284,280,286,283,291,286,294,289,295,293,296,295,297,297,297,299,297,299,261,258,265,260,269,263,273,266,277,270,280,274,283,278,285,281,289,285,293,288,295,291,296,294,296,296,297,298,297,299,298,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,281,280,285,284,289,285,293,288,296,290,298,292,301,295,302,297,303,300,260,259,263,261,267,265,272,267,276,271,279,275,280,278,283,282,287,285,291,287,294,289,298,291,300,293,302,296,302,298,304,301,256,256,260,263,263,267,268,269,272,269,275,270,276,271,276,271,277,272,278,273,278,273,279,274,280,274,280,275,281,275,281,275,259,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,275,273,278,276,280,278,283,281,286,285,290,287,294,291,296,294,298,296,302,298,302,301,302,258,260,260,266,263,270,267,274,271,276,275,279,277,282,279,284,283,288,286,292,289,296,292,297,295,300,297,302,301,302,302,303,
|
||||
lsc_rdsparam_gb=256,256,263,259,267,261,272,265,275,268,279,272,281,276,284,280,287,283,292,287,294,289,297,293,298,295,298,297,298,299,299,299,260,258,265,260,269,263,274,266,277,270,280,274,283,278,285,281,289,286,293,288,296,291,297,294,298,296,298,298,298,299,300,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,282,280,285,284,289,286,293,288,298,290,300,292,301,295,302,297,304,300,259,259,263,261,267,265,272,267,276,271,279,275,281,278,283,282,287,285,291,287,295,289,298,291,300,293,302,296,303,298,306,302,256,256,260,263,263,267,267,269,272,269,275,270,276,271,276,271,277,272,278,273,279,273,279,274,280,274,280,275,281,275,281,275,258,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,276,273,278,276,280,278,283,281,286,285,290,288,294,290,297,294,298,296,301,298,302,301,302,258,260,260,266,263,270,267,274,271,277,275,279,277,282,279,284,283,288,287,292,289,296,292,297,295,300,297,302,299,302,302,303,
|
||||
lsc_rdsparam_b=256,256,263,257,264,258,269,261,274,264,277,264,278,267,279,268,280,267,282,269,287,272,290,274,291,276,292,278,292,280,293,280,261,256,263,257,267,259,272,263,276,264,278,265,278,268,280,267,281,268,285,270,288,273,291,275,292,277,292,280,293,280,294,282,256,256,261,256,262,258,268,262,272,264,276,265,278,267,279,267,280,267,283,268,284,271,284,273,287,275,291,277,294,280,297,282,260,256,261,257,265,260,270,263,274,264,277,266,277,267,280,267,280,268,283,269,284,272,285,274,289,276,292,279,297,280,301,284,256,256,259,260,260,263,264,264,268,265,269,265,270,265,270,265,270,265,270,265,271,266,271,267,271,267,272,268,272,268,273,268,258,258,259,262,262,264,266,264,269,265,270,265,270,265,270,265,270,266,271,266,271,266,271,267,271,268,272,268,273,268,274,269,256,256,258,262,259,265,262,269,265,273,268,276,271,276,272,278,272,277,273,277,274,280,274,285,276,288,278,291,280,290,283,290,257,260,258,263,260,267,263,272,267,275,270,276,272,277,271,277,271,278,274,279,274,281,275,287,277,291,279,290,281,290,285,290,
|
||||
lsc_adjust=0
|
||||
lsc_vepm=1024,0,1024,0,0
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength=0
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_F_Manual=0
|
||||
|
||||
[DRC_WDR]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=0.008000
|
||||
Virtual_F_Contrast=1.100000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=110
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
Virtual_F_Manual=1
|
||||
Virtual_ControlNum=12
|
||||
Virtual_Controls=0,0,304,3518,668,8847,1189,15146,2407,22348,4322,26818,5658,30224,10844,38304,16973,42793,25932,47880,33475,51172,65536,65536,
|
||||
wdr_bghno=8
|
||||
wdr_bgvno=7
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=238
|
||||
wdr_bgvo=138
|
||||
wdr_bghskip=2
|
||||
wdr_bgvskip=4
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_strength=0
|
||||
wdr_max_gain_ratio=48
|
||||
wdr_F_index=768,1032,24,25,26,27,28,29,286,0,0,0,0,0,0,0
|
||||
wdr_F_value=330,670,1019,1377,1745,2123,2509,2906,3107,3311,3518,3726,3937,4151,4366,4584,4805,5028,5253,5480,5710,5942,6177,6414,13208,20577,26726,35204,42650,50901,58217,65532
|
||||
wdr_A_index=0,1,2,3,4,261,519,523,527,275,277,279,281,283,29,286
|
||||
wdr_A_value=43550,24729,18427,16008,14890,14551,14297,14193,14102,14021,13950,13886,13829,13777,13731,13689,13651,13617,13585,13530,13484,13444,13410,13381,13356,13334,13315,13297,13282,13257,13246,13235
|
||||
wdr_PG_index=768,1032,280,26,27,28,29,30,31,0,0,0,0,0,0,0
|
||||
wdr_PG_value=64,120,174,226,276,326,375,424,448,472,495,519,543,566,589,613,636,659,682,705,728,750,773,796,1150,1494,2806,5270,9896,18583,34899,65534
|
||||
|
||||
[GM]
|
||||
#index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
#value = 6,12,18,25,31,37,43,49,71,92,106,117,135,150,163,174,185,195,205,215,224,232,236,240,242,244,246,248,249,251,253,255
|
||||
#VirtualType=2
|
||||
#VirtualGamma=23
|
||||
#VirtualBlack=0
|
||||
#VirtualContrast=100
|
||||
#VirtualControlNum=9
|
||||
#VirtualControls=0,0,191,38,315,61,516,93,840,122,1404,157,2330,196,3265,231,4096,255,
|
||||
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x200,0x104,0x6,0x7,0x108,0xa,0xb,0xc,0xd,0xe,0x20f,0x13,0x114,0x16,0x17,0x318
|
||||
value =13,24,36,48,68,83,104,122,131,139,154,167,178,189,201,204,206,209,212,222,227,231,240,248,249,250,251,251,252,253,254,255
|
||||
enable=1
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=9
|
||||
VirtualControls=0,0,188,32,297,53,495,80,811,106,1158,131,2139,181,3354,232,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 128
|
||||
ce_th = 3
|
||||
ce_strength = 10
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,151,29,-26,-373,398,339,-301,-38
|
||||
cv_1=77,151,29,-51,-335,386,377,-251,-126
|
||||
cv_2=77,151,29,-57,-482,539,376,-166,-210
|
||||
## default value
|
||||
#cv_0 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_1 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_2 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode =0
|
||||
ia_colorize_u =12
|
||||
ia_colorize_v =6
|
||||
ia_offset_u =0
|
||||
ia_offset_v =0
|
||||
ia_hue=0,0,0,0,0,0,0,0
|
||||
ia_saturation=128,128,128,128,128,128,128,128
|
||||
ia_poster_th =160,208,104,180
|
||||
ia_poster_y =90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 11
|
||||
const_k = 25205901
|
||||
target_y = 100
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=0
|
||||
auto_contrast=0
|
||||
max_isp_gain=256
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
VirtualMode=0
|
||||
VirtualPoints=77,96,66,119,62,137,57,157,52,173,92,78,78,85,62,88,58,125,51,139,118,61,110,67,101,79,84,94,74,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=15,245,99,302,-49,135,55,192,45,109,36,77,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=148,125,179,192,213,217,252,298,208,194,174,171,100,182,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
OffsetThs=0,0,-37,99,17,7,5,8,0,-14,2,7,0,
|
||||
awb_th0=15
|
||||
awb_th1=245
|
||||
awb_th2=99
|
||||
awb_th3=302
|
||||
awb_th4=-49
|
||||
awb_th5=135
|
||||
awb_th6=55
|
||||
awb_th7=192
|
||||
awb_th8=45
|
||||
awb_th9=109
|
||||
awb_th10=36
|
||||
awb_th11=77
|
||||
awb_th12=255
|
||||
rb_ratio=101,181,282
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=148,125,179,192,213,217
|
||||
B_gain=252,298,208,194,174,171
|
||||
outdoor_ev_th=46000
|
||||
|
||||
#grass region
|
||||
awb_roi1_enable=0
|
||||
awb_roi1_mode=1
|
||||
awb_roi1_th0=5
|
||||
awb_roi1_th1=200
|
||||
awb_roi1_th2=111
|
||||
awb_roi1_th3=182
|
||||
awb_roi1_th4=-8
|
||||
awb_roi1_th5=78
|
||||
awb_roi1_th6=56
|
||||
awb_roi1_th7=122
|
||||
awb_roi1_th8=35
|
||||
awb_roi1_th9=75
|
||||
awb_roi1_th10=20
|
||||
awb_roi1_th11=64
|
||||
|
||||
#[AWB_M2]
|
||||
VirtualPoints0=0x101712,0x2c3f33,0x112c37,0x0d1c13,0x1a3544,0x1c5a51,0x38351b,0x0e2841,0x2b2420,0x0b131a,0x29592f,0x3a4b22,0x081a2e,0x113c25,0x231913,0x4a712e,0x2c2d38,0x0f3b48,0x6ad9c1,0x499487,0x2d5c55,0x1a3330,0x0d1a19,0x060d0e,
|
||||
VirtualPoints1=0x14170f,0x3b432f,0x152b2e,0x0f1b10,0x20353a,0x225c49,0x4b3c1a,0x122538,0x3b271b,0x0d1116,0x335f2a,0x4e5320,0x0a1727,0x153c20,0x311b10,0x637c2d,0x3b2f31,0x11383f,0x88e1ac,0x5d9979,0x385e4a,0x1e3328,0x0f1814,0x060b09,
|
||||
VirtualPoints2=0x181a10,0x47472e,0x172d2b,0x121c10,0x263735,0x265e44,0x58441a,0x132631,0x462c1c,0x101313,0x3d652b,0x5c5b21,0x0c1822,0x1a401f,0x3b1f11,0x75882f,0x48322e,0x123938,0x9de99f,0x6b9f70,0x426245,0x253627,0x121b12,0x070c08,
|
||||
VirtualPoints3=0x221c0c,0x685326,0x223223,0x1b260d,0x323b29,0x326033,0x794c17,0x192223,0x653418,0x15120d,0x4f6e24,0x76681f,0x0c1216,0x1e4018,0x49220d,0x96942c,0x54301f,0x142d22,0xb3d16b,0x7c914c,0x4d5b2f,0x293118,0x13160d,0x070904,
|
||||
VirtualPoints4=0x382711,0xa67032,0x333d24,0x282b11,0x52482b,0x4a763b,0xaf6321,0x242920,0x96441d,0x21170e,0x707e2c,0xaa7a25,0x101411,0x274219,0x712c13,0xcfa834,0x7f3c21,0x193022,0xe9e267,0xa09c47,0x62612c,0x373418,0x1a180b,0x0b0a03,
|
||||
VirtualPoints5=0x341f0e,0x955725,0x2e2c16,0x25210b,0x4a351c,0x3f5125,0xa1521b,0x231f15,0x8a3a18,0x20140a,0x64601f,0x99611e,0x10100a,0x263213,0x6c2710,0xbe862a,0x793419,0x182214,0xd9b148,0x957a32,0x5d4c1e,0x332a11,0x181308,0x0a0801,
|
||||
VirtualPoints6=0x1c1f0c,0x515525,0x1d3422,0x16250d,0x273927,0x2d6330,0x615417,0x152422,0x493315,0x10140d,0x477a24,0x63701f,0x0a1315,0x1c4417,0x351f0d,0x82a72d,0x40301f,0x122f22,0xa2ed6e,0x70a54d,0x466632,0x26371b,0x111a0d,0x070b04,
|
||||
rgb_min=5
|
||||
rgb_max=240
|
||||
grey_cx_min=866
|
||||
grey_cx_max=1285
|
||||
grey_cy_min=803
|
||||
grey_cy_max=948
|
||||
grey_cs_min=797
|
||||
grey_cs_max=866
|
||||
grey_cs_multiplier=13
|
||||
grey_cs_offset=1023
|
||||
grey_cx_boundary=932,991,1069,1156,1222
|
||||
cwf_cx_min=1060
|
||||
cwf_cx_max=1120
|
||||
cwf_cy_min=722
|
||||
cwf_cy_max=803
|
||||
gamut0_ca_min=-762
|
||||
gamut0_ca_max=487
|
||||
gamut0_ca_slope=2358
|
||||
gamut0_cb_min=1381
|
||||
gamut0_cb_max=2448
|
||||
gamut0_cb_slope=-2088
|
||||
gamut0_cx_min=537
|
||||
gamut0_cx_max=1301
|
||||
gamut0_cy_min=486
|
||||
gamut0_cy_max=1227
|
||||
gamut1_ca_min=-950
|
||||
gamut1_ca_max=338
|
||||
gamut1_ca_slope=2643
|
||||
gamut1_cb_min=1466
|
||||
gamut1_cb_max=2685
|
||||
gamut1_cb_slope=-2173
|
||||
gamut1_cx_min=592
|
||||
gamut1_cx_max=1427
|
||||
gamut1_cy_min=478
|
||||
gamut1_cy_max=1268
|
||||
gamut2_ca_min=-851
|
||||
gamut2_ca_max=264
|
||||
gamut2_ca_slope=2452
|
||||
gamut2_cb_min=1315
|
||||
gamut2_cb_max=2462
|
||||
gamut2_cb_slope=-1771
|
||||
gamut2_cx_min=665
|
||||
gamut2_cx_max=1455
|
||||
gamut2_cy_min=482
|
||||
gamut2_cy_max=1277
|
||||
gamut3_ca_min=-1146
|
||||
gamut3_ca_max=-44
|
||||
gamut3_ca_slope=2891
|
||||
gamut3_cb_min=1614
|
||||
gamut3_cb_max=2918
|
||||
gamut3_cb_slope=-2297
|
||||
gamut3_cx_min=758
|
||||
gamut3_cx_max=1542
|
||||
gamut3_cy_min=458
|
||||
gamut3_cy_max=1293
|
||||
gamut4_ca_min=-1098
|
||||
gamut4_ca_max=-266
|
||||
gamut4_ca_slope=2824
|
||||
gamut4_cb_min=1236
|
||||
gamut4_cb_max=2403
|
||||
gamut4_cb_slope=-1394
|
||||
gamut4_cx_min=845
|
||||
gamut4_cx_max=1581
|
||||
gamut4_cy_min=519
|
||||
gamut4_cy_max=1378
|
||||
gamut5_ca_min=-1435
|
||||
gamut5_ca_max=-565
|
||||
gamut5_ca_slope=3107
|
||||
gamut5_cb_min=1300
|
||||
gamut5_cb_max=2393
|
||||
gamut5_cb_slope=-1313
|
||||
gamut5_cx_min=940
|
||||
gamut5_cx_max=1610
|
||||
gamut5_cy_min=594
|
||||
gamut5_cy_max=1407
|
||||
[AF]
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0 =1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
Cb_NoiseLevel_0 =1,1,1,1
|
||||
Cr_NoiseLevel_0 =1,1,1,1
|
||||
Y_NoiseLevel_1 =4,8,6,4,1,1,1,1,3,6,4,3,1,1,1,1,2,4,3,2,1,1,1,1,1,2,1,1,1,1,1,1
|
||||
Cb_NoiseLevel_1 =1,1,1,1
|
||||
Cr_NoiseLevel_1 =1,1,1,1
|
||||
Y_NoiseLevel_2 =18,23,23,18,13,13,13,8,13,17,17,13,9,9,9,5,8,11,11,8,6,6,6,3,3,5,5,3,2,2,2,1
|
||||
Cb_NoiseLevel_2 =19,14,9,4
|
||||
Cr_NoiseLevel_2 =19,14,9,4
|
||||
Y_NoiseLevel_3 =44,50,57,47,39,32,31,31,32,37,42,35,28,24,23,23,21,25,28,23,19,16,15,15,10,12,13,11,9,7,7,7
|
||||
Cb_NoiseLevel_3 =20,15,10,5
|
||||
Cr_NoiseLevel_3 =20,15,10,5
|
||||
Y_NoiseLevel_4 =189,193,186,154,128,98,85,72,154,158,144,127,105,77,67,58,120,124,103,99,84,58,52,45,86,89,61,72,62,39,35,32
|
||||
Cb_NoiseLevel_4 =21,15,10,5
|
||||
Cr_NoiseLevel_4 =24,18,12,6
|
||||
Y_NoiseLevel_5 =392,394,364,332,303,293,291,288,313,315,291,265,242,234,232,230,235,236,218,198,181,175,174,172,156,157,145,132,121,117,116,115
|
||||
Cb_NoiseLevel_5 =71,53,35,17
|
||||
Cr_NoiseLevel_5 =77,57,38,19
|
||||
Y_NoiseLevel_6 =437,447,424,380,341,329,316,312,365,373,354,304,275,279,269,265,294,300,286,227,209,229,221,218,222,226,217,151,142,179,174,172
|
||||
Cb_NoiseLevel_6 =180,135,90,45
|
||||
Cr_NoiseLevel_6 =180,135,90,45
|
||||
Y_NoiseLevel_7 =517,553,524,460,428,398,375,354,387,414,394,348,323,301,284,267,258,275,266,235,218,203,191,182,129,137,138,122,114,107,100,95
|
||||
Cb_NoiseLevel_7 =230,184,138,92
|
||||
Cr_NoiseLevel_7 =230,184,138,92
|
||||
Y_NoiseLevel_8 =517,553,524,460,428,398,375,354,387,414,394,348,323,301,284,267,258,275,266,235,218,203,191,182,129,137,138,122,114,107,100,95
|
||||
Cb_NoiseLevel_8 =230,184,138,92
|
||||
Cr_NoiseLevel_8 =230,184,138,92
|
||||
|
||||
[SHARPEN]
|
||||
BrightHaloClip=128
|
||||
DarkHaloClip=128
|
||||
PeakingGain=16
|
||||
[CC]
|
||||
cc_0=256,0,0,0,256,0,0,0,256
|
||||
cc_1=256,0,0,0,256,0,0,0,256
|
||||
cc_2=256,0,0,0,256,0,0,0,256
|
||||
enable=0
|
||||
|
|
@ -0,0 +1,278 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = SC1045
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =100
|
||||
adjust_blc =0
|
||||
adjust_nr =1
|
||||
adjust_gamma =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th=96,128,256,512,1024,2048,4096,8192,8192
|
||||
nl_dpc=190,200,210,220,248,248,255,255,255
|
||||
nl_raw=0,0,35,42,48,59,79,79,79
|
||||
nl_ctk=0,0,0,0,20,47,57,57,57
|
||||
nl_ci=0,0,3,16,58,71,71,71,71
|
||||
gamma_idx=4,4,4,4,4,4,4,4,4
|
||||
saturation_lvl=128,128,120,100,40,40,40,40,40
|
||||
sp_lvl=110,110,110,105,90,90,80,80,80
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,45,45,45,45
|
||||
ce_lvl=20,20,19,18,16,14,12,11,10
|
||||
tmnr_lvl=16,16,24,42,42,60,62,62,62
|
||||
blc_r=-252,-252,-252,-252,-252,-252,-252,-252,-252
|
||||
blc_g=-252,-252,-252,-252,-252,-252,-252,-252,-252
|
||||
blc_b=-256,-256,-256,-256,-256,-256,-256,-256,-256
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2560, 3456, 3968
|
||||
wdr_kn_y = 1024, 4096, 32768, 65535
|
||||
wdr_sl = 16, 32, 512, 1024
|
||||
bit_width=16
|
||||
enable=1
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-252, -252, -252, -256
|
||||
|
||||
[LS]
|
||||
lsc_segrds =14
|
||||
lsc_ctr_r =482, 589
|
||||
lsc_ctr_gr =482, 589
|
||||
lsc_ctr_gb =482, 589
|
||||
lsc_ctr_b =482, 589
|
||||
lsc_mxtn_r=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gr=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gb=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_b=175,372,418,156,115,566,504,129
|
||||
lsc_rdsparam_r=256,256,268,259,274,263,281,267,288,271,293,276,298,279,303,284,307,288,311,293,316,296,322,299,323,303,324,307,324,308,325,309,264,258,271,261,277,265,285,269,289,273,296,278,300,282,306,286,309,291,313,294,320,298,322,301,324,305,324,308,325,308,326,310,256,256,267,260,272,263,278,268,284,272,289,275,294,279,299,285,302,288,306,291,310,293,315,297,319,299,323,302,326,305,329,307,263,258,270,261,275,265,282,271,286,274,292,277,297,282,301,287,304,290,309,292,313,296,317,298,321,301,325,303,327,306,330,310,256,256,262,264,266,271,272,274,278,275,281,276,282,276,283,278,283,278,284,279,285,280,286,281,286,281,287,282,288,283,288,283,259,261,265,268,269,273,276,274,280,275,281,276,282,277,283,278,284,279,285,279,285,280,286,281,287,282,287,282,288,283,290,284,256,256,259,268,263,274,267,281,272,286,277,292,279,295,283,300,287,304,292,307,294,311,297,317,300,322,303,326,306,327,309,327,258,263,261,271,265,277,270,283,274,289,279,294,280,298,284,302,290,306,293,308,295,315,299,319,302,325,304,327,307,327,312,328,
|
||||
lsc_rdsparam_gr=256,256,263,259,267,262,271,265,275,268,279,272,281,276,284,280,286,283,291,286,294,289,295,293,296,295,297,297,297,299,297,299,261,258,265,260,269,263,273,266,277,270,280,274,283,278,285,281,289,285,293,288,295,291,296,294,296,296,297,298,297,299,298,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,281,280,285,284,289,285,293,288,296,290,298,292,301,295,302,297,303,300,260,259,263,261,267,265,272,267,276,271,279,275,280,278,283,282,287,285,291,287,294,289,298,291,300,293,302,296,302,298,304,301,256,256,260,263,263,267,268,269,272,269,275,270,276,271,276,271,277,272,278,273,278,273,279,274,280,274,280,275,281,275,281,275,259,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,275,273,278,276,280,278,283,281,286,285,290,287,294,291,296,294,298,296,302,298,302,301,302,258,260,260,266,263,270,267,274,271,276,275,279,277,282,279,284,283,288,286,292,289,296,292,297,295,300,297,302,301,302,302,303,
|
||||
lsc_rdsparam_gb=256,256,263,259,267,261,272,265,275,268,279,272,281,276,284,280,287,283,292,287,294,289,297,293,298,295,298,297,298,299,299,299,260,258,265,260,269,263,274,266,277,270,280,274,283,278,285,281,289,286,293,288,296,291,297,294,298,296,298,298,298,299,300,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,282,280,285,284,289,286,293,288,298,290,300,292,301,295,302,297,304,300,259,259,263,261,267,265,272,267,276,271,279,275,281,278,283,282,287,285,291,287,295,289,298,291,300,293,302,296,303,298,306,302,256,256,260,263,263,267,267,269,272,269,275,270,276,271,276,271,277,272,278,273,279,273,279,274,280,274,280,275,281,275,281,275,258,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,276,273,278,276,280,278,283,281,286,285,290,288,294,290,297,294,298,296,301,298,302,301,302,258,260,260,266,263,270,267,274,271,277,275,279,277,282,279,284,283,288,287,292,289,296,292,297,295,300,297,302,299,302,302,303,
|
||||
lsc_rdsparam_b=256,256,263,257,264,258,269,261,274,264,277,264,278,267,279,268,280,267,282,269,287,272,290,274,291,276,292,278,292,280,293,280,261,256,263,257,267,259,272,263,276,264,278,265,278,268,280,267,281,268,285,270,288,273,291,275,292,277,292,280,293,280,294,282,256,256,261,256,262,258,268,262,272,264,276,265,278,267,279,267,280,267,283,268,284,271,284,273,287,275,291,277,294,280,297,282,260,256,261,257,265,260,270,263,274,264,277,266,277,267,280,267,280,268,283,269,284,272,285,274,289,276,292,279,297,280,301,284,256,256,259,260,260,263,264,264,268,265,269,265,270,265,270,265,270,265,270,265,271,266,271,267,271,267,272,268,272,268,273,268,258,258,259,262,262,264,266,264,269,265,270,265,270,265,270,265,270,266,271,266,271,266,271,267,271,268,272,268,273,268,274,269,256,256,258,262,259,265,262,269,265,273,268,276,271,276,272,278,272,277,273,277,274,280,274,285,276,288,278,291,280,290,283,290,257,260,258,263,260,267,263,272,267,275,270,276,272,277,271,277,271,278,274,279,274,281,275,287,277,291,279,290,281,290,285,290,
|
||||
lsc_adjust=0
|
||||
lsc_vepm=1024,0,1024,0,0
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength=0
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_F_Manual=0
|
||||
|
||||
[DRC_WDR]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=0.008000
|
||||
Virtual_F_Contrast=1.100000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=110
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
Virtual_F_Manual=1
|
||||
Virtual_ControlNum=12
|
||||
Virtual_Controls=0,0,304,3518,668,8847,1189,15146,2407,22348,4322,26818,5658,30224,10844,38304,16973,42793,25932,47880,33475,51172,65536,65536,
|
||||
wdr_bghno=8
|
||||
wdr_bgvno=7
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=238
|
||||
wdr_bgvo=138
|
||||
wdr_bghskip=2
|
||||
wdr_bgvskip=4
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_strength=0
|
||||
wdr_max_gain_ratio=48
|
||||
wdr_F_index=768,1032,24,25,26,27,28,29,286,0,0,0,0,0,0,0
|
||||
wdr_F_value=330,670,1019,1377,1745,2123,2509,2906,3107,3311,3518,3726,3937,4151,4366,4584,4805,5028,5253,5480,5710,5942,6177,6414,13208,20577,26726,35204,42650,50901,58217,65532
|
||||
wdr_A_index=0,1,2,3,4,261,519,523,527,275,277,279,281,283,29,286
|
||||
wdr_A_value=43550,24729,18427,16008,14890,14551,14297,14193,14102,14021,13950,13886,13829,13777,13731,13689,13651,13617,13585,13530,13484,13444,13410,13381,13356,13334,13315,13297,13282,13257,13246,13235
|
||||
wdr_PG_index=768,1032,280,26,27,28,29,30,31,0,0,0,0,0,0,0
|
||||
wdr_PG_value=64,120,174,226,276,326,375,424,448,472,495,519,543,566,589,613,636,659,682,705,728,750,773,796,1150,1494,2806,5270,9896,18583,34899,65534
|
||||
|
||||
[GM]
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x200,0x104,0x6,0x7,0x108,0xa,0xb,0xc,0xd,0xe,0x20f,0x13,0x114,0x16,0x17,0x318
|
||||
value =13,24,36,48,68,83,104,122,131,139,154,167,178,189,201,204,206,209,212,222,227,231,240,248,249,250,251,251,252,253,254,255
|
||||
enable=1
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=9
|
||||
VirtualControls=0,0,188,32,297,53,495,80,811,106,1158,131,2139,181,3354,232,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 128
|
||||
ce_th = 3
|
||||
ce_strength = 10
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,151,29,-16,-336,352,244,-211,-33
|
||||
cv_1=77,151,29,-20,-359,379,255,-151,-104
|
||||
cv_2=77,151,29,-35,-494,530,311,-145,-166
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode=0
|
||||
ia_colorize_u=12
|
||||
ia_colorize_v=6
|
||||
ia_offset_u=0
|
||||
ia_offset_v=0
|
||||
ia_hue=4,5,2,3,4,0,4,0
|
||||
ia_saturation=129,134,141,129,139,141,123,137
|
||||
ia_poster_th=160,208,104,180
|
||||
ia_poster_y=90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 11
|
||||
const_k = 25205901
|
||||
target_y = 125
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=5
|
||||
auto_contrast=1
|
||||
max_isp_gain=224
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
VirtualMode=0
|
||||
VirtualPoints=93,88,81,99,67,120,65,129,61,152,116,66,105,83,84,105,76,111,66,131,127,56,127,65,111,75,106,84,90,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=15,245,104,295,-73,104,50,171,55,123,49,79,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=163,145,199,205,215,237,200,227,165,160,152,138,86,160,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
OffsetThs=0,0,-37,99,17,7,5,8,0,-14,2,7,0,
|
||||
awb_th0=5
|
||||
awb_th1=245
|
||||
awb_th2=104
|
||||
awb_th3=295
|
||||
awb_th4=-73
|
||||
awb_th5=136
|
||||
awb_th6=50
|
||||
awb_th7=171
|
||||
awb_th8=40
|
||||
awb_th9=132
|
||||
awb_th10=45
|
||||
awb_th11=125
|
||||
awb_th12=255
|
||||
target_rg_ratio=1024,1024,1024
|
||||
target_bg_ratio=1024,1024,1024
|
||||
rb_ratio=88,163,232
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=163,145,199,205,215,237
|
||||
B_gain=200,227,165,160,152,138
|
||||
outdoor_ev_th=60000
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0=76,104,87,73,56,49,49,49,65,87,74,62,49,49,49,49,55,71,61,52,42,49,49,49,45,56,49,43,37,49,49,49
|
||||
Cb_NoiseLevel_0=1,1,1,1
|
||||
Cr_NoiseLevel_0=1,1,1,1
|
||||
Y_NoiseLevel_1=87,136,136,103,72,64,64,57,79,118,118,91,67,61,61,55,72,100,100,81,63,58,58,54,64,84,84,70,58,55,55,52
|
||||
Cb_NoiseLevel_1=1,1,1,1
|
||||
Cr_NoiseLevel_1=1,1,1,1
|
||||
Y_NoiseLevel_2=111,168,202,168,123,114,102,93,102,149,176,149,114,107,95,88,93,131,152,131,105,100,90,85,85,114,128,114,97,93,83,81
|
||||
Cb_NoiseLevel_2=19,14,9,4
|
||||
Cr_NoiseLevel_2=19,14,9,4
|
||||
Y_NoiseLevel_3=162,227,260,238,193,171,160,133,136,183,210,202,167,149,140,116,111,140,160,167,140,127,120,98,87,96,110,133,116,107,102,80
|
||||
Cb_NoiseLevel_3=26,20,15,10
|
||||
Cr_NoiseLevel_3=26,20,15,10
|
||||
Y_NoiseLevel_4=497,507,489,410,346,272,240,208,410,420,386,344,289,220,196,173,326,336,284,275,238,173,159,141,242,250,181,208,183,126,117,109
|
||||
Cb_NoiseLevel_4=21,15,10,5
|
||||
Cr_NoiseLevel_4=24,18,12,6
|
||||
Y_NoiseLevel_5=511,514,484,454,425,416,414,411,436,437,414,388,365,358,355,353,358,360,343,322,307,300,299,298,281,282,271,258,247,244,241,240
|
||||
Cb_NoiseLevel_5=343,274,205,137
|
||||
Cr_NoiseLevel_5=343,274,205,137
|
||||
Y_NoiseLevel_6=511,514,484,454,425,416,414,411,436,437,414,388,365,358,355,353,358,360,343,322,307,300,299,298,281,282,271,258,247,244,241,240
|
||||
Cb_NoiseLevel_6=343,274,205,137
|
||||
Cr_NoiseLevel_6=343,274,205,137
|
||||
Y_NoiseLevel_7=511,514,484,454,425,416,414,411,436,437,414,388,365,358,355,353,358,360,343,322,307,300,299,298,281,282,271,258,247,244,241,240
|
||||
Cb_NoiseLevel_7=343,274,205,137
|
||||
Cr_NoiseLevel_7=343,274,205,137
|
||||
Y_NoiseLevel_8=511,514,484,454,425,416,414,411,436,437,414,388,365,358,355,353,358,360,343,322,307,300,299,298,281,282,271,258,247,244,241,240
|
||||
Cb_NoiseLevel_8=343,274,205,137
|
||||
Cr_NoiseLevel_8=343,274,205,137
|
|
@ -0,0 +1,277 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = SC2035
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =128
|
||||
adjust_nr =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th =96,128,256,512,1024,1984,1984,1984,1984
|
||||
nl_dpc =20,28,35,100,101,130,130,130,130
|
||||
nl_raw =5,7,12,14,31,36,36,36,36
|
||||
nl_ctk =5,5,12,14,32,37,37,37,37
|
||||
nl_ci =0,3,14,18,44,48,48,48,48
|
||||
ce_lvl =20,20,15,10,0,0,0,0,0
|
||||
sp_lvl =120,110,110,110,105,95,95,95,95
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,0,0,0,0
|
||||
saturation_lvl =128,128,128,110,80,60,60,60,60
|
||||
tmnr_lvl =12,16,20,26,40,48,48,48,48
|
||||
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2560, 3456, 3968
|
||||
wdr_kn_y = 1024, 4096, 32768, 65536
|
||||
wdr_sl = 16, 32, 512, 1024
|
||||
bit_width=16
|
||||
enable=0
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-64, -64, -64, -64
|
||||
|
||||
[LS]
|
||||
enable =0
|
||||
lsc_ctr_r=507, 492
|
||||
lsc_ctr_gr=512, 488
|
||||
lsc_ctr_gb=510, 491
|
||||
lsc_ctr_b=522, 484
|
||||
lsc_segrds=15
|
||||
lsc_mxtn_r=140,465,474,138,149,439,430,152
|
||||
lsc_mxtn_gr=138,473,473,138,151,431,431,151
|
||||
lsc_mxtn_gb=139,469,472,138,150,435,432,151
|
||||
lsc_mxtn_b=134,487,469,139,155,420,436,150
|
||||
lsc_rdsparam_r=256,258,259,259,260,261,263,265,266,268,270,271,273,275,277,278,280,281,283,284,285,287,290,294,297,300,303,306,308,309,311,311,256,257,258,258,260,261,262,264,265,266,268,269,271,272,274,275,276,278,280,282,283,286,288,290,292,294,296,301,305,309,313,315,256,257,257,258,260,261,263,263,264,264,265,265,265,266,266,266,267,267,267,268,268,268,269,269,270,271,271,272,273,273,275,276,256,257,259,260,261,262,264,265,267,268,270,272,274,276,277,278,280,282,284,286,288,289,291,294,298,301,304,308,310,313,317,319,256,258,259,260,262,263,265,267,269,270,272,274,276,278,280,282,284,286,288,290,292,294,297,299,302,305,309,312,313,315,316,317,256,258,259,261,262,264,266,268,270,272,274,276,278,279,281,283,286,287,289,291,294,295,296,298,301,304,309,312,316,320,324,327,256,258,259,260,262,264,266,268,269,271,272,272,273,273,273,274,274,274,275,275,276,276,276,277,277,278,279,279,280,281,282,283,256,258,259,259,261,262,264,266,268,270,272,274,275,276,279,280,281,283,285,287,288,289,291,294,297,299,302,304,307,311,314,317,
|
||||
lsc_rdsparam_gr=256,257,258,259,260,261,262,263,265,266,268,269,271,272,273,275,276,277,279,280,282,283,285,288,291,294,297,299,300,301,303,303,256,257,258,258,259,260,261,262,263,264,265,267,268,270,271,272,273,275,276,278,279,280,282,284,287,289,291,295,298,302,306,308,256,257,257,258,259,260,261,261,261,262,262,262,262,263,263,263,264,264,264,265,265,265,265,266,267,267,268,268,269,270,271,272,256,257,258,259,260,261,262,264,265,267,268,270,271,273,274,276,278,279,281,282,283,285,286,289,292,295,298,301,304,307,310,311,256,257,258,259,261,262,263,265,267,268,270,272,274,276,277,279,281,282,284,286,287,289,291,294,297,300,303,306,307,309,310,311,256,257,258,259,261,262,264,266,268,269,271,273,275,277,278,280,282,284,285,287,288,290,292,295,297,301,304,308,311,314,318,320,256,257,258,259,261,262,264,266,268,270,271,272,272,272,273,273,273,274,274,274,275,275,275,276,276,277,277,278,279,279,281,281,256,257,258,259,260,261,263,264,266,268,269,271,272,274,276,277,278,279,281,282,284,285,288,290,291,294,296,299,301,304,308,309,
|
||||
lsc_rdsparam_gb=257,258,259,260,261,262,263,264,266,267,268,270,272,273,275,276,277,279,280,281,282,285,287,290,292,295,297,301,302,303,305,305,257,258,258,259,260,261,262,263,264,265,266,267,269,270,271,273,274,276,278,279,280,282,284,285,287,289,292,295,299,303,308,308,257,257,257,258,259,260,261,263,263,263,264,264,264,264,265,265,265,266,266,266,266,267,267,268,268,269,269,270,271,271,273,273,257,258,258,259,260,262,263,264,266,267,269,271,272,273,275,276,278,279,281,282,283,285,287,289,292,295,298,300,304,306,310,311,257,258,258,259,261,262,264,265,267,269,271,273,274,276,278,279,281,283,284,286,287,289,291,293,296,299,303,306,307,309,310,311,257,258,258,260,262,263,265,266,268,270,272,274,276,278,279,281,283,285,286,287,288,290,292,294,297,301,304,308,311,314,318,320,257,258,258,260,262,263,265,267,269,270,271,272,272,273,273,273,274,274,274,274,275,275,275,276,276,277,278,278,279,280,281,282,257,258,258,260,261,262,264,265,267,268,270,272,273,275,277,278,279,281,283,284,286,287,289,291,293,295,297,300,303,306,310,313,
|
||||
lsc_rdsparam_b=256,258,259,260,261,262,264,265,267,269,270,272,273,275,276,278,279,281,283,285,286,288,289,292,295,299,301,305,309,312,314,315,256,258,259,259,260,261,263,264,266,267,268,269,270,272,274,275,277,278,280,281,283,284,287,289,291,294,296,299,303,308,313,316,256,258,258,259,260,261,263,264,265,265,266,266,266,267,267,267,268,268,268,269,269,269,270,271,271,272,273,273,274,275,277,277,256,258,259,260,261,263,265,266,268,270,272,274,276,278,279,281,282,284,285,287,289,291,294,298,301,305,310,313,317,320,323,325,256,258,259,261,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,299,302,306,310,315,319,320,322,324,324,256,258,259,261,263,264,266,268,271,273,275,277,279,281,283,285,286,288,290,293,294,297,300,303,307,311,316,319,324,329,335,337,256,259,259,261,263,264,266,268,270,273,276,277,277,278,278,279,279,279,280,280,280,281,281,282,282,283,284,284,285,286,288,288,256,259,259,260,262,263,264,266,268,270,272,274,275,277,278,280,282,284,285,286,288,289,291,293,296,299,300,303,306,310,314,316,
|
||||
lsc_adjust=0
|
||||
lsc_vepm=1024,0,1024,0,0
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1920x1080
|
||||
Virtual_F=1.000000
|
||||
Virtual_F_Contrast=1.000000
|
||||
Virtual_A=0.300000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
Virtual_F_Manual=0
|
||||
wdr_bghno=8
|
||||
wdr_bgvno=7
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=238
|
||||
wdr_bgvo=138
|
||||
wdr_bghskip=2
|
||||
wdr_bgvskip=4
|
||||
wdr_intensity_blend=0
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=16
|
||||
wdr_strength=0
|
||||
wdr_max_gain_ratio=48
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=0,1,770,522,526,274,276,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=2721,1545,1470,1405,1348,1298,1254,1215,1181,1151,1100,1060,1027,1000,978,959,943,930,909,893,881,871,858,849,842,838,834,832,830,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
|
||||
|
||||
[GM]
|
||||
#index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
#value = 6,12,18,25,31,37,43,49,71,92,106,117,135,150,163,174,185,195,205,215,224,232,236,240,242,244,246,248,249,251,253,255
|
||||
#VirtualType=2
|
||||
#VirtualGamma=23
|
||||
#VirtualBlack=0
|
||||
#VirtualContrast=100
|
||||
#VirtualControlNum=9
|
||||
#VirtualControls=0,0,191,38,315,61,516,93,840,122,1404,157,2330,196,3265,231,4096,255,
|
||||
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 128
|
||||
ce_th = 3
|
||||
ce_strength = 20
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,151,29,-11,-442,453,417,-426,8
|
||||
cv_1=77,151,29,-29,-477,507,385,-267,-118
|
||||
cv_2=77,151,29,-49,-566,616,406,-198,-208
|
||||
|
||||
|
||||
## default value
|
||||
#cv_0 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_1 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
#cv_2 = 76,150,30,-44,-84,128,128,-108,-20
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode =0
|
||||
ia_colorize_u =12
|
||||
ia_colorize_v =6
|
||||
ia_offset_u =0
|
||||
ia_offset_v =0
|
||||
ia_hue =0,0,0,0,0,0,0,0
|
||||
ia_saturation =128,128,128,128,128,128,128,128
|
||||
ia_poster_th =160,208,104,180
|
||||
ia_poster_y =90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 11
|
||||
const_k = 25205901
|
||||
target_y = 100
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=0
|
||||
auto_contrast=0
|
||||
#max ISP gain (125 ~ 65536)
|
||||
max_isp_gain=256
|
||||
|
||||
[IRIS]
|
||||
kp=5
|
||||
ki=1
|
||||
kd=2
|
||||
balance_ratio=512
|
||||
|
||||
[AWB]
|
||||
awb_th0=10
|
||||
awb_th1=235
|
||||
awb_th2=114
|
||||
awb_th3=299
|
||||
awb_th4=-62
|
||||
awb_th5=107
|
||||
awb_th6=59
|
||||
awb_th7=175
|
||||
awb_th8=56
|
||||
awb_th9=128
|
||||
awb_th10=50
|
||||
awb_th11=87
|
||||
awb_th12=255
|
||||
rb_ratio=83,172,224
|
||||
target_rg_ratio=1024,1024,1024
|
||||
target_bg_ratio=1024,1024,1024
|
||||
VirtualXPoints=73,64,59,55,52,80,67,60,52,46,0,0,0,0,0,130,107,93,80,70
|
||||
VirtualYPoints=117,137,167,191,212,82,93,111,123,135,0,0,0,0,0,70,82,99,116,133
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=150,129,169,180,205,206
|
||||
B_gain=198,231,176,166,145,145
|
||||
|
||||
outdoor_ev_th=92768
|
||||
|
||||
#grass region
|
||||
awb_roi1_enable=0
|
||||
awb_roi1_mode=1
|
||||
awb_roi1_th0=10
|
||||
awb_roi1_th1=200
|
||||
awb_roi1_th2=115
|
||||
awb_roi1_th3=204
|
||||
awb_roi1_th4=-13
|
||||
awb_roi1_th5=76
|
||||
awb_roi1_th6=60
|
||||
awb_roi1_th7=136
|
||||
awb_roi1_th8=39
|
||||
awb_roi1_th9=96
|
||||
awb_roi1_th10=0
|
||||
awb_roi1_th11=1023
|
||||
VirtualMode=0
|
||||
VirtualPoints=89,94,78,109,71,130,66,148,63,156,108,81,89,92,79,110,69,124,62,138,131,65,125,68,117,79,98,91,85,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=15,245,114,299,-62,107,59,175,56,128,55,87,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=150,129,169,180,205,206,198,231,176,166,145,145,86,178,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
|
||||
[AF]
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0 =35,33,31,29,28,28,28,28,28,26,24,23,22,23,23,23,21,19,18,17,16,19,19,19,12,12,11,11,10,16,16,16
|
||||
Cb_NoiseLevel_0=1,1,1,1
|
||||
Cr_NoiseLevel_0=1,1,1,1
|
||||
Y_NoiseLevel_1 =47,46,43,41,38,36,36,36,38,37,35,33,30,33,33,33,28,27,26,24,22,30,30,30,19,18,17,16,15,25,25,25
|
||||
Cb_NoiseLevel_1=45,36,27,18
|
||||
Cr_NoiseLevel_1=39,31,23,15
|
||||
Y_NoiseLevel_2 =37,52,104,159,197,197,197,197,35,48,93,145,188,188,188,188,33,45,86,138,186,186,186,186,30,41,78,134,185,185,185,185
|
||||
Cb_NoiseLevel_2=197,157,118,78
|
||||
Cr_NoiseLevel_2=191,152,114,76
|
||||
Y_NoiseLevel_3 =118,153,132,96,79,75,54,33,80,106,92,64,51,49,33,17,44,62,51,33,24,23,12,1,7,15,11,1,1,1,1,1
|
||||
Cb_NoiseLevel_3=270,216,162,108
|
||||
Cr_NoiseLevel_3=270,216,162,108
|
||||
Y_NoiseLevel_4 =434,483,483,411,331,321,292,261,353,392,392,337,276,269,247,224,274,300,300,263,223,218,203,189,195,208,208,189,170,166,160,152
|
||||
Cb_NoiseLevel_4=259,207,155,103
|
||||
Cr_NoiseLevel_4=259,207,155,103
|
||||
Y_NoiseLevel_5 =649,716,716,618,509,496,456,414,539,592,592,518,435,425,395,364,432,467,467,417,363,356,335,316,325,342,342,316,291,285,277,266
|
||||
Cb_NoiseLevel_5=664,531,398,265
|
||||
Cr_NoiseLevel_5=664,531,398,265
|
||||
Y_NoiseLevel_6 =649,716,716,618,509,496,456,414,539,592,592,518,435,425,395,364,432,467,467,417,363,356,335,316,325,342,342,316,291,285,277,266
|
||||
Cb_NoiseLevel_6=664,531,398,265
|
||||
Cr_NoiseLevel_6=664,531,398,265
|
||||
Y_NoiseLevel_7 =649,716,716,618,509,496,456,414,539,592,592,518,435,425,395,364,432,467,467,417,363,356,335,316,325,342,342,316,291,285,277,266
|
||||
Cb_NoiseLevel_7=664,531,398,265
|
||||
Cr_NoiseLevel_7=664,531,398,265
|
||||
Y_NoiseLevel_8 =649,716,716,618,509,496,456,414,539,592,592,518,435,425,395,364,432,467,467,417,363,356,335,316,325,342,342,316,291,285,277,266
|
||||
Cb_NoiseLevel_8=664,531,398,265
|
||||
Cr_NoiseLevel_8=664,531,398,265
|
||||
|
||||
[SHARPEN]
|
||||
BrightHaloClip=128
|
||||
DarkHaloClip=128
|
||||
PeakingGain=16
|
|
@ -0,0 +1,276 @@
|
|||
[INFO]
|
||||
ISP=ISP328
|
||||
version = 1.0.0.0
|
||||
sensor = SOIH61
|
||||
lens =
|
||||
|
||||
[USER]
|
||||
brightness =128
|
||||
contrast =128
|
||||
sharpness =128
|
||||
hue=128
|
||||
saturation =128
|
||||
denoise =100
|
||||
adjust_blc =1
|
||||
adjust_nr =1
|
||||
adjust_gamma =1
|
||||
adjust_sat =1
|
||||
adjust_ce = 1
|
||||
adjust_cc = 1
|
||||
|
||||
[ADJ]
|
||||
gain_th =96,128,256,512,1024,1984,1984,1984,1984
|
||||
gamma_idx =4,4,4,4,4,4,4,4,4
|
||||
nl_dpc =50,130,140,150,175,175,175,175,175
|
||||
nl_raw =6,10,20,40,42,62,62,62,62
|
||||
nl_ctk =6,10,20,40,42,42,42,42,42
|
||||
nl_ci =6,10,20,30,42,42,42,42,42
|
||||
ce_lvl =20,20,10,10,10,5,5,5,5
|
||||
sp_lvl =120,120,110,100,95,85,85,85,85
|
||||
sp_nr_lvl=0,0,0,0,0,0,0,0,0
|
||||
sp_clip_lvl=0,0,0,0,0,0,0,0,0
|
||||
saturation_lvl =128,128,128,110,90,60,60,60,60
|
||||
tmnr_lvl =16,16,20,32,48,64,64,64,64
|
||||
blc_r=-64,-64,-64,-64,-64,-64,-64,-64,-64
|
||||
blc_g=-64,-64,-64,-64,-64,-64,-64,-64,-64
|
||||
blc_b=-64,-64,-64,-64,-64,-64,-64,-64,-64
|
||||
|
||||
[DC]
|
||||
wdr_kn_x = 1024, 2048, 3040, 4000
|
||||
wdr_kn_y = 64, 128, 4096, 65535
|
||||
wdr_sl = 1, 1, 64, 1024
|
||||
|
||||
[CO]
|
||||
## order: R, Gr, Gb, B
|
||||
ob =-64, -64, -64, -64
|
||||
|
||||
[LS]
|
||||
enable=0
|
||||
lsc_segrds =14
|
||||
lsc_ctr_r =482, 589
|
||||
lsc_ctr_gr =482, 589
|
||||
lsc_ctr_gb =482, 589
|
||||
lsc_ctr_b =482, 589
|
||||
lsc_mxtn_r=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gr=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_gb=175,372,418,156,115,566,504,129
|
||||
lsc_mxtn_b=175,372,418,156,115,566,504,129
|
||||
lsc_rdsparam_r=256,256,268,259,274,263,281,267,288,271,293,276,298,279,303,284,307,288,311,293,316,296,322,299,323,303,324,307,324,308,325,309,264,258,271,261,277,265,285,269,289,273,296,278,300,282,306,286,309,291,313,294,320,298,322,301,324,305,324,308,325,308,326,310,256,256,267,260,272,263,278,268,284,272,289,275,294,279,299,285,302,288,306,291,310,293,315,297,319,299,323,302,326,305,329,307,263,258,270,261,275,265,282,271,286,274,292,277,297,282,301,287,304,290,309,292,313,296,317,298,321,301,325,303,327,306,330,310,256,256,262,264,266,271,272,274,278,275,281,276,282,276,283,278,283,278,284,279,285,280,286,281,286,281,287,282,288,283,288,283,259,261,265,268,269,273,276,274,280,275,281,276,282,277,283,278,284,279,285,279,285,280,286,281,287,282,287,282,288,283,290,284,256,256,259,268,263,274,267,281,272,286,277,292,279,295,283,300,287,304,292,307,294,311,297,317,300,322,303,326,306,327,309,327,258,263,261,271,265,277,270,283,274,289,279,294,280,298,284,302,290,306,293,308,295,315,299,319,302,325,304,327,307,327,312,328,
|
||||
lsc_rdsparam_gr=256,256,263,259,267,262,271,265,275,268,279,272,281,276,284,280,286,283,291,286,294,289,295,293,296,295,297,297,297,299,297,299,261,258,265,260,269,263,273,266,277,270,280,274,283,278,285,281,289,285,293,288,295,291,296,294,296,296,297,298,297,299,298,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,281,280,285,284,289,285,293,288,296,290,298,292,301,295,302,297,303,300,260,259,263,261,267,265,272,267,276,271,279,275,280,278,283,282,287,285,291,287,294,289,298,291,300,293,302,296,302,298,304,301,256,256,260,263,263,267,268,269,272,269,275,270,276,271,276,271,277,272,278,273,278,273,279,274,280,274,280,275,281,275,281,275,259,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,275,273,278,276,280,278,283,281,286,285,290,287,294,291,296,294,298,296,302,298,302,301,302,258,260,260,266,263,270,267,274,271,276,275,279,277,282,279,284,283,288,286,292,289,296,292,297,295,300,297,302,301,302,302,303,
|
||||
lsc_rdsparam_gb=256,256,263,259,267,261,272,265,275,268,279,272,281,276,284,280,287,283,292,287,294,289,297,293,298,295,298,297,298,299,299,299,260,258,265,260,269,263,274,266,277,270,280,274,283,278,285,281,289,286,293,288,296,291,297,294,298,296,298,298,298,299,300,300,256,256,262,260,265,263,270,266,274,269,278,273,280,276,282,280,285,284,289,286,293,288,298,290,300,292,301,295,302,297,304,300,259,259,263,261,267,265,272,267,276,271,279,275,281,278,283,282,287,285,291,287,295,289,298,291,300,293,302,296,303,298,306,302,256,256,260,263,263,267,267,269,272,269,275,270,276,271,276,271,277,272,278,273,279,273,279,274,280,274,280,275,281,275,281,275,258,260,261,265,265,268,270,269,274,270,276,270,276,271,277,272,277,272,278,273,279,274,280,274,280,274,280,275,281,275,282,276,256,256,259,263,261,268,265,272,269,276,273,278,276,280,278,283,281,286,285,290,288,294,290,297,294,298,296,301,298,302,301,302,258,260,260,266,263,270,267,274,271,277,275,279,277,282,279,284,283,288,287,292,289,296,292,297,295,300,297,302,299,302,302,303,
|
||||
lsc_rdsparam_b=256,256,263,257,264,258,269,261,274,264,277,264,278,267,279,268,280,267,282,269,287,272,290,274,291,276,292,278,292,280,293,280,261,256,263,257,267,259,272,263,276,264,278,265,278,268,280,267,281,268,285,270,288,273,291,275,292,277,292,280,293,280,294,282,256,256,261,256,262,258,268,262,272,264,276,265,278,267,279,267,280,267,283,268,284,271,284,273,287,275,291,277,294,280,297,282,260,256,261,257,265,260,270,263,274,264,277,266,277,267,280,267,280,268,283,269,284,272,285,274,289,276,292,279,297,280,301,284,256,256,259,260,260,263,264,264,268,265,269,265,270,265,270,265,270,265,270,265,271,266,271,267,271,267,272,268,272,268,273,268,258,258,259,262,262,264,266,264,269,265,270,265,270,265,270,265,270,266,271,266,271,266,271,267,271,268,272,268,273,268,274,269,256,256,258,262,259,265,262,269,265,273,268,276,271,276,272,278,272,277,273,277,274,280,274,285,276,288,278,291,280,290,283,290,257,260,258,263,260,267,263,272,267,275,270,276,272,277,271,277,271,278,274,279,274,281,275,287,277,291,279,290,281,290,285,290,
|
||||
|
||||
[DRC]
|
||||
Virtual_Size=1280x720
|
||||
Virtual_F=1.000000
|
||||
Virtual_A=0.200000
|
||||
Virtual_A_Min=0.200000
|
||||
Virtual_PreGamma=100
|
||||
Virtual_PG_Black=0
|
||||
Virtual_PG_Contrast=100
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=5
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=192
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=0
|
||||
wdr_F_index=0,1,2,3,1028,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_F_value=256,512,1024,2048,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3840,3968,4096,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_A_index=768,520,524,272,274,20,21,22,23,24,25,26,27,28,29,286
|
||||
wdr_A_value=4032,3848,3579,3269,2958,2667,2410,2189,1844,1601,1429,1305,1213,1144,1092,1050,991,951,924,904,878,862,852,845,840,836,833,831,829,828,827,826
|
||||
wdr_PG_index=0,769,9,10,1035,0,0,0,0,0,0,0,0,0,0,0
|
||||
wdr_PG_value=256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,0,0,0,0,0
|
||||
wdr_intensity_blend=5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth=255
|
||||
wdr_max_gain_ratio = 48
|
||||
wdr_strength=0
|
||||
|
||||
[DRC_WDR]
|
||||
wdr_bghno=5
|
||||
wdr_bgvno=4
|
||||
wdr_bgw2=8
|
||||
wdr_bgh2=8
|
||||
wdr_bgho=256
|
||||
wdr_bgvo=155
|
||||
wdr_bghskip=0
|
||||
wdr_bgvskip=1
|
||||
wdr_PG_index = 0,769,9,10,1035,28,29,30,31,18,19,20,21,22,23,792
|
||||
wdr_PG_value = 256,288,319,351,383,415,447,479,511,1023,2047,2176,2304,2432,2560,2688,2816,2944,3072,3200,3328,3456,3584,3712,3839,3967,4095,4210,8362,16609,32993,65534
|
||||
wdr_F_index = 0,1025,785,537,285,28,29,30,31,28,29,30,31,0,0,0
|
||||
wdr_F_value = 2233,2273,2310,2346,2380,2412,2443,2472,2500,2527,2553,2579,2603,2626,2649,2671,2692,2770,2841,2905,2963,3017,3067,3113,3157,3307,3431,3535,3625,3900,4096,65535
|
||||
wdr_A_index = 768,520,524,272,274,20,21,22,23,24,25,26,27,28,29,30
|
||||
wdr_A_value = 3752,3142,2541,2042,1652,1352,1122,944,693,530,418,339,281,237,202,175,136,108,89,74,54,41,33,27,22,19,16,14,12,11,10,127
|
||||
wdr_qcoef1 = 2364
|
||||
wdr_qcoef2 = 1831
|
||||
wdr_qcoef3 = 1548
|
||||
wdr_intensity_blend = 5
|
||||
wdr_intensity_localmax=0
|
||||
wdr_intensity_varth = 255
|
||||
wdr_max_gain_ratio = 64
|
||||
wdr_strength = 128
|
||||
|
||||
[GM]
|
||||
VirtualType=2
|
||||
VirtualGamma=23
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=11
|
||||
VirtualControls=0,0,158,39,307,63,564,93,881,120,1415,152,2345,193,2889,210,3443,228,3720,236,4096,246,
|
||||
index=0x200,0x104,0x206,0xa,0xb,0xc,0xd,0xe,0x10f,0x111,0x13,0x14,0x15,0x16,0x17,0x318
|
||||
value=22,36,47,57,74,89,95,101,107,112,130,145,158,170,181,186,192,196,200,208,216,224,232,240,241,241,242,243,244,245,245,246
|
||||
|
||||
[GM_WDR]
|
||||
index =0x300,0x108,0x10a,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x116,0x218,0x21c
|
||||
value =1,4,6,8,11,14,17,20,35,52,68,82,109,128,145,161,176,190,202,213,223,232,236,240,242,244,246,248,250,251,253,255
|
||||
VirtualType=2
|
||||
VirtualGamma=18
|
||||
VirtualBlack=0
|
||||
VirtualContrast=100
|
||||
VirtualControlNum=8
|
||||
VirtualControls=0,0,277,24,516,51,792,85,1136,118,2139,181,3351,234,4096,255,
|
||||
|
||||
[CE]
|
||||
ce_bghno_0 = 16
|
||||
ce_bgvno_0 = 9
|
||||
ce_bghno_1 = 5
|
||||
ce_bgvno_1 = 3
|
||||
ce_blend = 128
|
||||
ce_th = 3
|
||||
ce_strength = 20
|
||||
|
||||
[CI]
|
||||
edge_dth = 20
|
||||
freq_th = 320
|
||||
freq_blend = 16
|
||||
|
||||
[CV]
|
||||
## order: D65 CWF A
|
||||
cv_0=77,151,29,-43,-279,322,292,-282,-10
|
||||
cv_1=77,151,29,-43,-256,299,317,-247,-70
|
||||
cv_2=77,151,29,-50,-356,406,280,-170,-110
|
||||
|
||||
[IA]
|
||||
ia_contrast_mode=0
|
||||
ia_colorize_u=12
|
||||
ia_colorize_v=6
|
||||
ia_offset_u=0
|
||||
ia_offset_v=0
|
||||
ia_hue=0,0,0,0,0,0,0,0
|
||||
ia_saturation=128,128,128,128,128,128,128,128
|
||||
ia_poster_th=160,208,104,180
|
||||
ia_poster_y=90,173,214,107
|
||||
|
||||
[CS]
|
||||
cs_i1 =12
|
||||
cs_i2 =64
|
||||
cs_i3 =90
|
||||
cs_i4 =135
|
||||
cs_o0 =36
|
||||
cs_o1 =55
|
||||
cs_o4 =54
|
||||
cs_slope0 =403
|
||||
cs_slope1 =980
|
||||
cs_slope3 =1139
|
||||
cs_slope4 =114
|
||||
cs_cb_th =36
|
||||
cs_cr_th =18
|
||||
|
||||
[AE]
|
||||
## f_number table:
|
||||
# 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
#-------------------------------------------------------------------------------------
|
||||
# 1.0 1.1 1.2 1.3 1.4 1.5 1.7 1.8 2.0 2.2 2.5 2.8 3.2 3.5 4.0 4.5 5.0 5.6 6.3 7.1 8.0
|
||||
f_number = 11
|
||||
const_k = 25205901
|
||||
target_y = 125
|
||||
#speed 0 ~ 128
|
||||
speed=128
|
||||
#converge_th 5~20
|
||||
converge_th=10
|
||||
#delay 0 ~ 5
|
||||
delay = 2
|
||||
#auto_drc 0 ~ 10 (strength)
|
||||
auto_drc=0
|
||||
auto_contrast=0
|
||||
#max ISP gain (125 ~ 65536)
|
||||
max_isp_gain=256
|
||||
|
||||
[IRIS]
|
||||
|
||||
[AWB]
|
||||
awb_th0=5
|
||||
awb_th1=245
|
||||
awb_th2=84
|
||||
awb_th3=278
|
||||
awb_th4=-64
|
||||
awb_th5=109
|
||||
awb_th6=37
|
||||
awb_th7=163
|
||||
awb_th8=18
|
||||
awb_th9=119
|
||||
awb_th10=22
|
||||
awb_th11=87
|
||||
awb_th12=255
|
||||
rb_ratio=97,186,331
|
||||
target_rg_ratio=1024,1024,1024
|
||||
target_bg_ratio=990,990,990
|
||||
VirtualMode=0
|
||||
VirtualPoints=73,81,66,96,63,114,59,130,58,144,86,58,71,68,65,79,57,88,51,96,129,46,101,58,94,68,81,79,71,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
VirtualThs=15,245,84,278,-64,109,40,163,45,119,31,75,255,10,245,120,220,-79,139,51,178,26,146,18,77,255,
|
||||
VirutalGainRatio=174,149,199,210,230,241,234,274,205,194,177,169,93,156,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
OffsetThs=20,0,-24,107,46,24,4,39,31,-36,17,14,0,
|
||||
#scene mode:=AUTO, INCANDESCENT_LIGHT, SUN_LIGHT, CLOUDY, COOL_LIGHT, SUN_SHADE
|
||||
R_gain=174,149,199,210,230,241
|
||||
B_gain=234,274,205,194,177,169
|
||||
outdoor_ev_th=65536
|
||||
|
||||
[AF]
|
||||
|
||||
[MRNR]
|
||||
G1_Y_Freq=30,22,19,16
|
||||
G1_Y_Tone=13,19,19,13
|
||||
G1_C=26,26,26,26
|
||||
G2_Y=144
|
||||
G2_C=144
|
||||
Y_Nr_Str=8,8,8,8
|
||||
C_Nr_Str=5,5,5,5
|
||||
Y_NoiseLevel_0 =1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
Cb_NoiseLevel_0=1,1,1,1
|
||||
Cr_NoiseLevel_0=1,1,1,1
|
||||
Y_NoiseLevel_1 =46,61,63,48,30,25,20,18,34,45,47,36,22,18,15,13,23,30,31,24,15,12,10,9,11,15,15,12,7,6,5,4
|
||||
Cb_NoiseLevel_1=1,1,1,1
|
||||
Cr_NoiseLevel_1=1,1,1,1
|
||||
Y_NoiseLevel_2 =51,68,101,121,137,152,139,111,40,54,80,96,109,121,111,88,30,40,60,72,82,91,83,66,20,27,40,48,54,60,55,44
|
||||
Cb_NoiseLevel_2=1,1,1,1
|
||||
Cr_NoiseLevel_2=1,1,1,1
|
||||
Y_NoiseLevel_3 =57,88,95,75,61,44,30,20,42,66,71,56,45,33,22,15,28,44,47,37,30,22,15,10,14,22,23,18,15,11,7,5
|
||||
Cb_NoiseLevel_3=96,72,48,24
|
||||
Cr_NoiseLevel_3=96,72,48,24
|
||||
Y_NoiseLevel_4 =126,350,430,475,504,525,541,533,70,246,344,380,403,420,432,426,21,78,258,285,302,315,324,319,1,32,171,190,201,210,216,213
|
||||
Cb_NoiseLevel_4=299,259,206,138
|
||||
Cr_NoiseLevel_4=235,205,159,97
|
||||
Y_NoiseLevel_5 =126,350,430,475,504,525,541,533,70,246,344,380,403,420,432,426,21,78,258,285,302,315,324,319,1,32,171,190,201,210,216,213
|
||||
Cb_NoiseLevel_5=299,259,206,138
|
||||
Cr_NoiseLevel_5=235,205,159,97
|
||||
Y_NoiseLevel_6 =126,350,430,475,504,525,541,533,70,246,344,380,403,420,432,426,21,78,258,285,302,315,324,319,1,32,171,190,201,210,216,213
|
||||
Cb_NoiseLevel_6=299,259,206,138
|
||||
Cr_NoiseLevel_6=235,205,159,97
|
||||
Y_NoiseLevel_7 =126,350,430,475,504,525,541,533,70,246,344,380,403,420,432,426,21,78,258,285,302,315,324,319,1,32,171,190,201,210,216,213
|
||||
Cb_NoiseLevel_7=299,259,206,138
|
||||
Cr_NoiseLevel_7=235,205,159,97
|
||||
Y_NoiseLevel_8 =126,350,430,475,504,525,541,533,70,246,344,380,403,420,432,426,21,78,258,285,302,315,324,319,1,32,171,190,201,210,216,213
|
||||
Cb_NoiseLevel_8=299,259,206,138
|
||||
Cr_NoiseLevel_8=235,205,159,97
|
||||
|
||||
[SHARPEN]
|
||||
BrightHaloClip=128
|
||||
DarkHaloClip=128
|
||||
PeakingGain=16
|
||||
[CC]
|
||||
cc_0=256,0,0,0,256,0,0,0,256
|
||||
cc_1=256,0,0,0,256,0,0,0,256
|
||||
cc_2=256,0,0,0,256,0,0,0,256
|
||||
enable=0
|
Loading…
Reference in New Issue