大神们,能通过sample_venc只编码一帧YUV成jpeg么,conf文件应该怎么配?
C
cruise33 发布的最佳帖子
-
回复: 能在uboot阶段初始化pwm么?
@lijinlin001 uboot的dts当时没太留意,功能开启是在uboot/common/main.c里配置的,大概是这样:
#include <pwm.h> void pwm_init(void) { int pwm1; pwm1 = pwm_request(1, "pwm1"); pwm_config(pwm1, 500000, 500000); pwm_set_polarity(pwm1, PWM_POLARITY_INVERSED); pwm_enable(pwm1); }
具体的接口函数用法看uboot的pwm.h
cruise33 发布的最新帖子
-
回复: 请教下rt-media的切换彩色/黑白模式
这样就可以了
int ISP_RGB_GREY(int chnID, int Grey) { RTIspCtrlAttr isp_ctrl_attr; if(Grey == 0){ isp_ctrl_attr.isp_attr_cfg.cfg_id = RT_ISP_CTRL_IR_STATUS; isp_ctrl_attr.isp_attr_cfg.ir_status = 0; } else{ isp_ctrl_attr.isp_attr_cfg.cfg_id = RT_ISP_CTRL_IR_STATUS; isp_ctrl_attr.isp_attr_cfg.ir_status = 1; } AWVideoInput_SetIspAttrCfg(chnID, &isp_ctrl_attr); usleep(500*1000); return 0; }
-
请教下rt-media的切换彩色/黑白模式
通过调用 AWVideoInput_SetIrParam 函数来切换黑白模式是正常的,但是再切回彩色模式,却不起作用,yuv仍然是黑白的,请问是哪里的问题呢?我看demo_video_in.c也是这么用的
/* 切换 彩色/黑白 模式 */ static RTIrParam pIrParam = {0}; if(res.faces->isLive == 0){ if(pIrParam.grey == 0){ printf("set IR\n"); pIrParam.grey = 1; pIrParam.ir_on = 1; pIrParam.ir_flash_on = 1; int ret = AWVideoInput_SetIrParam(config->channelId, &pIrParam); if(ret < 0) printf("set IR error\n"); } }else{ if(pIrParam.grey == 1 && frame_cnt == 50){ printf("set RGB\n"); pIrParam.grey = 0; pIrParam.ir_on = 0; pIrParam.ir_flash_on = 0; int ret = AWVideoInput_SetIrParam(config->channelId, &pIrParam); if(ret < 0) printf("set RGB error\n"); } }
-
请问有配置QSPI屏幕相关配置教程么
有个圆屏通过QSPI来通信的,请问有相关的配置教程么,看LCD开发指南,只有RGB接口、MIPI-DSI接口、I8080接口、LVDS接口
-
请问v853有没自动进入烧录的功能
用V831的时候,可以在sys_config.fex增加auto_fel = 1,用PhoenixSuit烧录时,插上USB就会弹出是否更新的提示, 用PhoenixUSBPro插上就能自动烧录,853好像不行了?
-
请教下v831有加大音量的软件增益功能吗
我看851上有AW_MPI_AO_SetSoftVolume的函数,可以通过软件增益加大音量的输出。但是在831上找不到这个接口,请问有类似的方法或加大音量的其他软件方式么。
-
回复: 请教下v85x量产卡的问题
卡烧录需要在uboot阶段完成,但是快启流程是BROM-BOOT0-Kernel,跳过了uboot阶段,所以USB烧录的时候需要通过物理的方式进入烧录,但卡烧录用同样的方式也不能进入烧录,所以要怎样操作呢?
-
有V85x量化int16精度比较好的参数组合么
如题
我这有份参数精度一般的
pegasus quantize --model 'xxx.json' --model-data 'xxx.data' --model-quantize 'xxx.quantize' --batch-size 1 --iterations 216 --with-input-meta 'xxx_inputmeta.yml' --quantizer 'dynamic_fixed_point' --qtype 'int16' --rebuild --algorithm 'kl_divergence' --divergence-first-quantize-bits 4 --compute-entropy
-
请问libexif能修改jpg文件的创建日期和修改日期吗
需求:
采集的图像编码保存为jpg后,文件属性日期是空白的。当前设备无法联网,但接了GPS,即有时间信息可利用,想通过libexif给jpg文件增加EXIF信息,从而能显示创建日期和修改日期。实践代码如下:
char date_time[20]; // 拍摄时间 sprintf(date_time, "%s", "2023:12:01 11:04:12"); // EXIF_TAG_SUB_SEC_TIME EXIF_TAG_SUB_SEC_TIME_ORIGINAL EXIF_TAG_SUB_SEC_TIME_DIGITIZED 毫秒时间不写入 entry = create_tag(exif, EXIF_IFD_EXIF, EXIF_TAG_DATE_TIME_ORIGINAL, sizeof(date_time), EXIF_FORMAT_ASCII); memcpy(entry->data, date_time, sizeof(date_time)); // 数字化时间 entry = create_tag(exif, EXIF_IFD_EXIF, EXIF_TAG_DATE_TIME_DIGITIZED, sizeof(date_time), EXIF_FORMAT_ASCII); memcpy(entry->data, date_time, sizeof(date_time)); //上次修改的时间 entry = create_tag(exif, EXIF_IFD_0, EXIF_TAG_DATE_TIME, sizeof(date_time), EXIF_FORMAT_ASCII); memcpy(entry->data, date_time, sizeof(date_time));
结果:
如图拍摄日期修改成功了,但创建日期和修改日期还是空白,有大神研究过这块吗