Apply Context-Adaptive Interpolator

This commit is contained in:
2024-03-29 00:06:13 +01:00
parent 9a3cfd7ba1
commit dfe2540c02
3 changed files with 27 additions and 12 deletions

View File

@@ -7,4 +7,7 @@ def randomGaussianImage(scale, size):
def showImageWithMatplotlib(npArray):
plt.imshow(npArray)
plt.show()
plt.show()
def toPilImage(npArray):
return Image.fromarray(npArray)