├── .gitignore ├── README.md ├── imViewer.pro ├── screenshots ├── Snipaste_2019-05-30_15-32-42.png ├── Snipaste_2019-05-30_15-33-15.png └── Snipaste_2019-05-30_15-33-28.png └── src ├── dialog ├── dialog_exp_transform.cpp ├── dialog_exp_transform.h ├── dialog_exp_transform.ui ├── dialog_gaussianblur.cpp ├── dialog_gaussianblur.h ├── dialog_linear_gray.cpp ├── dialog_linear_gray.h ├── dialog_linear_gray.ui ├── dialog_log_grey.cpp ├── dialog_log_grey.h ├── dialog_log_grey.ui ├── dialog_power_grey.cpp ├── dialog_power_grey.h ├── dialog_power_grey.ui ├── dialog_stretch_transform.cpp ├── dialog_stretch_transform.h ├── dialog_stretch_transform.ui ├── dialog_two_threshold_transform.cpp ├── dialog_two_threshold_transform.h ├── dialog_two_threshold_transform.ui └── gaussianblurdialog.ui ├── main.cpp ├── mainwindow ├── graphicsview.cpp ├── graphicsview.h ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui ├── res ├── Line_Chart_72px.png ├── Open_folder_full_48px_1186194_easyicon.net.png ├── about.svg ├── blur_on_72px.png ├── brightness.svg ├── chinese.png ├── clear.svg ├── cn.qm ├── cn.ts ├── default.qrc ├── english.png ├── frame_1.png ├── frame_2.png ├── frame_3.png ├── fun_exp.png ├── histogram.png ├── horizontal.png ├── left.png ├── lineGrey.gif ├── line_graphic_72p.png ├── log.png ├── logo_1.png ├── logo_2.png ├── metal.png ├── open.svg ├── quill_72px.png ├── restore.png ├── right.png ├── save.svg ├── temperature_72px.png ├── vertical.png └── zoom.png ├── src.pro └── utils ├── gaussianblur.cpp ├── gaussianblur.h ├── histogram.cpp ├── histogram.h ├── medianfilter.cpp ├── medianfilter.h ├── qcustomplot.cpp ├── qcustomplot.h ├── tools.cpp └── tools.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/README.md -------------------------------------------------------------------------------- /imViewer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/imViewer.pro -------------------------------------------------------------------------------- /screenshots/Snipaste_2019-05-30_15-32-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/screenshots/Snipaste_2019-05-30_15-32-42.png -------------------------------------------------------------------------------- /screenshots/Snipaste_2019-05-30_15-33-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/screenshots/Snipaste_2019-05-30_15-33-15.png -------------------------------------------------------------------------------- /screenshots/Snipaste_2019-05-30_15-33-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/screenshots/Snipaste_2019-05-30_15-33-28.png -------------------------------------------------------------------------------- /src/dialog/dialog_exp_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_exp_transform.cpp -------------------------------------------------------------------------------- /src/dialog/dialog_exp_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_exp_transform.h -------------------------------------------------------------------------------- /src/dialog/dialog_exp_transform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_exp_transform.ui -------------------------------------------------------------------------------- /src/dialog/dialog_gaussianblur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_gaussianblur.cpp -------------------------------------------------------------------------------- /src/dialog/dialog_gaussianblur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_gaussianblur.h -------------------------------------------------------------------------------- /src/dialog/dialog_linear_gray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_linear_gray.cpp -------------------------------------------------------------------------------- /src/dialog/dialog_linear_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_linear_gray.h -------------------------------------------------------------------------------- /src/dialog/dialog_linear_gray.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_linear_gray.ui -------------------------------------------------------------------------------- /src/dialog/dialog_log_grey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_log_grey.cpp -------------------------------------------------------------------------------- /src/dialog/dialog_log_grey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_log_grey.h -------------------------------------------------------------------------------- /src/dialog/dialog_log_grey.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_log_grey.ui -------------------------------------------------------------------------------- /src/dialog/dialog_power_grey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_power_grey.cpp -------------------------------------------------------------------------------- /src/dialog/dialog_power_grey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_power_grey.h -------------------------------------------------------------------------------- /src/dialog/dialog_power_grey.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_power_grey.ui -------------------------------------------------------------------------------- /src/dialog/dialog_stretch_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_stretch_transform.cpp -------------------------------------------------------------------------------- /src/dialog/dialog_stretch_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_stretch_transform.h -------------------------------------------------------------------------------- /src/dialog/dialog_stretch_transform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_stretch_transform.ui -------------------------------------------------------------------------------- /src/dialog/dialog_two_threshold_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_two_threshold_transform.cpp -------------------------------------------------------------------------------- /src/dialog/dialog_two_threshold_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_two_threshold_transform.h -------------------------------------------------------------------------------- /src/dialog/dialog_two_threshold_transform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/dialog_two_threshold_transform.ui -------------------------------------------------------------------------------- /src/dialog/gaussianblurdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/dialog/gaussianblurdialog.ui -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow/graphicsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/mainwindow/graphicsview.cpp -------------------------------------------------------------------------------- /src/mainwindow/graphicsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/mainwindow/graphicsview.h -------------------------------------------------------------------------------- /src/mainwindow/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/mainwindow/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/mainwindow/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/mainwindow/mainwindow.ui -------------------------------------------------------------------------------- /src/res/Line_Chart_72px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/Line_Chart_72px.png -------------------------------------------------------------------------------- /src/res/Open_folder_full_48px_1186194_easyicon.net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/Open_folder_full_48px_1186194_easyicon.net.png -------------------------------------------------------------------------------- /src/res/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/about.svg -------------------------------------------------------------------------------- /src/res/blur_on_72px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/blur_on_72px.png -------------------------------------------------------------------------------- /src/res/brightness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/brightness.svg -------------------------------------------------------------------------------- /src/res/chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/chinese.png -------------------------------------------------------------------------------- /src/res/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/clear.svg -------------------------------------------------------------------------------- /src/res/cn.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/cn.qm -------------------------------------------------------------------------------- /src/res/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/cn.ts -------------------------------------------------------------------------------- /src/res/default.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/default.qrc -------------------------------------------------------------------------------- /src/res/english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/english.png -------------------------------------------------------------------------------- /src/res/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/frame_1.png -------------------------------------------------------------------------------- /src/res/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/frame_2.png -------------------------------------------------------------------------------- /src/res/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/frame_3.png -------------------------------------------------------------------------------- /src/res/fun_exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/fun_exp.png -------------------------------------------------------------------------------- /src/res/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/histogram.png -------------------------------------------------------------------------------- /src/res/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/horizontal.png -------------------------------------------------------------------------------- /src/res/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/left.png -------------------------------------------------------------------------------- /src/res/lineGrey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/lineGrey.gif -------------------------------------------------------------------------------- /src/res/line_graphic_72p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/line_graphic_72p.png -------------------------------------------------------------------------------- /src/res/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/log.png -------------------------------------------------------------------------------- /src/res/logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/logo_1.png -------------------------------------------------------------------------------- /src/res/logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/logo_2.png -------------------------------------------------------------------------------- /src/res/metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/metal.png -------------------------------------------------------------------------------- /src/res/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/open.svg -------------------------------------------------------------------------------- /src/res/quill_72px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/quill_72px.png -------------------------------------------------------------------------------- /src/res/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/restore.png -------------------------------------------------------------------------------- /src/res/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/right.png -------------------------------------------------------------------------------- /src/res/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/save.svg -------------------------------------------------------------------------------- /src/res/temperature_72px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/temperature_72px.png -------------------------------------------------------------------------------- /src/res/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/vertical.png -------------------------------------------------------------------------------- /src/res/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/res/zoom.png -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/src.pro -------------------------------------------------------------------------------- /src/utils/gaussianblur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/gaussianblur.cpp -------------------------------------------------------------------------------- /src/utils/gaussianblur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/gaussianblur.h -------------------------------------------------------------------------------- /src/utils/histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/histogram.cpp -------------------------------------------------------------------------------- /src/utils/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/histogram.h -------------------------------------------------------------------------------- /src/utils/medianfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/medianfilter.cpp -------------------------------------------------------------------------------- /src/utils/medianfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/medianfilter.h -------------------------------------------------------------------------------- /src/utils/qcustomplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/qcustomplot.cpp -------------------------------------------------------------------------------- /src/utils/qcustomplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/qcustomplot.h -------------------------------------------------------------------------------- /src/utils/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/tools.cpp -------------------------------------------------------------------------------- /src/utils/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my3rs/ImageQt/HEAD/src/utils/tools.h --------------------------------------------------------------------------------