Skip to content
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

Proposed score based cap #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ var (
OutputSize int
Mode int
Workers int
Max float64
V, VV bool
)

Expand All @@ -48,6 +49,7 @@ func init() {
flag.IntVar(&OutputSize, "s", 1024, "output image size")
flag.IntVar(&Mode, "m", 1, "0=combo 1=triangle 2=rect 3=ellipse 4=circle 5=rotatedrect")
flag.IntVar(&Workers, "j", 0, "number of parallel workers (default uses all cores)")
flag.Float64Var(&Max, "ma", 0, "target score to stop adding primitives (default 0)")
flag.BoolVar(&V, "v", false, "verbose")
flag.BoolVar(&VV, "vv", false, "very verbose")
}
Expand Down Expand Up @@ -124,7 +126,7 @@ func main() {
for _, output := range Outputs {
ext := strings.ToLower(filepath.Ext(output))
saveFrames := strings.Contains(output, "%") && ext != ".gif"
if saveFrames || i == Number {
if saveFrames || i == Number || model.Score <= Max {
path := output
if saveFrames {
path = fmt.Sprintf(output, i)
Expand All @@ -143,6 +145,7 @@ func main() {
frames := model.Frames(0.001)
check(primitive.SaveGIFImageMagick(path, frames, 50, 250))
}
if model.Score <= Max { return }
}
}
}
Expand Down