主题中讨论的其他器件:TDA4VL、TDA4VM
工具与软件:
您好、TI 团队
您能告诉我 j7122s 上的每秒百万像素数吗?
我们想在 j7122s 上使用2个2.5MP 摄像头, VPAC 可以支持?
我们在 sdk10.0中检查源代码 ,VPAC 不支持保存和恢复功能。
它似乎只是可以支持一个摄像头为 VPAC ,请帮我检查!!

此致
Sungenben
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
您好、Brijesh
请告诉我们如何通过多摄像头保存 VPAC 参数?
在 TDA4VL 和 TDA4VM 中 ,我们使用 如下的源代码
但在 J72SS 中,它不支持,您能告诉我们我们可以在两台摄像机中保留不同的 VPAC 参数吗
//来源
静态空 vhwaVissGlbceRestoreCtx (const tivxVpacVissObj * vissObj)
{
#if!defined (SOC_AM62A)&&!defined (SOC_J722S)
#ifdef VHWA_VISS_GLBCE_CTX_SAVE_RESTORE_ENABLE
#ifdef VHWA_VISS_GLBCE_CTX_SAVE_RESTORE_USE_DMA
int32_t status;
#endif
APP_UDMA_COPY_1D_PRM_t PRMS;
如果((NULL!= vissObj)&&(0u!= vissObj->ctx_mem_phys_ptr)
{
prms.src_addr = vissObj->ctx_mem_phys_ptr;
prms.dest_addr = vissObj->glbceStatInfo.addr;
prms.length = vissObj->glbceStatInfo.size;
#ifdef VHWA_VISS_GLBCE_CTX_SAVE_RESTORE_USE_DMA
Status = appUdmaCopy1D (NULL、&PRMS);
if (0!= status)
{
vx_print (vx_zone_error、"Failed to restore context!!\n");
}
#else
memcpy ((void*)(uint32_t) prms.dest_addr、(void*)(uint32_t) PRMs.src_addr、PRMs.length);
#endif
}
#endif
#endif
}
此致
Sungenben