├── .gitignore ├── .travis.yml ├── Jamfile ├── LICENSE ├── README.org ├── debug.c ├── image.c ├── image.h ├── lim-yen-wu.c ├── marichal-ma-zhang.c ├── prep-test-suite.sh ├── t ├── corpus │ ├── hsi-bug-lena-wide.jpg │ ├── sharp │ │ └── lena_rgb.jpg │ └── sky-threshold-bug-blurred-circle.jpg ├── decision-over-corpus.t ├── image.t └── sky-threshold.t ├── tlzz-main.c ├── tong-li-zhang-zhang.c └── tong-li-zhang-zhang.h /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.o 3 | *.pfsl 4 | core 5 | t/.prepared 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/.travis.yml -------------------------------------------------------------------------------- /Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/Jamfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/README.org -------------------------------------------------------------------------------- /debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/debug.c -------------------------------------------------------------------------------- /image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/image.c -------------------------------------------------------------------------------- /image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/image.h -------------------------------------------------------------------------------- /lim-yen-wu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/lim-yen-wu.c -------------------------------------------------------------------------------- /marichal-ma-zhang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/marichal-ma-zhang.c -------------------------------------------------------------------------------- /prep-test-suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/prep-test-suite.sh -------------------------------------------------------------------------------- /t/corpus/hsi-bug-lena-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/t/corpus/hsi-bug-lena-wide.jpg -------------------------------------------------------------------------------- /t/corpus/sharp/lena_rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/t/corpus/sharp/lena_rgb.jpg -------------------------------------------------------------------------------- /t/corpus/sky-threshold-bug-blurred-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/t/corpus/sky-threshold-bug-blurred-circle.jpg -------------------------------------------------------------------------------- /t/decision-over-corpus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/t/decision-over-corpus.t -------------------------------------------------------------------------------- /t/image.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/t/image.t -------------------------------------------------------------------------------- /t/sky-threshold.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/t/sky-threshold.t -------------------------------------------------------------------------------- /tlzz-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/tlzz-main.c -------------------------------------------------------------------------------- /tong-li-zhang-zhang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/tong-li-zhang-zhang.c -------------------------------------------------------------------------------- /tong-li-zhang-zhang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokenrove/blur-detection/HEAD/tong-li-zhang-zhang.h --------------------------------------------------------------------------------