Tool/software:
Dear sir,
I'm working on J722S board with sdk 10. My application pipeline is scaler->Preproc->TIDL->Post-proc.
Unlike for J721E, it is known that we cant use pre and post-processing kernels which are part of img_proc kernels for c66 core in vision_apps.
So we have created custom kernels for both. We have developed a custom kernel for Nv12 to RGB planar conversion.It gives the expected output.But when it is given as input to TIDL node, not getting expected output.
Please not that we have taken the empirical formula for conversion.
int R = (298 * C + 409 * E + 128) >> 8;
int G = (298 * C - 100 * D - 208 * E + 128) >> 8;
int B = (298 * C + 516 * D + 128) >> 8;
Is the idea proper and will there be any difference in the output of pre-processing present in img_proc and our simple conversion from NV12->RGBPLanar?
Request you to help me with this issue!
Thanks,
Seetharama Raju.