Closed lalithnag closed 6 years ago
It's simply, it is not finding the file, because it suppose another directory structure:
parser.add_argument('--test_dir', dest='test_dir', default='./data/test', help='folder containing original and noisy folders to be denoised')
So, either you add --test_dir=./ or you put your data inside ./data/test/noisy and ./data/test/original
Thanks. My video though is already noisy - so I've just extracted the frames to a noisy folder. In this case what would be in the original folder?
Just copy your noisy files in the original folder. The algorithm needs original and noisy just to compute the PSNR, so the output values will be computed between denoised and noisy instead of denoised and original.
Hi,
While executing the following command:
$ python main.py --ckpt_dir=./ckpt_vidcnn-g --use_gpu=0
I get the following error:
However, if I execute:
$ sh denoise.sh
It runs normally:
The video that I want to denoise, is extracted into frames in the following directory: ..\VidCNN---Learning-Blind-Video-Denoising\noisy
Please guide me in executing the program through the script main.py
Thank you!