Camx-Dump Raw Frames

这篇具有很好参考价值的文章主要介绍了Camx-Dump Raw Frames。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

1.dump eeprom data

vendor/qcom/proprietary/camx/src/settings/common/camxsettings.xml

两种方式dump数据:
一. Push a configuration file to/vendor/etc/camera/camxoverridesettings.txt
adb shell "echo dumpSensorEEPROMData=TRUE >> /vendor/etc/camera/camxoverridesettings.txt
二. Set Android properties
adb shell setprop vendor.debug.camera.dumpSensorEEPROMData 1
拍张照片后,数据存储在 /data/vendor/camera文章来源地址https://www.toymoban.com/news/detail-703205.html

2. dump 3A信息

camera/camxoverridesettings.txt
enable3ADebugData=TRUE    //打开 3A EXIF 信息
dumpSensorEEPROMData=TRUE
enableTuningMetadata=TRUE  //General switch to enable tuning data dump. See size settings to set a new size or use default

3.dump Raw

3.1 Sensor Raw Dump


autoImageDump=TRUE 
autoImageDumpMask=1 
offlineImageDumpOnly=FALSE 
autoInputImageDumpMask=0x1
reprocessDump=0
autoImageDumpIFEoutputPortMask=0xFB8
autoImageDump=TRUE 
autoImageDumpMask=0x1
offlineImageDumpOnly=FALSE 
reprocessDump=FALSE
autoImageDumpIFEoutputPortMask=0xFB8

3.2 Sensor Raw dump (dump snapshot raw only)


autoImageDump=TRUE 
autoImageDumpMask=0x4
offlineImageDumpOnly=FALSE 
reprocessDump=TRUE
autoInputImageDumpMask=0x4
autoImageDumpBPSoutputPortMask=0
/data/vendor/camera # ls
PrecisionFlashData00.bin
camera_config_dump.bin
coredump
p[ZSLSnapshotYUVHAL]_req[1]_batch[0]_BPS[0]_[in]_port[0]_w[4208]_h[3120]_20230423_154333_218623.RAWMIPI10
p[ZSLSnapshotYUVHAL]_req[2]_batch[0]_BPS[0]_[in]_port[0]_w[4208]_h[3120]_20230423_154348_221985.RAWMIPI10

autoImageDump
BOOl 类型
1: enable dump
0: disable dump
autoImageDumpMask
                      No dumps                                      = 0x0
                      All output ports for IFE                      = 0x1
                      All output ports for IPE                      = 0x2
                      All output ports for BPS                      = 0x4
                      All JPEG output ports for all JPEG nodes      = 0x8
                      All output ports for FDHw                     = 0x10
                      All output ports for LRME                     = 0x20
                      All output ports for RANSAC                   = 0x40
                      All output ports for all ChiNodes             = 0x80
                      All output ports for CVP                      = 0x100
                      All output ports for TFE                      = 0x200
                      All output ports for OPE                      = 0x400
                      All output ports for QSAT                     = 0x800
                      All other nodes not explicitly listed above   = 0x40000000

offlineImageDumpOnly
Bool 类型.
Dumps offline processing output images only for all enabled nodes
以下文件都有对应判断:
		camxopenode.cpp
		camxipenode.cpp
		camxbpsnode.cpp	

autoInputImageDumpMask:
ImageDumpType Will limit dumps to only the specified nodes
No dumps = 0x0
All input ports for IFE = 0x1
All input ports for IPE = 0x2
All input ports for BPS = 0x4
All JPEG input ports for all JPEG nodes = 0x8
All input ports for FDHw = 0x10
All input ports for LRME = 0x20
All input ports for RANSAC = 0x40
All input ports for all ChiNodes = 0x80
All input ports for CVP = 0x100
All other nodes not explicitly listed above = 0x40000000

autoImageDumpIFEoutputPortMask:
               IFE:
                    IFEOutputPortFull            = 0x1;
                    IFEOutputPortDS4             = 0x2;
                    IFEOutputPortDS16            = 0x4;
                    IFEOutputPortCAMIFRaw        = 0x8;
                    IFEOutputPortLSCRaw          = 0x10;
                    IFEOutputPortGTMRaw          = 0x20;
                    IFEOutputPortFD              = 0x40;
                    IFEOutputPortPDAF            = 0x80;
                    IFEOutputPortRDI0            = 0x100;
                    IFEOutputPortRDI1            = 0x200;
                    IFEOutputPortRDI2            = 0x400;
                    IFEOutputPortRDI3            = 0x800;
                    IFEOutputPortStatsRS         = 0x1000;
                    IFEOutputPortStatsCS         = 0x2000;
                    IFEOutputPortStatsIHIST      = 0x8000;
                    IFEOutputPortStatsBHIST      = 0x10000;
                    IFEOutputPortStatsHDRBE      = 0x20000;
                    IFEOutputPortStatsHDRBHIST   = 0x40000;
                    IFEOutputPortStatsTLBG       = 0x80000;
                    IFEOutputPortStatsBF         = 0x100000;
                    IFEOutputPortStatsAWBBG      = 0x200000;
                    IFEOutputPortDisplayFull     = 0x400000;
                    IFEOutputPortDisplayDS4      = 0x800000;
                    IFEOutputPortDisplayDS16     = 0x1000000;
                    IFEOutputPortStatsDualPD     = 0x2000000;
                    ALLports                     = 0x3FFBFFF
                    AllPixelOutput               = 0x1C00047
                    AllRawOutput                 = 0xFB8
                    AllRDIOutput                 = 0xF00
                    AllStatsOutput               = 0x3FB000

reprocessDump:
Dumps reprocess input image and metadata
将重新处理的输入图像和元数据进行转储。

到了这里,关于Camx-Dump Raw Frames的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 基于CAMX大气臭氧来源解析模拟与臭氧成因分析实践技术应用

    目录 专题一、大气臭氧污染来源及成因分析技术讲解;CAMx模式初识及臭氧来源解析模拟本地案例配置说明 专题二、CAMx模式编译安装及空气质量模拟案例配置 专题三、CAMx扩展和探测工具用法 专题四、大气臭氧污染来源解析案例实践与操作 专题五、大气臭氧污染模拟敏感性

    2023年04月22日
    浏览(29)
  • 最新CAMx-Python融合技术应用与大气污染来源解析方法应用

    随着我国经济快速发展,我国面临着日益严重的大气污染问题。大气污染是工农业生产、生活、交通、城市化等方面人为活动的综合结果,同时气象因素是控制大气污染的关键自然因素。大气污染问题既是局部、当地的,也是区域的,甚至是全球的。本地的污染物排放除了对

    2023年04月11日
    浏览(62)
  • Learning to Segment Rigid Motions from Two Frames 代码复现

    https://github.com/gengshan-y/rigidmask 1.拉取代码 2.创建conda环境,修改rigidmask.yml DCNv2和ngransac 1.下载数据集和模型 KITTI-SF: https://s3.eu-central-1.amazonaws.com/avg-kitti/data_scene_flow.zip Sintel rigidity map : http://files.is.tue.mpg.de/jwulff/mrflow/sintel_rigiditymaps.zip 2.测试一下

    2024年02月06日
    浏览(31)
  • React笔记[tsx]-解决Property ‘frames‘ does not exist on type ‘Readonly<{}>‘

    浏览器报错如下: 编辑器是这样的: 原因是React.Componentany少了后面的any,改成这样即可:

    2024年02月12日
    浏览(34)
  • [足式机器人]Part4 南科大高等机器人控制课 Ch05 Instantaneous Velocity of Moving Frames

    本文仅供学习使用 本文参考: B站:CLEAR_LAB 笔者带更新-运动学 课程主讲教师: Prof. Wei Zhang Given Frame trajectory [ T ] ( t ) = ( [ Q ] ( t ) , R ⃗ p ( t ) ) left[ T right] left( t right) =left( left[ Q right] left( t right) ,vec{R}_pleft( t right) right) [ T ] ( t ) = ( [ Q ] ( t ) , R p ​ ( t ) ) wrt { O } l

    2024年02月05日
    浏览(33)
  • PC-NeRF: Parent-Child Neural Radiance Fields Using Sparse LiDAR Frames in Autonomous

    第二个工作,大家有时间可以去github点个小星星啦,and 希望大家不要喷啦,感谢感谢 Large-scale 3D scene reconstruction and novel view synthesis are vital for autonomous vehicles, especially utilizing temporally sparse LiDAR frames. However, conventional explicit representations remain a significant bottleneck towards representin

    2024年04月11日
    浏览(21)
  • PS Raw中文增效工具Camera Raw 16

    Camera Raw 16 for mac(PS Raw增效工具)的功能特色包括强大的图像调整工具 。例如,它提供白平衡、曝光、对比度、饱和度等调整选项,帮助用户优化图像的色彩和细节。此外,Camera Raw 16的界面简洁易用,用户可以快速上手。同时,它还提供了丰富的自定义选项,可以根据用户

    2024年02月05日
    浏览(34)
  • 已解决frozen importlib._bootstrap“, line 2 in _call_with_frames_removed ImportError: DLL lo

    已解决frozen importlib._bootstrap\\\", line 2 in _call_with_frames_removed ImportError: DLL lo 下滑查看解决方法 frozen importlib._bootstrap\\\", line 2 in _call_with_frames_removed ImportError: DLL lo 这个错误通常是由于导入模块时出现问题引起的。 下滑查看解决方法 下面是一些可能的解决方法: 确保你的Python环境

    2024年02月09日
    浏览(23)
  • RAW图像详解及使用Python读取raw格式图像并显示

    RAW在英文中的解释是未处理的、自然状态的,这也就是RAW文件的真谛。RAW图像就是CMOS或者CCD图像感应器将捕捉到 的光源信号转化为数字信号的原始数据,因此RAW文件也被人们称之为“数码底片”。RAW格式的全称是RAW Image Format,记 录了由相机拍摄所产生的一些元数据,如IS

    2024年02月15日
    浏览(26)
  • 解决frozen importlib._bootstrap“, line 2 in _call_with_frames_removed ImportError: DLL lo(.dll文件简介)

    目录 解决\\\"frozen importlib._bootstrap\\\", line 2 in _call_with_frames_removed ImportError: DLL lo(.dll文件简介) 引言 错误原因 .dll文件简介 解决方法 方法一:手动将.dll文件复制到可执行文件所在目录 方法二:使用--add-binary参数重新打包可执行文件 方法三:使用虚拟环境和依赖管理工具 结论 实

    2024年02月02日
    浏览(27)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包