Skip to content

rasberry/ImageFunctions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

fc980f0 · Jan 18, 2025
Nov 9, 2024
Jan 18, 2025
Nov 9, 2024
Nov 9, 2024
Nov 9, 2024
Aug 23, 2024
Nov 9, 2024
Oct 30, 2024
Aug 23, 2024
Oct 20, 2024
Aug 20, 2024
Jun 16, 2022
Aug 20, 2024
Oct 30, 2024
May 27, 2019
Jan 18, 2025
Oct 19, 2024

Repository files navigation

Image Functions

A collection of various image processing functions

Pages

Commands

  • run project
    • dotnet run --project src --
  • test project
    • dotnet test
    • dotnet test -l "console;verbosity=detailed" --filter "TestZoomBlur"
  • build wiki
    • dotnet run --project Writer

Notes

  • find out which images tests are using
    #!/bin/bash
    function allNames {
    	grep -iIrh --include \*.cs -A 2 'GetImageNames' | \
    	grep -iPo 'new string\[\].*' | \
    	awk -F '[, ]'  '{for (i = 4; i <= NF - 1; i++) {printf "%s\n", $i};}' | \
    	tr -d '"'
    
    	ls ./Resources/images | \
    	awk -F '.' '{print $1}'
    }
    allNames | sort | uniq -ic | sort

TODO

= review https://github.com/DarthAffe/HPPH

https://www.youtube.com/watch?v=WGccIFf6MF8
= move imagemagick to it's own plugin (to expose more imagemagick stuff)
= opencv (emgucv) plugin ?
= create a UI plugin
= create a gimp plugin
= add more tests
= create nuget packages
= add coverage report
= change canvas to another color space (edit in another color space)
=

About

A collection of various image processing functions

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published