We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Pytorch-UNet/predict.py
Lines 15 to 19 in 21d7850
How can predict_img process a batch of images. For example, full_imgs = np.random.rand(batch_size, 3, 112, 112).
full_imgs = np.random.rand(batch_size, 3, 112, 112)
The text was updated successfully, but these errors were encountered:
Fix issue milesial#496: Predicting batch of image arrays
1462b46
add `predict_imgs()` function in predict.py to support predicting batch of image arrays.
No branches or pull requests
Pytorch-UNet/predict.py
Lines 15 to 19 in 21d7850
This function seems to predict a PIL image a time.
How can predict_img process a batch of images. For example,
full_imgs = np.random.rand(batch_size, 3, 112, 112)
.The text was updated successfully, but these errors were encountered: