-
Notifications
You must be signed in to change notification settings - Fork 181
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 my own data #58
Comments
There's a tradeoff that you need to make for the accuracy that you want and the computational resources that you want to spend on that. More pixels means more resources (memory-wise and time-wise), but you also get higher accuracy. In other words it is up to you ;) |
ok and there is way to prevent from scaling the image? |
Not through a parameter or something. You could set the parameter which scales to 600 at the moment to 512 or whatever your images already are. It will then scale to 512 but they already are 512x512 pixels so nothing will change. If you really want to disable scaling you'd have to modify the code a bit to do so. |
thank you. |
I know that the network resize shortest side to 600pix
In my data set i get something like 5000x5000pix and i want to crop to fixed size
There is advice for wich window size to choose?
Something like 512x512? or 600x600 is better?
Thank alot
The text was updated successfully, but these errors were encountered: