-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
50 changed files
with
261 additions
and
81 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module github.com/ernyoke/imger/blend | ||
|
||
go 1.18 | ||
|
||
replace github.com/ernyoke/imger/utils => ../utils | ||
|
||
require github.com/ernyoke/imger/utils v0.0.0-00010101000000-000000000000 |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module github.com/ernyoke/imger/blur | ||
|
||
go 1.18 | ||
|
||
replace github.com/ernyoke/imger/convolution => ../convolution | ||
|
||
replace github.com/ernyoke/imger/padding => ../padding | ||
|
||
replace github.com/ernyoke/imger/utils => ../utils | ||
|
||
replace github.com/ernyoke/imger/imgio => ../imgio | ||
|
||
require ( | ||
github.com/ernyoke/imger/convolution v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/imgio v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/padding v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/utils v0.0.0-00010101000000-000000000000 | ||
) |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github.com/Ernyoke/Imger v0.0.0-20210929183401-55700becd332 h1:t3vx6WXzlA8w/4yiYUGru1MrzBvicWz/XuNdGVtdLHA= | ||
github.com/Ernyoke/Imger v0.0.0-20210929183401-55700becd332/go.mod h1:WPxIrfWBcjJahioCwGzQFtyws0szWdMlm9g0vcBruAg= |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module github.com/ernyoke/imger/convolution | ||
|
||
go 1.18 | ||
|
||
replace github.com/ernyoke/imger/utils => ../utils | ||
|
||
replace github.com/ernyoke/imger/padding => ../padding | ||
|
||
replace github.com/ernyoke/imger/imgio => ../imgio | ||
|
||
require ( | ||
github.com/ernyoke/imger/padding v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/utils v0.0.0-00010101000000-000000000000 | ||
) |
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module github.com/ernyoke/imger/edgedetection | ||
|
||
go 1.18 | ||
|
||
replace github.com/ernyoke/imger/utils => ../utils | ||
|
||
replace github.com/ernyoke/imger/padding => ../padding | ||
|
||
replace github.com/ernyoke/imger/blur => ../blur | ||
|
||
replace github.com/ernyoke/imger/grayscale => ../grayscale | ||
|
||
replace github.com/ernyoke/imger/convolution => ../convolution | ||
|
||
replace github.com/ernyoke/imger/blend => ../blend | ||
|
||
replace github.com/ernyoke/imger/imgio => ../imgio | ||
|
||
require ( | ||
github.com/ernyoke/imger/blend v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/blur v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/convolution v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/grayscale v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/imgio v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/padding v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/utils v0.0.0-00010101000000-000000000000 | ||
) |
Empty file.
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
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module github.com/ernyoke/imger/effects | ||
|
||
go 1.18 | ||
|
||
replace github.com/ernyoke/imger/utils => ../utils | ||
|
||
replace github.com/ernyoke/imger/padding => ../padding | ||
|
||
replace github.com/ernyoke/imger/grayscale => ../grayscale | ||
|
||
replace github.com/ernyoke/imger/convolution => ../convolution | ||
|
||
replace github.com/ernyoke/imger/blend => ../blend | ||
|
||
replace github.com/ernyoke/imger/resize => ../resize | ||
|
||
replace github.com/ernyoke/imger/imgio => ../imgio | ||
|
||
require ( | ||
github.com/ernyoke/imger/blend v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/convolution v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/grayscale v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/imgio v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/padding v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/resize v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/utils v0.0.0-00010101000000-000000000000 | ||
) |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module github.com/ernyoke/imger/generate | ||
|
||
go 1.18 | ||
|
||
replace github.com/ernyoke/imger/imgio => ../imgio | ||
|
||
require github.com/ernyoke/imger/imgio v0.0.0-00010101000000-000000000000 |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module github.com/ernyoke/imger | ||
|
||
go 1.18 |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github.com/Ernyoke/Imger v0.0.0-20210929183401-55700becd332 h1:t3vx6WXzlA8w/4yiYUGru1MrzBvicWz/XuNdGVtdLHA= | ||
github.com/Ernyoke/Imger v0.0.0-20210929183401-55700becd332/go.mod h1:WPxIrfWBcjJahioCwGzQFtyws0szWdMlm9g0vcBruAg= |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module github.com/ernyoke/imger/grayscale | ||
|
||
go 1.18 | ||
|
||
replace github.com/ernyoke/imger/utils => ../utils | ||
|
||
replace github.com/ernyoke/imger/imgio => ../imgio | ||
|
||
require ( | ||
github.com/ernyoke/imger/imgio v0.0.0-00010101000000-000000000000 | ||
github.com/ernyoke/imger/utils v0.0.0-00010101000000-000000000000 | ||
) |
Empty file.
Oops, something went wrong.