├── .gitignore ├── LICENSE ├── QImageFilter.pro ├── README.md ├── api.cpp ├── api.h ├── application.cpp ├── application.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui └── test ├── 1.jpeg ├── 冷色.png ├── 图片1.png ├── 图片4.png ├── 图片5.png ├── 对比度和曝光度.png ├── 暖色.png └── 灰度图.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/LICENSE -------------------------------------------------------------------------------- /QImageFilter.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/QImageFilter.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/README.md -------------------------------------------------------------------------------- /api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/api.cpp -------------------------------------------------------------------------------- /api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/api.h -------------------------------------------------------------------------------- /application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/application.cpp -------------------------------------------------------------------------------- /application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/application.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /test/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/test/1.jpeg -------------------------------------------------------------------------------- /test/冷色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/test/冷色.png -------------------------------------------------------------------------------- /test/图片1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/test/图片1.png -------------------------------------------------------------------------------- /test/图片4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/test/图片4.png -------------------------------------------------------------------------------- /test/图片5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/test/图片5.png -------------------------------------------------------------------------------- /test/对比度和曝光度.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/test/对比度和曝光度.png -------------------------------------------------------------------------------- /test/暖色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/test/暖色.png -------------------------------------------------------------------------------- /test/灰度图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependon/QImageFilter/HEAD/test/灰度图.png --------------------------------------------------------------------------------