├── .gitignore ├── COPYING.GPL3.txt ├── ImageQ.pro ├── README.txt ├── aboutwindow.cpp ├── aboutwindow.h ├── aboutwindow.ui ├── blurwindow.cpp ├── blurwindow.h ├── blurwindow.ui ├── cannywindow.cpp ├── cannywindow.h ├── cannywindow.ui ├── gradientwindow.cpp ├── gradientwindow.h ├── gradientwindow.ui ├── histogram.cpp ├── histogram.h ├── histogramwindow.cpp ├── histogramwindow.h ├── histogramwindow.ui ├── image.cpp ├── image.h ├── image.ui ├── imagelabel.cpp ├── imagelabel.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── mat2qimage.cpp ├── mat2qimage.h ├── morphologywindow.cpp ├── morphologywindow.h ├── morphologywindow.ui ├── opencv_future └── imgproc │ ├── connectedcomponents.hpp │ └── src │ └── connectedcomponents.cpp ├── samples ├── N2_2.kesit.JPG ├── Nanofilaments-EMpicture.jpg ├── Pos.tif ├── Sand_from_Gobi_Desert.jpg └── license.txt ├── setscalewindow.cpp ├── setscalewindow.h ├── setscalewindow.ui ├── textlistwindow.cpp ├── textlistwindow.h ├── textlistwindow.ui ├── thresholdwindow.cpp ├── thresholdwindow.h └── thresholdwindow.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.GPL3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/COPYING.GPL3.txt -------------------------------------------------------------------------------- /ImageQ.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/ImageQ.pro -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/README.txt -------------------------------------------------------------------------------- /aboutwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/aboutwindow.cpp -------------------------------------------------------------------------------- /aboutwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/aboutwindow.h -------------------------------------------------------------------------------- /aboutwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/aboutwindow.ui -------------------------------------------------------------------------------- /blurwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/blurwindow.cpp -------------------------------------------------------------------------------- /blurwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/blurwindow.h -------------------------------------------------------------------------------- /blurwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/blurwindow.ui -------------------------------------------------------------------------------- /cannywindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/cannywindow.cpp -------------------------------------------------------------------------------- /cannywindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/cannywindow.h -------------------------------------------------------------------------------- /cannywindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/cannywindow.ui -------------------------------------------------------------------------------- /gradientwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/gradientwindow.cpp -------------------------------------------------------------------------------- /gradientwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/gradientwindow.h -------------------------------------------------------------------------------- /gradientwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/gradientwindow.ui -------------------------------------------------------------------------------- /histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/histogram.cpp -------------------------------------------------------------------------------- /histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/histogram.h -------------------------------------------------------------------------------- /histogramwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/histogramwindow.cpp -------------------------------------------------------------------------------- /histogramwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/histogramwindow.h -------------------------------------------------------------------------------- /histogramwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/histogramwindow.ui -------------------------------------------------------------------------------- /image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/image.cpp -------------------------------------------------------------------------------- /image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/image.h -------------------------------------------------------------------------------- /image.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/image.ui -------------------------------------------------------------------------------- /imagelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/imagelabel.cpp -------------------------------------------------------------------------------- /imagelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/imagelabel.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /mat2qimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/mat2qimage.cpp -------------------------------------------------------------------------------- /mat2qimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/mat2qimage.h -------------------------------------------------------------------------------- /morphologywindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/morphologywindow.cpp -------------------------------------------------------------------------------- /morphologywindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/morphologywindow.h -------------------------------------------------------------------------------- /morphologywindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/morphologywindow.ui -------------------------------------------------------------------------------- /opencv_future/imgproc/connectedcomponents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/opencv_future/imgproc/connectedcomponents.hpp -------------------------------------------------------------------------------- /opencv_future/imgproc/src/connectedcomponents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/opencv_future/imgproc/src/connectedcomponents.cpp -------------------------------------------------------------------------------- /samples/N2_2.kesit.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/samples/N2_2.kesit.JPG -------------------------------------------------------------------------------- /samples/Nanofilaments-EMpicture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/samples/Nanofilaments-EMpicture.jpg -------------------------------------------------------------------------------- /samples/Pos.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/samples/Pos.tif -------------------------------------------------------------------------------- /samples/Sand_from_Gobi_Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/samples/Sand_from_Gobi_Desert.jpg -------------------------------------------------------------------------------- /samples/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/samples/license.txt -------------------------------------------------------------------------------- /setscalewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/setscalewindow.cpp -------------------------------------------------------------------------------- /setscalewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/setscalewindow.h -------------------------------------------------------------------------------- /setscalewindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/setscalewindow.ui -------------------------------------------------------------------------------- /textlistwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/textlistwindow.cpp -------------------------------------------------------------------------------- /textlistwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/textlistwindow.h -------------------------------------------------------------------------------- /textlistwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/textlistwindow.ui -------------------------------------------------------------------------------- /thresholdwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/thresholdwindow.cpp -------------------------------------------------------------------------------- /thresholdwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/thresholdwindow.h -------------------------------------------------------------------------------- /thresholdwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeAparicio/ImageQ/HEAD/thresholdwindow.ui --------------------------------------------------------------------------------