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.

[参考译文] TDA3:通过网络传输用户 Bayer 视频、而不是使用传感器流

Guru**** 2589265 points


请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/634186/tda3-user-bayer-video-over-network-instead-of-using-sensor-stream

器件型号:TDA3

您好!

我尝试使用 network_rx.exe 工具通过 网络发送 Bayer 视频(1280x720)、并处理帧、而不是使用传感器流。

该流水线看起来像、

NullSource (IPU1_1) -> MyAlgo (DSP1)-> IssM2mIsp -> IssM2mSimcop -> Display_Video

GrpxSrc -> Display_GRPX

我已相应地修改了用例文件。

当用例被绑定并且 Bayer 文件通过网络发送时、我将收到"error:Server Connect Failed"消息。
是否需要为此用例设置更多参数?

此致、
Navinprasha.rr

NullSource 参数是  

pPrm->outQueInfo.numCh = 1;

pPrm->timerPeriodMilliSecs=100;

对于(Chid = 0;Chid < pPrm->outQueInfo.numCh;Chid++)
{
pPrm->channelParams[Chid].numBuffers = 2;

pChInfo =&pPrm->outQueInfo.chInfo[chId];

pChInfo->flags = System_Link_Ch_Info_Set_Flag_Data_Format (pChInfo->flags、
System_DF_Bayer_GRBG);
pChInfo->flags = System_Link_Ch_Info_Set_Flag_Buf_Type (pChInfo->flags、
System_buffer_type_video_frame);
pChInfo->width = capting_sensor_width;
pChInfo->height = capting_sensor_height;
pChInfo->startx = 0;
pChInfo->startY = 0;
pChInfo->pitch[0]= SystemUtils_align (pChInfo->width、32);
pChInfo->pitch[1]= SystemUtils_align (pChInfo->width、32);

}

pPrm->networkServerPort = network_RX_Server_port;

pPrm->dataRxMode = NULSRC_LINK_DATA_RX_MODE_NETWORK; 

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    您好、Navin、

    我已将您的问题转交给一位专家征求意见。

    此致、
    Yordan
  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Navin、

    当前空源链接中不支持 Bayer 视频格式(system_DF_Bayer_GRBG)。 它支持 SYSTEM_DF_YUV420SP_UV 和 SYSTEM_DF_YUV422I_YUYV 视频格式。 您可以在 system_buffer_type_video_frame 下的\vision_sdk\links_fw\src\rtos\links_common\nullSrc\nullSrcLink_networkRx.c 中添加 Bayer 支持 。

    如有更多信息、请告诉我。 需要。

    此致、

    Prasad