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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi in the repo https://github.com/huochaitiantang/pytorch-deep-image-matting/
the alpha prediction loss is calculated only for pixels that are unknown in trimap
""" wi = torch.zeros(trimap.shape) wi[trimap == 128] = 1. t_wi = wi.cuda() unknown_region_size = t_wi.sum() """
while training are you doing something similar or is it for all pixels?
Sorry couldn't find this in paper or code
The text was updated successfully, but these errors were encountered:
Also do you take average of pixels for computing loss or is it just sum of differences of alpha for each pixel ?
Sorry, something went wrong.
No branches or pull requests
Hi in the repo https://github.com/huochaitiantang/pytorch-deep-image-matting/
the alpha prediction loss is calculated only for pixels that are unknown in trimap
"""
wi = torch.zeros(trimap.shape)
wi[trimap == 128] = 1.
t_wi = wi.cuda()
unknown_region_size = t_wi.sum()
"""
while training are you doing something similar or is it for all pixels?
Sorry couldn't find this in paper or code
The text was updated successfully, but these errors were encountered: