1
0

organizing + useless instructions

This commit is contained in:
2022-05-04 09:31:21 +02:00
parent bf134744b6
commit 1d827f6ea1
4 changed files with 191 additions and 185 deletions

View File

@ -1,8 +1,6 @@
package main
import (
_ "image/jpeg"
_ "image/png"
"io/ioutil"
"log"
"math/rand"
@ -21,9 +19,6 @@ func main() {
rand.Seed(ConfigRegister.Seed)
log.Println("Seed :", ConfigRegister.Seed)
// pool of workers unionizing, ready to blend a new picture using the power of friendship
var pool blendWorkerPool
// launch main blending routine
pool.BlendImagesMain()
BlendImagesMain()
}