Skip to content
Snippets Groups Projects
Commit 33973cfa authored by Antoine Lorence's avatar Antoine Lorence
Browse files

Fix last 'eiimage' references

parent 1dc8c13b
No related branches found
No related tags found
No related merge requests found
# EIImage compilation process
# INSAimage compilation process
This file contains useful information to help you in EIImage compilation.
This file contains useful information to help you in INSAimage compilation.
## Introduction
EIImage is an open source program under the GPL v3 license. Please read the file 'GPL' in this repository for more information.
INSAimage is an open source program under the GPL v3 license. Please read the file 'GPL' in this repository for more information.
This software can be compiled under GNU/Linux and Windows, and should be under Mac OS (but this has not been tested yet).
......@@ -22,7 +22,7 @@ If you just cloned this repository, please ensure the detiq-t library submodule
You will need to run this command (without `--init`) each time you want to update the submodule to the last revision
## Libraries
EIImage is compiled against some dependencies, you have to check all these dependencies have been installed on your environment.
INSAimage is compiled against some dependencies, you have to check all these dependencies have been installed on your environment.
### Qt 5
#### Windows
......@@ -38,7 +38,7 @@ RandomLib 1.7, 1.8 and 1.9 are known to work. Newer versions should also be ok.
### Qwt
Download Qwt 6.0 or newer from the official website: http://sourceforge.net/projects/qwt/
The library must be compiled against Qt, please ensure you use the same version than the one you will use to compile EIImage. The most easier way to comile Qwt is to load the project file (qwt.pro) in Qt Creator, configure the project, run the compilation.
The library must be compiled against Qt, please ensure you use the same version than the one you will use to compile INSAimage. The most easier way to comile Qwt is to load the project file (qwt.pro) in Qt Creator, configure the project, run the compilation.
Compilation and installation are documented on the official website: http://qwt.sourceforge.net/qwtinstall.html.
......@@ -66,7 +66,7 @@ In general, it is a good idea to generate build environment in an empty folder s
### Windows users
Depending on the compiler you want to use, you may need to run `cmake` or `cmake-gui` from a command line terminal with compilation environment variables pre-defined. For example, to help CMake finding MSVC compiler, you may have to run cmake in a 'Visual Studio Command Prompt'. This can be found in the Start menu. Compiling with MinGW can be achieved by running cmake from 'MinGW shell'.
The CMake scripts shipped with EIImage try to locate automatically all libraries and tools needed to compile it. But in some case, this is impossible because there is no common standard path were all libraries should be installed. To help CMake find needed libraries, you can set some variables when running cmake:
The CMake scripts shipped with INSAimage try to locate automatically all libraries and tools needed to compile it. But in some case, this is impossible because there is no common standard path were all libraries should be installed. To help CMake find needed libraries, you can set some variables when running cmake:
- CMAKE_PREFIX_PATH will be used by CMake to serach for libraries needed. You can put local paths were some dependencies are stored. Use the separator of your OS (';' for Windows). Example: `-DCMAKE_PREFIX_PATH="C:/Program Files/GnuWin32";D:/libs/RandomLib-1.10-build`
- \<libname\>_DIR can be used to help CMake finding a specific library
......
......@@ -78,8 +78,8 @@ using namespace std;
int main(int argc, char** argv)
{
QApplication app(argc, argv);
app.setOrganizationName("insa");
app.setApplicationName("eiimage");
app.setOrganizationName("INSA");
app.setApplicationName("INSAimage");
Log::configure(true, false, 0);
......@@ -108,7 +108,7 @@ int main(int argc, char** argv)
}
app.installTranslator(&eiiTranslator);
GenericInterface gi("eiimage", Qt::LeftDockWidgetArea);
GenericInterface gi("INSAImage", Qt::LeftDockWidgetArea);
PluginManager* pluginManager = new PluginManager(&gi);
INSAimageService* insaimageService = new INSAimageService(&gi);
......
......@@ -28,7 +28,7 @@
/**
* @brief A BuiltinOpSet is an implementation of OpSet containing GenericOperation
*
* This class is used inside the eiimage application to organize the built-in operations.
* This class is used inside the insaimage application to organize the built-in operations.
*
*/
class BuiltinOpSet : public OpSet {
......
......@@ -26,7 +26,7 @@ DOXYFILE_ENCODING = UTF-8
# identify the project. Note that if you do not use Doxywizard you need
# to put quotes around the project name if it contains spaces.
PROJECT_NAME = "eiimage core"
PROJECT_NAME = "insaimage core"
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or
......@@ -38,7 +38,7 @@ PROJECT_NUMBER = 1
# for a project that appears at the top of each page and should give viewer
# a quick idea about the purpose of the project. Keep the description short.
PROJECT_BRIEF = "eiimage's core library"
PROJECT_BRIEF = "insaimage's core library"
# With the PROJECT_LOGO tag one can specify an logo or icon that is
# included in the documentation. The maximum height of the logo should not
......
......@@ -38,7 +38,7 @@ namespace genericinterface {
* For implementing an operation working with standard 8bit unsigned integer Image (ie Image_t<uint8_t> or simply Image), see the Operation class.\n
* For implementing an operation working with double-precision floating point Image (ie Image_t<double>), see the DoubleOperation class.\n
* This class is a generic class and should not be directly used except for creating a generic operation (ie an operation working on different type of Image).\n
* For an exemple of a true generic operation class, see the PointOp implementation in eiimage source code.
* For an exemple of a true generic operation class, see the PointOp implementation in insaimage source code.
*/
class GenericOperation {
public:
......@@ -66,7 +66,7 @@ class GenericOperation {
/**
* @brief The function call operator which is called by the application, it is the entry point of this operation and it calls the pure virtual function call operator.
*
* @param ws The eiimage implementation of the genericinterface::WindowService
* @param ws The insaimage implementation of the genericinterface::WindowService
*/
virtual void operator()(genericinterface::WindowService* ws);
......@@ -131,7 +131,7 @@ class GenericOperation {
void outText(std::string);
std::string _name; /**< The name of the operation */
genericinterface::WindowService* _ws; /**< A pointer to the eiimage window service, only valid inside the function call operator */
genericinterface::WindowService* _ws; /**< A pointer to the window service, only valid inside the function call operator */
genericinterface::ImageWindow* _curImgWnd; /**< A pointer to the current image window, only valid inside the function call operator */
private:
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment