IanYeung / RealVSR

Dataset and Code for ICCV 2021 paper "Real-world Video Super-resolution: A Benchmark Dataset and A Decomposition based Learning Scheme"
Apache License 2.0
115 stars 7 forks source link

about the data imgsize #3

Open dzz416 opened 2 years ago

dzz416 commented 2 years ago

Sorry, I don’t understand very well. Why are the LR and HR images the same size? If I want to use your data to train a super-resolution network, I should enter a small LR and a large HR. How can I get a small LR in the real world?

IanYeung commented 2 years ago

Sorry, I don’t understand very well. Why are the LR and HR images the same size? If I want to use your data to train a super-resolution network, I should enter a small LR and a large HR. How can I get a small LR in the real world?

Similar dataset construction methods could be adopted. But you may need to modify the registration algorithm. Or you can try directly downsample the current LR.

dzz416 commented 2 years ago

Sorry, I don’t understand very well. Why are the LR and HR images the same size? If I want to use your data to train a super-resolution network, I should enter a small LR and a large HR. How can I get a small LR in the real world?

Similar dataset construction methods could be adopted. But you may need to modify the registration algorithm. Or you can try directly downsample the current LR.

Logically speaking, the size of the LR obtained by shooting should be small. Did you upsample it or downsample the HR? Why do you do that?

IanYeung commented 2 years ago

Sorry, I don’t understand very well. Why are the LR and HR images the same size? If I want to use your data to train a super-resolution network, I should enter a small LR and a large HR. How can I get a small LR in the real world?

Similar dataset construction methods could be adopted. But you may need to modify the registration algorithm. Or you can try directly downsample the current LR.

Logically speaking, the size of the LR obtained by shooting should be small. Did you upsample it or downsample the HR? Why do you do that?

Yes, traditionally super-resolution will increase pixels, in our case, maybe it is more closer to "digital zooming". The LR and HR have the same size because we adopt the registration algorithm in RealSR.

dzz416 commented 2 years ago

Sorry, I don’t understand very well. Why are the LR and HR images the same size? If I want to use your data to train a super-resolution network, I should enter a small LR and a large HR. How can I get a small LR in the real world?

Similar dataset construction methods could be adopted. But you may need to modify the registration algorithm. Or you can try directly downsample the current LR.

Logically speaking, the size of the LR obtained by shooting should be small. Did you upsample it or downsample the HR? Why do you do that?

Yes, traditionally super-resolution will increase pixels, in our case, maybe it is more closer to "digital zooming". The LR and HR have the same size because we adopt the registration algorithm in RealSR.

If registration is not performed, shouldn’t it be closer to the actual situation if the part corresponding to the HR in the captured LR image (large field of view) is directly cropped as an LR image? Do you still have the original data?

IanYeung commented 2 years ago

Sorry, I don’t understand very well. Why are the LR and HR images the same size? If I want to use your data to train a super-resolution network, I should enter a small LR and a large HR. How can I get a small LR in the real world?

Similar dataset construction methods could be adopted. But you may need to modify the registration algorithm. Or you can try directly downsample the current LR.

Logically speaking, the size of the LR obtained by shooting should be small. Did you upsample it or downsample the HR? Why do you do that?

Yes, traditionally super-resolution will increase pixels, in our case, maybe it is more closer to "digital zooming". The LR and HR have the same size because we adopt the registration algorithm in RealSR.

If registration is not performed, shouldn’t it be closer to the actual situation if the part corresponding to the HR in the captured LR image (large field of view) is directly cropped as an LR image? Do you still have the original data?

Maybe. But with more serious misalignment problem. Yes I have the original data and maybe I will provide them later.

dzz416 commented 2 years ago

Ok,thank you for reply