Questions about the dataloader and missing files
Hello @calmevtime, thank you for publishing the code. When I was trying to reproduce your code, I found the dataloader was not able to run properly, and some important functions are missing. For example, there seems to be a "dct_resize.py" file which is imported in almost all the files in datasets folder, but the "dct_resize.py" is nowhere to be found. Also, the "block_composition" function is indispensable for upsampleDCT, but the function is also missing with the "dct_resize.py".
I would be very grateful if you could upload the "dct_resize.py" file with the "block_composition" function. Looking forward to hearing from you.
Following up on this too.
From Issue #36, kaix90 mentions that block_composition is deprecated. However dct_resize.py is still required for function such as resize_dct. Any info on this missing file would be helpful :)
Especially if folk have figured out what the input/output variables are specifying
.../datasets/cvtransforms.py:
from datasets.dct_resize.resize_dct_opencv import resize_dct
...
class UpsampleDCT(object):
...
y, P, Q = resize_dct(y, self.L, self.M, T=self.T, A1=self.A1, A2=self.A2,
debug=self.debug, new=True)