You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Filip Orság 462ffae3f8
README update
8 years ago
images Initial commit. 8 years ago
libs Initial commit. 8 years ago
LICENSE Add license 8 years ago
README.md README update 8 years ago
customgraphicsview.cpp Initial commit. 8 years ago
customgraphicsview.h Initial commit. 8 years ago
layercomposer.cpp Initial commit. 8 years ago
layercomposer.h Initial commit. 8 years ago
layerrecord.cpp Initial commit. 8 years ago
layerrecord.h Initial commit. 8 years ago
main.cpp Initial commit. 8 years ago
mainwindow.cpp Initial commit. 8 years ago
mainwindow.h Initial commit. 8 years ago
mainwindow.ui Initial commit. 8 years ago
microAnalyzer.pro Initial commit. 8 years ago
microAnalyzer.rc Initial commit. 8 years ago
opencvprocessor.cpp Initial commit. 8 years ago
opencvprocessor.h Initial commit. 8 years ago
project.cpp Initial commit. 8 years ago
project.h Initial commit. 8 years ago
projectwizard.cpp Initial commit. 8 years ago
projectwizard.h Initial commit. 8 years ago
tableformat.cpp Initial commit. 8 years ago
tableformat.h Initial commit. 8 years ago
xmlparser.cpp Initial commit. 8 years ago
xmlparser.h Initial commit. 8 years ago

README.md

microAnalyzer

MicroAnalyzer is a software that allows users to maintain a project data belonging to a particular microchip. It is also possible to perform basic analysis above the bitmap image data. Functions for layers combinations of the given data are available as well.

Version

1.0 - linux edition

Installation

First of all, as prerequisites you have to have installed the following libraries, ideally of the same version. Compatibility with different versions of the libraries is not guaranteed.

  • Qt 5.2.1
  • OpenCV 3.1.0
  • Boost 1.54

For a case that you need to configure paths to the libraries manually, please edit file microAnalyzer.pro which contains the basic configurations for the compilation.

It the case everything is installed and configured properly in your operating system, the code will compile for you with use of the following command line commands:

$ qmake
$ make microAnalyzer

For speeding up the compilation on multicore/multithread systems, you can use parameter -jX, where X is recommended to be your approx. the amount of cores of the machine - e.g. on 8 core system you can use -j8 as follows:

$ make microAnalyzer -j8

If you want to make a clean build, then use the following command set:

$ make clean
$ qmake
$ make microAnalyzer

Running the application

The following command performed in the directory with compiled binary will run the application:

$ ./microAnalyzer

Use of the application is intuitive - load images into Background layers (File->Import image), perform analyses (menu Tools) with use of these background images and store the results to Analysing layers part.