Intel® Integrated Performance Primitives (Intel® IPP) Developer Guide and Reference

ID 790148
Date 3/22/2024
Public
Document Table of Contents

Nearest Neighbor Interpolation

This is the fastest and least accurate interpolation mode. The pixel value in the destination image is set to the value of the source image pixel closest to the point

(xS,yS):D(xD,yD) = S(round(xS), round(yS)).

To use the nearest neighbor interpolation, set the interpolation parameter to IPPI_INTER_NN or use the functions with the Nearest suffix (pass interpolation=ippNearest to GetSize functions).