I used OpenCV to resize
an image (1400*750, U8C1). It took about 10ms, which is a bit slow.
I found that Intel IPPI
can precompute the ResizeFilter
and then perform the resize
operation much faster. When the same resize
operation is performed the next time, the calculation of ResizeFilter
can be avoided.
So, OpenVC can precompute the ResizeFilter
to speed up resize operations like Intel IPPI.
I did not find any information about the ResizeFilter in OpenCV document.
林中化人 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1