-
Notifications
You must be signed in to change notification settings - Fork 48
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
image size problem #1
Comments
@zmh0510 Thanks for your comment! Yes, currently it only supports 63x63 input. We have tried a simple extension to support arbitrary size input. Specifically, we crop a large image into 63x63 patches and let each patch vote for a tool, then conducts the tool with most votes on the whole image. I plan to release this feature after updating training code. |
OK!looking forward to it, especially the training code! |
@yuke93 It looks very interesting. Before see this issue I think in the following simple idea: 1 - Generate many patches sharing (in some way) common pixels. In your experience, do you think that this could work? If it is plausible, how can I choose "the best" output image for the patch? I see in the output something like:
but I am unsure about the naming convention. Regards |
Hi @hernan3009 , I have tried some similar interpolation approaches as you said but the results are sometimes not pleasant because there is not any constraint about the selected toolchains between adjacent patches. When the selected toolchains are different, the interpolated image might look strange, and the PSNR is not as good as the voting method as I described above. The number after '_in_' stands for the indices of sequentially selected tools. Please see the table below:
|
Hello, it is a exciting work, I want to know whether the test stage have the ability of arbitrary size input. |
Hi @lvzhengyi0204, I haven't added this feature yet. I will implement the heuristic method, as discussed above, to support arbitrary size input, by the end of this week. |
Dear all, Thanks for your advice and comments. Now we support arbitrary input size while inference. Put your images in
|
Thank you! Works here under Python3. |
Thank you very much! It helps a lot for my research work. |
I am very glad that you like it 😃 |
I really liked this project. I recently faced an issue while using this project in Google Colab. |
I also have the same question, hope to get a reply! Thanks a lot! |
hello, it is a wonderful project! But i am wondering that i must input a fixed image to the project? say 6363? How can i input a 600480 image to the project? thanks a lot !
The text was updated successfully, but these errors were encountered: