-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from pixlise/development
v4 Patch
- Loading branch information
Showing
114 changed files
with
589 additions
and
352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,69 @@ | ||
package coreg | ||
|
||
import "fmt" | ||
import ( | ||
"fmt" | ||
"log" | ||
|
||
"github.com/pixlise/core/v4/core/utils" | ||
protos "github.com/pixlise/core/v4/generated-protos" | ||
"google.golang.org/protobuf/encoding/protojson" | ||
) | ||
|
||
func printWarpXform(xform *protos.ImageMatchTransform, name string, err error) { | ||
fmt.Printf("%v|%v\n", name, err) | ||
|
||
if b, err := protojson.Marshal(xform); err != nil { | ||
log.Fatalln(err) | ||
} else { | ||
// Proto isn't deterministic, so we read as JSON and write it back out again | ||
fmt.Printf("%v\n", utils.MakeDeterministicJSON(b, false)) | ||
} | ||
} | ||
|
||
func Example_readWarpedImageTransform() { | ||
xform, name, err := readWarpedImageTransform("warped-zoom_4.478153138946561-win_519_40_1232_1183-SN100D0-SC3_0921_0748732957_027RAS_N0450000SRLC11373_0000LMJ01-A.png") | ||
fmt.Printf("%+v|%v|%v\n", xform, name, err) | ||
printWarpXform(readWarpedImageTransform("warped-zoom_4.478153138946561-win_519_40_1232_1183-SN100D0-SC3_0921_0748732957_027RAS_N0450000SRLC11373_0000LMJ01-A.png")) | ||
|
||
xform, name, err = readWarpedImageTransform("warped-zoom_1.1359177671479777-win_216_186_167_183-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01-A.png") | ||
fmt.Printf("%+v|%v|%v\n", xform, name, err) | ||
printWarpXform(readWarpedImageTransform("warped-zoom_1.1359177671479777-win_216_186_167_183-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01-A.png")) | ||
|
||
xform, name, err = readWarpedImageTransform("warped-zoom_4.478153138946561-win_519_40_1232_1183-SN100D0-SC3_0921_0748732957_027RAS_N0450000SRLC11373_0000LMJ01.png") | ||
fmt.Printf("%+v|%v|%v\n", xform, name, err) | ||
printWarpXform(readWarpedImageTransform("warped-zoom_4.478153138946561-win_519_40_1232_1183-SN100D0-SC3_0921_0748732957_027RAS_N0450000SRLC11373_0000LMJ01.png")) | ||
|
||
xform, name, err = readWarpedImageTransform("warped-zoom_1.1359177671479777-win_216_186_167_183-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01.png") | ||
fmt.Printf("%+v|%v|%v\n", xform, name, err) | ||
printWarpXform(readWarpedImageTransform("warped-zoom_1.1359177671479777-win_216_186_167_183-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01.png")) | ||
|
||
xform, name, err = readWarpedImageTransform("warped-win_216_186_167_183-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01.png") | ||
fmt.Printf("%+v|%v|%v\n", xform, name, err) | ||
printWarpXform(readWarpedImageTransform("warped-win_216_186_167_183-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01.png")) | ||
|
||
xform, name, err = readWarpedImageTransform("warped-zoom_4.478153138946561-win_519_40_1232_1183-SN100D0-SC3_0921_0748732957_027RASS_N0450000SRLC11373_0000LMJ01.png") | ||
fmt.Printf("%+v|%v|%v\n", xform, name, err) | ||
printWarpXform(readWarpedImageTransform("warped-zoom_4.478153138946561-win_519_40_1232_1183-SN100D0-SC3_0921_0748732957_027RASS_N0450000SRLC11373_0000LMJ01.png")) | ||
|
||
// Output: | ||
// xOffset:40 yOffset:519 xScale:4.478153 yScale:4.478153|coreg-40_519-SC3_0921_0748732957_027RAS_N0450000SRLC11373_0000LMJ01-A.png|<nil> | ||
// xOffset:186 yOffset:216 xScale:1.1359178 yScale:1.1359178|coreg-186_216-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01-A.png|<nil> | ||
// xOffset:40 yOffset:519 xScale:4.478153 yScale:4.478153|coreg-40_519-SC3_0921_0748732957_027RAS_N0450000SRLC11373_0000LMJ01.png|<nil> | ||
// xOffset:186 yOffset:216 xScale:1.1359178 yScale:1.1359178|coreg-186_216-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01.png|<nil> | ||
// <nil>||Warped image name does not have expected components | ||
// <nil>||Failed to find GDS file name section in image name: SC3_0921_0748732957_027RASS_N0450000SRLC11373_0000LMJ01. Error: Failed to parse meta from file name | ||
// coreg-40_519-SC3_0921_0748732957_027RAS_N0450000SRLC11373_0000LMJ01-A.png|<nil> | ||
// { | ||
// "xOffset": 40, | ||
// "xScale": 4.478153, | ||
// "yOffset": 519, | ||
// "yScale": 4.478153 | ||
// } | ||
// coreg-186_216-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01-A.png|<nil> | ||
// { | ||
// "xOffset": 186, | ||
// "xScale": 1.1359178, | ||
// "yOffset": 216, | ||
// "yScale": 1.1359178 | ||
// } | ||
// coreg-40_519-SC3_0921_0748732957_027RAS_N0450000SRLC11373_0000LMJ01.png|<nil> | ||
// { | ||
// "xOffset": 40, | ||
// "xScale": 4.478153, | ||
// "yOffset": 519, | ||
// "yScale": 4.478153 | ||
// } | ||
// coreg-186_216-PCB_0921_0748739251_000RAS_N045000032302746300020LUJ01.png|<nil> | ||
// { | ||
// "xOffset": 186, | ||
// "xScale": 1.1359178, | ||
// "yOffset": 216, | ||
// "yScale": 1.1359178 | ||
// } | ||
// |Warped image name does not have expected components | ||
// {} | ||
// |Failed to find GDS file name section in image name: SC3_0921_0748732957_027RASS_N0450000SRLC11373_0000LMJ01. Error: Failed to parse meta from file name | ||
// {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.