You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.
error: The subcommand 'generate' wasn't recognized
Did you mean 'generate'?
If you believe you received this message in error, try re-running with 'texture-synthesis -- generate'
USAGE:
texture-synthesis --inpaint <inpaint> --out-size <out-size> --out <output-path> --sample-masks <sample-masks>...
Is this the expected behavior? How should I use sample-masks option? (there is no example in the README).
The help says:
--sample-masks <sample-masks>...
Path(s) to sample masks used to determine which pixels in an example can be used as inputs during
generation, any example that doesn't have a mask, or uses `ALL`, will consider all pixels in the example. If
`IGNORE` is specified, then the example image won't be used at all, which is useful with `--inpaint`.
I'm precisely trying to use sample-masks in combination with inpaint but can not manage to do it.
The text was updated successfully, but these errors were encountered:
This is a bug in the argument parser we are using, you need to make it so that the last option before the generate subcommand only takes a single value, so if you swap -o output.png with --samples-masks IGNORE mask.png and get rid of the -- it should work.
I tried swapping the options to get rid of the parsing problem, but it runs forever using two CPU cores at 100%. It's seems to be a bug, but I do not know how to fix it. Can you reproduce it? I tried both with the 0.7.1 release binary and a self build binary. I can not address #86 before fixing this.
When running:
I get:
Is this the expected behavior? How should I use
sample-masks
option? (there is no example in the README).The help says:
I'm precisely trying to use
sample-masks
in combination withinpaint
but can not manage to do it.The text was updated successfully, but these errors were encountered: