fix bench_jpeg, change benchy and xray format.
This commit is contained in:
parent
84e86a8c30
commit
4b3e205445
3 changed files with 13 additions and 24 deletions
|
@ -1,19 +1,17 @@
|
||||||
import benchy, jpegsuite, pixie/fileformats/jpeg, stb_image/read as stbi,
|
import benchy, pixie/fileformats/jpeg, jpegsuite, os, stb_image/read as stbi
|
||||||
strformat, os
|
|
||||||
|
|
||||||
for file in jpegSuiteFiles:
|
for file in jpegSuiteFiles:
|
||||||
let data = readFile(file)
|
let data = readFile(file)
|
||||||
var name = file.splitPath.tail
|
|
||||||
name.setLen(min(name.len, 22))
|
timeIt "pixie " & file.splitPath.tail & " decode", 10:
|
||||||
timeIt &"pixie {name} decode":
|
|
||||||
discard decodeJpeg(data)
|
discard decodeJpeg(data)
|
||||||
|
|
||||||
block:
|
block:
|
||||||
for file in jpegSuiteFiles:
|
for file in jpegSuiteFiles:
|
||||||
let data = readFile(file)
|
let data = readFile(file)
|
||||||
var name = file.splitPath.tail
|
var name = file.splitPath.tail
|
||||||
name.setLen(min(name.len, 22))
|
|
||||||
timeIt &"stb {name} decode":
|
timeIt "stb " & file.splitPath.tail & " decode", 10:
|
||||||
var width, height, channels: int
|
var width, height, channels: int
|
||||||
discard loadFromMemory(
|
discard loadFromMemory(
|
||||||
cast[seq[byte]](data),
|
cast[seq[byte]](data),
|
||||||
|
|
|
@ -279,7 +279,7 @@ block:
|
||||||
image.draw(strokeImage)
|
image.draw(strokeImage)
|
||||||
|
|
||||||
image.xray("tests/images/fillOptimization.png")
|
image.xray("tests/images/fillOptimization.png")
|
||||||
# doAssert image[10, 10] == rgbx(255, 127, 63, 255)
|
doAssert image[10, 10] == rgbx(255, 127, 63, 255)
|
||||||
|
|
||||||
block:
|
block:
|
||||||
let a = newImage(100, 100)
|
let a = newImage(100, 100)
|
||||||
|
|
|
@ -1,26 +1,17 @@
|
||||||
import pixie, strformat, os, strutils
|
import pixie, strformat, os, strutils
|
||||||
|
|
||||||
proc makeDirs*(dirs: string) =
|
|
||||||
var path = ""
|
|
||||||
for dir in dirs.split("/"):
|
|
||||||
path.add dir
|
|
||||||
if not dirExists(path):
|
|
||||||
echo "mkdir ", path
|
|
||||||
createDir(path)
|
|
||||||
path.add "/"
|
|
||||||
|
|
||||||
proc xray*(image: Image, masterPath: string) =
|
proc xray*(image: Image, masterPath: string) =
|
||||||
let
|
let
|
||||||
imagePath = "tmp/generated/" & masterPath
|
generatedPath = "tmp/generated/" & masterPath
|
||||||
xRayPath = "tmp/xray/" & masterPath
|
xrayPath = "tmp/xray/" & masterPath
|
||||||
makeDirs(imagePath.splitPath.head)
|
createDir(generatedPath.splitPath.head)
|
||||||
makeDirs(xRayPath.splitPath.head)
|
createDir(xrayPath.splitPath.head)
|
||||||
image.writeFile(imagePath)
|
image.writeFile(generatedPath)
|
||||||
let
|
let
|
||||||
master = readImage(masterPath)
|
master = readImage(masterPath)
|
||||||
(score, xRay) = diff(image, master)
|
(score, xRay) = diff(image, master)
|
||||||
xRay.writeFile(xRayPath)
|
xRay.writeFile(xrayPath)
|
||||||
echo &"diff {masterPath} -> {score:0.6f}"
|
echo &"xray {masterPath} -> {score:0.6f}"
|
||||||
|
|
||||||
proc xray*(mask: Mask, masterPath: string) =
|
proc xray*(mask: Mask, masterPath: string) =
|
||||||
mask.newImage.xray(masterPath)
|
mask.newImage.xray(masterPath)
|
||||||
|
|
Loading…
Reference in a new issue