Hi,
When I used custom video test interpolate.py I found that the video size had changed.The input size is(960,540) and the output size is (960,536).This is where I find the problem
downscale = int(downscale * 8) resizes = 8 *( H // downscale), 8 *( W // downscale)
So I changed the code like this
resizes = (8 * H // downscale), (8 * W // downscale).
But it has an error.
How can I fix this?
Hi, When I used custom video test interpolate.py I found that the video size had changed.The input size is(960,540) and the output size is (960,536).This is where I find the problem
downscale = int(downscale * 8) resizes = 8 *( H // downscale), 8 *( W // downscale)
So I changed the code like thisresizes = (8 * H // downscale), (8 * W // downscale)
. But it has an error. How can I fix this?