Converter: added Apply super resolution? (y/n skip:n) : , Enhance details by applying DCSCN network.

refactorings
This commit is contained in:
iperov 2019-03-28 21:50:27 +04:00
parent 4683c362ac
commit 85c01e3b4a
12 changed files with 271 additions and 77 deletions

9
utils/pickle_utils.py Normal file
View file

@ -0,0 +1,9 @@
class AntiPickler():
def __init__(self, obj):
self.obj = obj
def __getstate__(self):
return dict()
def __setstate__(self, d):
self.__dict__.update(d)