pixel-sorting-c icon indicating copy to clipboard operation
pixel-sorting-c copied to clipboard

A command line tool for pixel sorting your images, written in C / C++

Results 7 pixel-sorting-c issues
Sort by recently updated
recently updated
newest added

Also fixed LDFLAG ordering issue. On my system (Ubuntu 14.04), the previous ordering caused a compilation error. Also, I set -Wsign-compare and -Werror. So I changed int to size_t. Probably...

Currently, the internals assume that the pixel sorting happens row-by-row, where each line has no notion of the other lines. This does create interesting results, however there are certainly other...

As of the time of writing, I have not tested error handling with regards to file IO. It's probably pretty bad. Ideally, the program should fail in predictable and helpful...

In line with adding more CLI arguments and flags, it would be good to use an actual library. Getopts seems like an obvious choice.

The title captures this one pretty well. There should be CLI options for the thresholds, rather than hard coded values.

The project was written with C in mind, however in my haste of trying to get it pushed up to Github, I cut some corners and used C++ niceties. Given...

As the internals change and expand to support new algorithms, it is imperative that we have regression testing for all prior algorithms. This should take the form of "gold-standard" style...