Hey,
I get interlaced frames of an IP camera. So, I want to deinterlace them. The IPP has various functions to deinterlace the frame.
How can I find out what function I should use? Or all do the same thing but with different qualities?
If all do the same thing with different qualities. Which one has better quality and which is the fastest?
I will deinterlace each frame separately.
About how to use, I've only one doubt.
For example, in the legacy samples I found:
ippStatus = ippiDeinterlaceFilterTriangle_8u_C1R(pSrc, iSrcStep, pDst, iDstStep, size, 128, IPP_LOWER | IPP_UPPER | IPP_CENTER);
I understand how use, it's ok, but I don't understand this:
size.width = pSrcPlane->m_size.width * pSrcPlane->m_iSamples * pSrcPlane->m_iSampleSize;
size.height = pSrcPlane->m_size.height;
The "size.width" calculation...
Is this can work: size.width = size.width * step; ????
Best regards,