Closed jeahun00 closed 1 month ago
IDCT/IFFT can transform the frequency domain to the spatial domain. Through network learning, when we employ IDCT, the convolutional part will undertake the process of converting s2f to match the IDCT's f2s operation. In our experiments, this proves to be an efficient and viable approach.
Thank you for your response. I still have some doubts, so I would like to ask more questions.
It is possible to transform from the frequency domain to the spatial domain using IDCT/IFFT. I understood that through network training, it is possible to induce a transformation that is symmetric to IDCT, that is, a substitution from the spatial domain to the frequency domain.
Is my understanding correct?
Yes
Thank you for your kind response! 👍
First of all, thank you for sharing your wonderful work. 🔥
While reviewing this code, I have a question about the FSM block. In the FSM block, as shown in the figure below, it passes through the DCT.
I understand that the
conv_dct_0
function corresponds to the DCT block in the figure. However, the function does not seem to include the FFT or cosine operation, which is typically used to implement the DCT (transforming into the frequency domain). I'm curious if it's possible to implement the DCT using only convolution operations.