-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I find that you update the code,does this code fix "All the pixels are invalid in estimation Laplacian noise!!!"problem? #37
Comments
I test latest clone and nothing change! |
I come up with the same problem. Have you solved it? |
I come up with the same problem. |
I changed to Python 3.5.7 and rebuild pyflow with it. It seems to have solved the problem. |
In dataset.py,when the neighbor frame does not exist (line 35 and line 66), the same image as input will be appended into the array 'neigbor' (line 37 and line 68). Then pyflow will be applied to a pair of same images, which leads to the indicated problem. The simplest solution is to remove the first and last a few image file names in the list of training or evaluation files (such as Vid4/foliage.txt). The number of image files to be removed depends on the value of nFrames. |
Maybe because the original image is down-sampled first by the factor of upscale_factor and fed into the model as input. Then the model will output the upscaled image which has the same size as the original image. Please check the code in dataset.py, on line 22 and 49. |
yes the issue of size related to these. |
Hello, can you tell me more? Best to explain the drawing |
This is my solution:
|
No description provided.
The text was updated successfully, but these errors were encountered: