-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
how to adjust selection #300
Comments
you could try two options:
(1) add a post-process like cascadePSP (
https://github.com/hkchengrex/CascadePSP), but it may cost a bit more time.
(2) add a matting process like rmbg did https://github.com/danielgatis/rembg
…On Mon, Apr 4, 2022 at 2:52 PM schwarzwals ***@***.***> wrote:
first of all, you guys did an amazing job ! i'm shocked about the accuracy
of this U2NET !
I would like to know if i can adjust the selection or somehow fine tune it
so it doesn't bite into the person in my situation(see the picture attached)
[image: Screen Shot 2022-04-04 at 22 48 50]
<https://user-images.githubusercontent.com/46636486/161630001-3ee7778d-39c1-44fb-9372-c8b30a5e18ca.png>
`# processing
image = transform.resize(img, (320, 320), mode='constant')
tmpImg = np.zeros((image.shape[0], image.shape[1], 3))
tmpImg[:, :, 0] = (image[:, :, 0]-0.485)/0.229
tmpImg[:, :, 1] = (image[:, :, 1]-0.456)/0.224
tmpImg[:, :, 2] = (image[:, :, 2]-0.406)/0.225
tmpImg = tmpImg.transpose((2, 0, 1))
tmpImg = np.expand_dims(tmpImg, 0)
image = torch.from_numpy(tmpImg)
image = image.type(torch.FloatTensor)
image = Variable(image)
d1, d2, d3, d4, d5, d6, d7 = net(image)
pred = d1[:, 0, :, :]
ma = torch.max(pred)
mi = torch.min(pred)
dn = (pred-mi)/(ma-mi)
pred = dn`
—
Reply to this email directly, view it on GitHub
<#300>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADSGORPRKEG7K37LT27ZFN3VDNJA3ANCNFSM5SQW256Q>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
--
Xuebin Qin
PhD
Department of Computing Science
University of Alberta, Edmonton, AB, Canada
Homepage: https://xuebinqin.github.io/
|
so there's no way to leave more space around the person ? we talk about few pixels... |
To leave more space, you could try "dilation" operations. The dilation size
and times can be easily configured. To speed up the process, you can
convert the model to ONNX, tensorRT. Generatting only mask won't help that
much to reduce the time costs.
…On Wed, Apr 6, 2022 at 6:39 AM schwarzwals ***@***.***> wrote:
so there's no way to leave more space around the person ? we talk about
few pixels...
also...if I need to generate only a mask...would that speed up the process
? and how am I doing ? a short example would help.
Thank you very much again !
—
Reply to this email directly, view it on GitHub
<#300 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADSGORIZUGD655YX6SKJGKLVDWAXZANCNFSM5SQW256Q>
.
You are receiving this because you commented.Message ID:
***@***.***>
--
Xuebin Qin
PhD
Department of Computing Science
University of Alberta, Edmonton, AB, Canada
Homepage: https://xuebinqin.github.io/
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
first of all, you guys did an amazing job ! i'm shocked about the accuracy of this U2NET !
I would like to know if i can adjust the selection or somehow fine tune it so it doesn't bite into the person in my situation(see the picture attached)
`
# processing
image = transform.resize(img, (320, 320), mode='constant')
The text was updated successfully, but these errors were encountered: