pixelsorter cli written in golang
rewritten from my nodejs implementation, which uses satyarth/pixelsort as reference
furst time using go, might be cursed
- row and spiral patterns
- sort with a mask
- sort images in parallel
- sort by lightness, hue, saturation, and r/g/b
- shuffle pixels, sort in waves, random lengths, or smear instead
- sort in reverse
- rotation
- would like to mix and match thresholds (sort by red with saturation threshold, or sort by sat with darkness threshold)
- more patterns; seam carving looks cool
git clone https://github.com/experibass/pixelsort-go.git
cd pixelsort-go
go build
go install
Original - src: ESA/Webb, NASA & CSA, A. Adamo (Stockholm University) and the FEAST JWST team
Random sort
pixelsort_go --input ~/Downloads/potm2310a.jpg --upper_threshold 0.4 --lower_threshold 0.2 --comparator saturation --angle 30 --randomness 0.4 --interval randomnoisy --output ./examples/webb-sort.jpg
Basic row sort w/ default options & mask
pixelsort_go --input ~/Downloads/potm2310a.jpg --mask ./examples/webb-mask.jpg --output ./examples/webb-sort.jpg
Spiral sort using most options & mask
pixelsort_go --input ~/Downloads/potm2310a.jpg --mask ./examples/webb-mask.jpg --pattern spiral --interval wave --randomness 0.4 --comparator saturation --section_length 400 --output ./examples/webb-spiral.jpg
did you know webb and hubble pics are cc4?
"elapsed" is time spent actually sorting
=> time pixelsort_go -i ~/Downloads/potm2310a.jpg -o ./benchmark
Sorting 1 images with a config of {Pattern:row Interval:row Comparator:lightness SectionLength:69 Randomness:1 Reverse:false Thresholds:{Lower:0 Upper:1} Angle:0}.
Loading image 1 (/home/________/Downloads/potm2310a.jpg -> ./benchmark)...
Sorting /home/________/Downloads/potm2310a.jpg...
./benchmark elapsed: 167ms
Writing ./benchmark...
0:00.22 real 0.20 usermode 98% 16088 Kb mem
=> time pixelsort_go -i ~/Downloads/potm2310a.jpg -m ./examples/mask.jpg -o ./benchmark
Sorting 1 images with a config of {Pattern:row Interval:row Comparator:lightness SectionLength:69 Randomness:1 Reverse:false Thresholds:{Lower:0 Upper:1} Angle:0}.
Loading image 1 (/home/ging/Downloads/potm2310a.jpg -> ./benchmark)...
Sorting /home/ging/Downloads/potm2310a.jpg...
./benchmark elapsed: 94ms
Writing ./benchmark...
0:00.51 real 0.45 usermode 99% 109428 Kb mem