[docs]defapply(self,width,height):"""Apply resizing on an image. Args: width: new width to the image. height: new height to the image. Returns: an image resized. """returncv.resize(self._frame.apply(),(width,height),interpolation=cv.INTER_LINEAR_EXACT)