diff --git a/CMakeLists.txt b/CMakeLists.txt
index f13658dd37839cd65336acbcc0950e067d7aa90b..640d3c2419fdd0f02c5978ab6380e0550b212747 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-project(INSAimage)
+project(ImageINSA)
 cmake_minimum_required(VERSION 2.8.11)
 
 # Find includes in corresponding build directories
@@ -19,7 +19,7 @@ find_package(Qt5PrintSupport)
 
 # We want to generate everything in the right target folder, for easier deployment
 file(MAKE_DIRECTORY ${DEPLOY_OUTPUT_DIRECTORY}/lib)
-set(DEPLOY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/insaimage CACHE PATH "The folder to use for deployment." FORCE)
+set(DEPLOY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/ImageINSA CACHE PATH "The folder to use for deployment." FORCE)
 set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${DEPLOY_OUTPUT_DIRECTORY}/lib)
 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${DEPLOY_OUTPUT_DIRECTORY}/lib)
 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${DEPLOY_OUTPUT_DIRECTORY})
@@ -29,13 +29,13 @@ find_package(RandomLib 1.7 REQUIRED)
 if(RandomLib_FOUND)
 	include_directories(${RandomLib_INCLUDE_DIRS})
 else()
-	message(FATAL_ERROR "Unable to find Random library. Please clone, compile and install it before compiling insaimage.")
+	message(FATAL_ERROR "Unable to find Random library. Please clone, compile and install it before compiling ImageINSA.")
 endif()
 
 # Add CMake modules path
 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
 
-# Detiq-T is a submodule, it is built automatically before building insaimage
+# Detiq-T is a submodule, it is built automatically before building ImageINSA
 if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/lib/detiq-t AND IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/lib/detiq-t)
 	add_subdirectory(lib/detiq-t)
 	include_directories(lib/detiq-t/ImageIn lib/detiq-t/GenericInterface)
@@ -107,7 +107,7 @@ if(WIN32)
 	endif()
 	add_custom_target(WinQtDeploy ALL
 		windeployqt ${DEPLOY_OUTPUT_DIRECTORY}/qwt.dll
-		COMMAND windeployqt ${DEPLOY_FLAGS} ${DEPLOY_OUTPUT_DIRECTORY}/insaimage.exe
+		COMMAND windeployqt ${DEPLOY_FLAGS} ${DEPLOY_OUTPUT_DIRECTORY}/imageinsa.exe
 		COMMENT "Copy Qt & compiler DLL to the target directory")
-	add_dependencies(WinQtDeploy insaimage)
+	add_dependencies(WinQtDeploy imageinsa)
 endif()
diff --git a/COMPILE.md b/COMPILE.md
index 1c6b2770389187a8e1b18549190914dd2bdf8d3c..47a6647d1ab321b1c51b7f95974b795f722030bf 100644
--- a/COMPILE.md
+++ b/COMPILE.md
@@ -1,10 +1,10 @@
-# INSAimage compilation process
+# ImageINSA compilation process
 
-This file contains useful information to help you in INSAimage compilation.
+This file contains useful information to help you in ImageINSA compilation.
 
 ## Introduction
 
-INSAimage is an open source program under the GPL v3 license. Please read the file 'GPL' in this repository for more information.
+ImageINSA 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
-INSAimage is compiled against some dependencies, you have to check all these dependencies have been installed on your environment.
+ImageINSA 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 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.
+The library must be compiled against Qt, please ensure you use the same version than the one you will use to compile ImageINSA. 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 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:
+The CMake scripts shipped with ImageINSA 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
diff --git a/README.md b/README.md
index 171cf0d40effb08f927039f8f9065c1cc09a959f..5f2bef2312ae43f4b46bcbb25e1a8380cd6218c3 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
-## INSAimage
+## ImageINSA
 
-INSAimage is an image processing application geared toward teaching and algorithm demonstrations.
-INSAimage is based upon the library ImageIn for image manipulations;
+ImageINSA is an image processing application geared toward teaching and algorithm demonstrations.
+ImageINSA is based upon the library ImageIn for image manipulations;
 The application's interface is also based on the [DETIQ-T][1]'s generic interface.
 
 Both ImageIn and the generic interface are part of the project [DETIQ-T][1].
@@ -13,17 +13,17 @@ Both ImageIn and the generic interface are part of the project [DETIQ-T][1].
 
 Copyright © 2011-2012 [INSA Rennes][2]
 
-INSAimage is free software: you can redistribute it and/or modify
+ImageINSA is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 
-INSAimage is distributed in the hope that it will be useful,
+ImageINSA is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 
 [2]:    http://www.insa-rennes.fr  "INSA Rennes"
\ No newline at end of file
diff --git a/app/Algorithms/ClassAnalysis.cpp b/app/Algorithms/ClassAnalysis.cpp
index d03acdf4620db6f1645a107f51f2697154dd0894..d76987a53dbb809ac694fa6a34a7ddec647cea2e 100644
--- a/app/Algorithms/ClassAnalysis.cpp
+++ b/app/Algorithms/ClassAnalysis.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "ClassAnalysis.h"
diff --git a/app/Algorithms/ClassAnalysis.h b/app/Algorithms/ClassAnalysis.h
index 649e92dad5a9035ec2f040b2a3c2a87a9f2e0119..64ae20eb771e0ad9940ce36d973c4bfd1ca426c1 100644
--- a/app/Algorithms/ClassAnalysis.h
+++ b/app/Algorithms/ClassAnalysis.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef CLASSANALYSIS_H
diff --git a/app/Algorithms/Croissance.h b/app/Algorithms/Croissance.h
index 9ac8c0aaadb04f3dfd0317ecee10ad0253fb5f71..f5a8c5910c1452943fc0ac7a68f1653c69c2c3b1 100644
--- a/app/Algorithms/Croissance.h
+++ b/app/Algorithms/Croissance.h
@@ -1,5 +1,5 @@
-#ifndef INSAIMAGE_CROISSANCE_H
-#define INSAIMAGE_CROISSANCE_H
+#ifndef IMAGEINSA_CROISSANCE_H
+#define IMAGEINSA_CROISSANCE_H
 
 #include <Image.h>
 #include <vector>
diff --git a/app/Algorithms/DCT.cpp b/app/Algorithms/DCT.cpp
index 4929b10c34f75d04f7b46ee02ed07facd9438570..1fcafeb8aeaea1248a25a35453a12f75dceedaeb 100644
--- a/app/Algorithms/DCT.cpp
+++ b/app/Algorithms/DCT.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <cstdio>
diff --git a/app/Algorithms/DCT.h b/app/Algorithms/DCT.h
index d56349e8e6c5e93dff1e00b5fddd6baf0394c628..ad7d26296985b6e6c4dcb39ad1ec550980bfdac5 100644
--- a/app/Algorithms/DCT.h
+++ b/app/Algorithms/DCT.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef DCT_H
diff --git a/app/Algorithms/FFT.cpp b/app/Algorithms/FFT.cpp
index 4667aeb66aa0b52b8ee0840f2c15a54a7dcb436c..06c14c2f8a0f4d7580256d8ffb693935bb94a8e3 100644
--- a/app/Algorithms/FFT.cpp
+++ b/app/Algorithms/FFT.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "FFT.h"
diff --git a/app/Algorithms/FFT.h b/app/Algorithms/FFT.h
index 180f92bff31c3ec414e7d398023ca0e6e980cdcc..a5276186294ce7de74f6573bbb7a125e6a7a778c 100644
--- a/app/Algorithms/FFT.h
+++ b/app/Algorithms/FFT.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef FFT_H
diff --git a/app/Algorithms/Pyramid.cpp b/app/Algorithms/Pyramid.cpp
index 9aa567584bcea2272ccdaf5094ba67d3f249ccfa..c5c7cc1a764c8a21ee2b43519cdb63c18121fc83 100644
--- a/app/Algorithms/Pyramid.cpp
+++ b/app/Algorithms/Pyramid.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "Pyramid.h"
diff --git a/app/Algorithms/Pyramid.h b/app/Algorithms/Pyramid.h
index 8c1e8a722a01c22ce0f09ecddf9cc5c5c9f27553..c1468183c25d391b7a74071372fed05c4c918a25 100644
--- a/app/Algorithms/Pyramid.h
+++ b/app/Algorithms/Pyramid.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef PYRAMID_H
diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt
index 35bc6aab84188d748cf139fcf588fc07a6e25efe..d0f28ccabc2f9f55d19e12f8855d9209f625e709 100644
--- a/app/CMakeLists.txt
+++ b/app/CMakeLists.txt
@@ -1,5 +1,5 @@
 
-set(insaimage_SOURCES
+set(imageinsa_SOURCES
 	main.cpp
 	Tools.h
 	Algorithms/ClassAnalysis.cpp
@@ -132,8 +132,8 @@ set(insaimage_SOURCES
 	Operations/TranslateOp.h
 	Operations/ZeroCrossingOp.cpp
 	Operations/ZeroCrossingOp.h
-	Services/INSAimageService.cpp
-	Services/INSAimageService.h
+	Services/ImageINSAService.cpp
+	Services/ImageINSAService.h
 	Services/FilteringService.cpp
 	Services/FilteringService.h
 	Services/MorphoMatService.cpp
@@ -176,16 +176,16 @@ set(UIS
 
 qt5_wrap_ui(WRAPPED_UIS ${UIS})
 
-qt5_add_resources(RCC_FILES "insaimage_app_res.qrc")
+qt5_add_resources(RCC_FILES "imageinsa_app_res.qrc")
 
-set(TS_FILES insaimage_en.ts insaimage_fr.ts)
+set(TS_FILES imageinsa_en.ts imageinsa_fr.ts)
 # Uncomment only 1 of the 2 folowing commands, depending on your needs
 # -1- Use current translations files
 qt5_add_translation(QM_FILES ${TS_FILES})
 # -2- Update translations files with changes from c++ sources
-#qt5_create_translation(QM_FILES ${insaimage_SOURCES} ${UIS} ${TS_FILES})
+#qt5_create_translation(QM_FILES ${imageinsa_SOURCES} ${UIS} ${TS_FILES})
 # -3- Update translations files with changes from c++ sources AND drop useless translations
-#qt5_create_translation(QM_FILES ${insaimage_SOURCES} ${UIS} ${TS_FILES} OPTIONS -no-obsolete)
+#qt5_create_translation(QM_FILES ${imageinsa_SOURCES} ${UIS} ${TS_FILES} OPTIONS -no-obsolete)
 
 
 # Avoid awful console on Windows
@@ -193,8 +193,8 @@ if(WIN32)
 	set(EXTRA_FLAGS WIN32)
 endif()
 
-add_executable(insaimage ${EXTRA_FLAGS} ${insaimage_SOURCES} ${WRAPPED_UIS} ${UIS} ${QM_FILES} ${TS_FILES} ${RCC_FILES})
-target_link_libraries(insaimage
+add_executable(imageinsa ${EXTRA_FLAGS} ${imageinsa_SOURCES} ${WRAPPED_UIS} ${UIS} ${QM_FILES} ${TS_FILES} ${RCC_FILES})
+target_link_libraries(imageinsa
 	core
 	Qt5::Core
 	Qt5::Widgets
@@ -204,11 +204,11 @@ target_link_libraries(insaimage
 	${RandomLib_LIBRARIES}
 )
 
-add_custom_command(TARGET insaimage POST_BUILD
+add_custom_command(TARGET imageinsa POST_BUILD
 	COMMAND ${CMAKE_COMMAND} -E make_directory ${DEPLOY_OUTPUT_DIRECTORY}/lang
 	COMMENT "Create directory ${DEPLOY_OUTPUT_DIRECTORY}/lang")
 foreach(__FILE ${QM_FILES})
-	add_custom_command(TARGET insaimage POST_BUILD
+	add_custom_command(TARGET imageinsa POST_BUILD
 		COMMAND ${CMAKE_COMMAND} -E copy ${__FILE} ${DEPLOY_OUTPUT_DIRECTORY}/lang
 		COMMENT "Copy ${__FILE} to ${DEPLOY_OUTPUT_DIRECTORY}/lang")
 endforeach()
diff --git a/app/Operations/BFlitOp.cpp b/app/Operations/BFlitOp.cpp
index ceaedcdc05f4f2acd77edab8901b47d83dad0fd6..fdc60a9cd4476529f4ad764eb8b1fee3ff4f0b13 100644
--- a/app/Operations/BFlitOp.cpp
+++ b/app/Operations/BFlitOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QDialog>
diff --git a/app/Operations/BFlitOp.h b/app/Operations/BFlitOp.h
index a52b88d47a19bc0ef002a2d0abfe8ccd1f300d54..8956c1fc11267682ee41ae109067f0ad009a9bca 100644
--- a/app/Operations/BFlitOp.h
+++ b/app/Operations/BFlitOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef BFLITOP_H
diff --git a/app/Operations/CenterOp.cpp b/app/Operations/CenterOp.cpp
index 807bc2ec64b72be4b7ed07e5e770b5e8efe8954c..7901d8cce228736c47f6be61957ab8ffb0ed2f85 100644
--- a/app/Operations/CenterOp.cpp
+++ b/app/Operations/CenterOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <vector>
diff --git a/app/Operations/CenterOp.h b/app/Operations/CenterOp.h
index cd7ab048a91e621bd7fa39f70bea587e4a5614c8..a812832c3637f633feeba893a95d7b84707b3b19 100644
--- a/app/Operations/CenterOp.h
+++ b/app/Operations/CenterOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef CENTEROP_H
diff --git a/app/Operations/ClassAnalysisDialog.cpp b/app/Operations/ClassAnalysisDialog.cpp
index 58b3a7f77a12fb3eac52052a6ab8759a0f43d859..59a71f7a1d98d090f63ad809389961195dffc694 100644
--- a/app/Operations/ClassAnalysisDialog.cpp
+++ b/app/Operations/ClassAnalysisDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "ClassAnalysisDialog.h"
diff --git a/app/Operations/ClassAnalysisDialog.h b/app/Operations/ClassAnalysisDialog.h
index 2372bf4dea2c2abca4875add4b910d6cdbfbf444..5c5f9dede90a2577f921b0c6390f649b62294f42 100644
--- a/app/Operations/ClassAnalysisDialog.h
+++ b/app/Operations/ClassAnalysisDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef CLASSANALYSISDIALOG_H
diff --git a/app/Operations/ClassAnalysisOp.cpp b/app/Operations/ClassAnalysisOp.cpp
index 0ace267a2d307552248abc16d47bf74e62919d93..c36c73b4c8b91b84b61f3570245f99bdc2c84d6d 100644
--- a/app/Operations/ClassAnalysisOp.cpp
+++ b/app/Operations/ClassAnalysisOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "ClassAnalysisOp.h"
diff --git a/app/Operations/ClassAnalysisOp.h b/app/Operations/ClassAnalysisOp.h
index ae5e6de6ac63127655b80687c6567f54fbab31ba..7a1bf982e64796956346f8ec15ec7eaf954b16eb 100644
--- a/app/Operations/ClassAnalysisOp.h
+++ b/app/Operations/ClassAnalysisOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef CLASSANALYSISOP_H
diff --git a/app/Operations/ClassResultOp.cpp b/app/Operations/ClassResultOp.cpp
index 51cca651caa691f6abf5bdae28e26c9c6b2fd0bb..4a5e2c7ef64fa09c49c9a2939575d26bd13131bc 100644
--- a/app/Operations/ClassResultOp.cpp
+++ b/app/Operations/ClassResultOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "ClassResultOp.h"
diff --git a/app/Operations/ClassResultOp.h b/app/Operations/ClassResultOp.h
index 66d83dbf4fef458b82707276a4ffb2eed93c1154..d751d01363c6f7512367a329c786c4e0594c377b 100644
--- a/app/Operations/ClassResultOp.h
+++ b/app/Operations/ClassResultOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef CLASSRESULTOP_H
diff --git a/app/Operations/ColorDialog.cpp b/app/Operations/ColorDialog.cpp
index 5106b9d433f3f0c77856abd6c340c1eea7dda386..ad90393617eec92c1bbcbffa7ee283b56ac3e828 100644
--- a/app/Operations/ColorDialog.cpp
+++ b/app/Operations/ColorDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "ColorDialog.h"
diff --git a/app/Operations/ColorDialog.h b/app/Operations/ColorDialog.h
index c5d3cba02d6ff835bd0ab8b08a2a3287d52d2dce..c71776b7790773d0843190842db4a90e1a198894 100644
--- a/app/Operations/ColorDialog.h
+++ b/app/Operations/ColorDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef COLORDIALOG_H
diff --git a/app/Operations/ColorimetryOp.cpp b/app/Operations/ColorimetryOp.cpp
index 5775619190cd656c570b9cbf36c2d14fd1e0bc3e..9f3dbd7be50cb8fd4fd27e6b838be5a52a69888f 100644
--- a/app/Operations/ColorimetryOp.cpp
+++ b/app/Operations/ColorimetryOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "ColorimetryOp.h"
diff --git a/app/Operations/ColorimetryOp.h b/app/Operations/ColorimetryOp.h
index fa7b03555bca7b5bfa1fb7e5509347797e113239..1e2206cc186846ccc13ae6db1b125bc0291f4b46 100644
--- a/app/Operations/ColorimetryOp.h
+++ b/app/Operations/ColorimetryOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef COLORIMETRYOP_H
diff --git a/app/Operations/CombineColorOp.cpp b/app/Operations/CombineColorOp.cpp
index 80c1216fa753caa894e4b65002234df0dfca837a..cc5cc091b8ae779dc1d29c2e285c2b649fd82788 100644
--- a/app/Operations/CombineColorOp.cpp
+++ b/app/Operations/CombineColorOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <limits>
diff --git a/app/Operations/CombineColorOp.h b/app/Operations/CombineColorOp.h
index bfa14a6acd7c206ef758a85085ee068f892c885d..4eb5c353423b184d79614be04ac75ecb47228797 100644
--- a/app/Operations/CombineColorOp.h
+++ b/app/Operations/CombineColorOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef COMBINECOLOROP_H
diff --git a/app/Operations/CroissanceOp.cpp b/app/Operations/CroissanceOp.cpp
index d87b62bc65e53998f16e0491bdd8caa50c578ad3..559f2f87487f9a2bf3dbc28219abd30e988b523e 100644
--- a/app/Operations/CroissanceOp.cpp
+++ b/app/Operations/CroissanceOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QDialog>
diff --git a/app/Operations/CroissanceOp.h b/app/Operations/CroissanceOp.h
index b67af0d667719743481dcb7835fae6dedf2336e0..41d377480752282c748132b3882cc05919486ac8 100644
--- a/app/Operations/CroissanceOp.h
+++ b/app/Operations/CroissanceOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef CROISSANCEOP_H
diff --git a/app/Operations/DCTDialog.cpp b/app/Operations/DCTDialog.cpp
index 4269622747d447dce17d00638165c46ffb28dfd6..bfeb2e62845d35bedaee6aee81d6ba6f38ce4ff1 100644
--- a/app/Operations/DCTDialog.cpp
+++ b/app/Operations/DCTDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "DCTDialog.h"
diff --git a/app/Operations/DCTDialog.h b/app/Operations/DCTDialog.h
index aefb70ad5968d17c0cebe570722fc26e6fb215f9..df43a686e3a92ef36c4deeec873bf9849ba73d20 100644
--- a/app/Operations/DCTDialog.h
+++ b/app/Operations/DCTDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef DCTDIALOG_H
diff --git a/app/Operations/DCTOp.cpp b/app/Operations/DCTOp.cpp
index d4b5677a36de61747ca96e42e34864caab58bfdf..4b70e9431a3730e9bcbe215ea496a1d77f16940b 100644
--- a/app/Operations/DCTOp.cpp
+++ b/app/Operations/DCTOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "DCTOp.h"
diff --git a/app/Operations/DCTOp.h b/app/Operations/DCTOp.h
index 572de28f7f20d428914cec0e30196e5596921db8..b18ae5342487ce44b8f3316105a85984efa606bc 100644
--- a/app/Operations/DCTOp.h
+++ b/app/Operations/DCTOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef DCTOP_H
diff --git a/app/Operations/DMMDialog.cpp b/app/Operations/DMMDialog.cpp
index 5e5bdab51e2ffe2a286d11fdf0cd93712528f287..0311465100fc3fca55a26f5a8beacf61c1a2b7cf 100644
--- a/app/Operations/DMMDialog.cpp
+++ b/app/Operations/DMMDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 #include <QWidget>
 #include <QVBoxLayout>
diff --git a/app/Operations/DMMDialog.h b/app/Operations/DMMDialog.h
index 8833507f021d995daa39e1eaa121b57f7719ed53..138f7679f4474e9756077a314d6ac947f179692b 100644
--- a/app/Operations/DMMDialog.h
+++ b/app/Operations/DMMDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef DMMDIALOG_H
diff --git a/app/Operations/DMMOp.cpp b/app/Operations/DMMOp.cpp
index 652c3ec72f8c873d1c2e6c22cff780e05946dc21..018b13114c654940b951e4bb4f80647acad2abd8 100644
--- a/app/Operations/DMMOp.cpp
+++ b/app/Operations/DMMOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "DMMOp.h"
diff --git a/app/Operations/DMMOp.h b/app/Operations/DMMOp.h
index 9740a3789ed08314fe243388b4a0e178d0134973..8a2ef27a320d72e8b441470151370fa0e7b0033d 100644
--- a/app/Operations/DMMOp.h
+++ b/app/Operations/DMMOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef DMMOP_H
diff --git a/app/Operations/DPCM.cpp b/app/Operations/DPCM.cpp
index aa2e5ed988c8410efb253f0c97c75368123690a3..12844a36728b2d530c5843456f0b245260f8ec01 100644
--- a/app/Operations/DPCM.cpp
+++ b/app/Operations/DPCM.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "DPCM.h"
diff --git a/app/Operations/DPCM.h b/app/Operations/DPCM.h
index 47cb6850a8bd4f1195aef3483e89c4d47d882740..d6f2fd7725fb4d814f8ad60da46120ba91b1e3ac 100644
--- a/app/Operations/DPCM.h
+++ b/app/Operations/DPCM.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef DPCM_H
diff --git a/app/Operations/DPCMDialog.cpp b/app/Operations/DPCMDialog.cpp
index 76e50f6a522968541ace81632294fe323821bb5a..d5b0b1931fdd6f08e18805c302b053d6e39a40d3 100644
--- a/app/Operations/DPCMDialog.cpp
+++ b/app/Operations/DPCMDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "DPCMDialog.h"
diff --git a/app/Operations/DPCMDialog.h b/app/Operations/DPCMDialog.h
index fa10362b46498cde5c6d4e7fcfd7b2c74f276de9..d4d73ea8d4cd54dcc978c2382e8e650e1a538623 100644
--- a/app/Operations/DPCMDialog.h
+++ b/app/Operations/DPCMDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef DPCMDIALOG_H
diff --git a/app/Operations/DPCMDialog.ui b/app/Operations/DPCMDialog.ui
index 4dd1ce25cd7a7d6e407a6c07636a4072f0e9cf5c..b79a0e1c4cb1778d6503bef373b2ebb5a015e020 100644
--- a/app/Operations/DPCMDialog.ui
+++ b/app/Operations/DPCMDialog.ui
@@ -20,7 +20,7 @@
       <string/>
      </property>
      <property name="pixmap">
-      <pixmap resource="../insaimage_app_res.qrc">:/img/micd.png</pixmap>
+      <pixmap resource="../imageinsa_app_res.qrc">:/img/micd.png</pixmap>
      </property>
     </widget>
    </item>
@@ -204,7 +204,7 @@
   </layout>
  </widget>
  <resources>
-  <include location="../insaimage_app_res.qrc"/>
+  <include location="../imageinsa_app_res.qrc"/>
  </resources>
  <connections>
   <connection>
diff --git a/app/Operations/DPCMEncodingOp.cpp b/app/Operations/DPCMEncodingOp.cpp
index 3cd164ddb3fadde2ec30828174e0b7242a697a17..3b68814c37305e777ddca918b4e4f4e14954665d 100644
--- a/app/Operations/DPCMEncodingOp.cpp
+++ b/app/Operations/DPCMEncodingOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "DPCMEncodingOp.h"
diff --git a/app/Operations/DPCMEncodingOp.h b/app/Operations/DPCMEncodingOp.h
index 2377210b3311eb1e3ff98e6f9224b5c59e81514a..7fe73738dff1316661956cc02cd3c525e59179cb 100644
--- a/app/Operations/DPCMEncodingOp.h
+++ b/app/Operations/DPCMEncodingOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef DPCMENCODINGOP_H
diff --git a/app/Operations/EntropyOp.cpp b/app/Operations/EntropyOp.cpp
index ec006f226f4d86196d27a526759a165648a9c078..6b524ccc06b0f8f55f201313ce1aa4872df91cb6 100644
--- a/app/Operations/EntropyOp.cpp
+++ b/app/Operations/EntropyOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <cmath>
diff --git a/app/Operations/EntropyOp.h b/app/Operations/EntropyOp.h
index 660d1c0056b95fe854bd866f111a3b0ffe433527..2848b6fd277e33e23ce7f3a0ce7cdfa84047f3af 100644
--- a/app/Operations/EntropyOp.h
+++ b/app/Operations/EntropyOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef ENTROPYOP_H
diff --git a/app/Operations/FFTDialog.cpp b/app/Operations/FFTDialog.cpp
index 32e51e17184a08afb3118f880b54f8329a32eb4d..2c203189b8f6de2e1d2faf820f93ff93ef42ab9d 100644
--- a/app/Operations/FFTDialog.cpp
+++ b/app/Operations/FFTDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "FFTDialog.h"
diff --git a/app/Operations/FFTDialog.h b/app/Operations/FFTDialog.h
index c04203f1d77cc4f5099185c03757ed872ec7ebec..c1174714aea5a1dc9b46382f1da2652916524b79 100644
--- a/app/Operations/FFTDialog.h
+++ b/app/Operations/FFTDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef FFTDIALOG_H
diff --git a/app/Operations/FFTOp.cpp b/app/Operations/FFTOp.cpp
index bb4afc4536681f4dd17d5b465451ea575ef2da04..644295580f9d33f65be4b0ae53e5bd4d6ee060b8 100644
--- a/app/Operations/FFTOp.cpp
+++ b/app/Operations/FFTOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 #include "FFTOp.h"
 #include "../Tools.h"
diff --git a/app/Operations/FFTOp.h b/app/Operations/FFTOp.h
index e53ea804a9fed8d0e9fa4088a9171f156657438f..c7cd38025895c4ad0dda4b0a3348cbfb5c9be4af 100644
--- a/app/Operations/FFTOp.h
+++ b/app/Operations/FFTOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef FFTOP_H
diff --git a/app/Operations/FlipOp.cpp b/app/Operations/FlipOp.cpp
index 7da3320922043cdcf1effc0839a1fb4830480c99..d5bb8a7d219c5a614ea51311e682b1255fd8dcda 100644
--- a/app/Operations/FlipOp.cpp
+++ b/app/Operations/FlipOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <vector>
diff --git a/app/Operations/FlipOp.h b/app/Operations/FlipOp.h
index c5804503ce748a22f79cbe116ffb8400d8d774eb..b5ec19b375984db04262c0273c2788c6c6e23467 100644
--- a/app/Operations/FlipOp.h
+++ b/app/Operations/FlipOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef FLIPOP_H
diff --git a/app/Operations/HadamardOp.cpp b/app/Operations/HadamardOp.cpp
index 0e423d8c0b669d2e474cae0fc4efe107c52b03c0..e7b8ef33a9e7a3ecfb9bef3893d33eff86b7fe7a 100644
--- a/app/Operations/HadamardOp.cpp
+++ b/app/Operations/HadamardOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "HadamardOp.h"
diff --git a/app/Operations/HadamardOp.h b/app/Operations/HadamardOp.h
index 9bf143ec3d81b50a2591211e7f1e0f2efa29a94f..b1673e49c1274b01836ab8f333e29c019896ad25 100644
--- a/app/Operations/HadamardOp.h
+++ b/app/Operations/HadamardOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef HADAMARDOP_H
diff --git a/app/Operations/HistogramOp.cpp b/app/Operations/HistogramOp.cpp
index 815efc36174fc8dd76c9f9a1afeb0e44c408ea4b..765fe332654316ef9a4332c9234978609864ca10 100644
--- a/app/Operations/HistogramOp.cpp
+++ b/app/Operations/HistogramOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "HistogramOp.h"
diff --git a/app/Operations/HistogramOp.h b/app/Operations/HistogramOp.h
index 616895d5462cf210687e8b24888a90d97d952ada..675e697353b845c96c5661fa7ff2e8ddc40cacff 100644
--- a/app/Operations/HistogramOp.h
+++ b/app/Operations/HistogramOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef HISTOGRAMOP_H
diff --git a/app/Operations/HoughDialog.cpp b/app/Operations/HoughDialog.cpp
index b5e45b4eb28aaa771dc0ca06f09cfec20af707ec..337f3c903db15ab255211e748328f82abbc9a01b 100644
--- a/app/Operations/HoughDialog.cpp
+++ b/app/Operations/HoughDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "HoughDialog.h"
diff --git a/app/Operations/HoughDialog.h b/app/Operations/HoughDialog.h
index 6a7ccb0117b6ebd53e36c8fa8af96d553c95a64a..4e8a2f29a085cedfb2dec0682ed64a33be4cc46b 100644
--- a/app/Operations/HoughDialog.h
+++ b/app/Operations/HoughDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef HOUGHDIALOG_H
diff --git a/app/Operations/HoughOp.cpp b/app/Operations/HoughOp.cpp
index 81f43464cfb618985b850b659f66548ba6c584a1..07fe5bb90f3a4b22fb6740b7982921a6b212fb10 100644
--- a/app/Operations/HoughOp.cpp
+++ b/app/Operations/HoughOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "HoughOp.h"
diff --git a/app/Operations/HoughOp.h b/app/Operations/HoughOp.h
index 2c091479a387481d20294fa82c31971b3ba13e45..672d45d67ef6e52afe70f529e9e8f62c47272ef2 100644
--- a/app/Operations/HoughOp.h
+++ b/app/Operations/HoughOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef HOUGHOP_H
diff --git a/app/Operations/Huffman.cpp b/app/Operations/Huffman.cpp
index 2ed3e7e422e0d3ff04cc60230f6af4172d4d1c35..01fd42ca3b2e06e278661b4f2a3c78cf64ca044e 100644
--- a/app/Operations/Huffman.cpp
+++ b/app/Operations/Huffman.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "Huffman.h"
diff --git a/app/Operations/Huffman.h b/app/Operations/Huffman.h
index b8b658c75799d1230f6dc8b0e458d8d43225278d..4bf801058cd9634852cf2d4aaadc5068b420685d 100644
--- a/app/Operations/Huffman.h
+++ b/app/Operations/Huffman.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef HUFFMAN_H
diff --git a/app/Operations/HuffmanOp.cpp b/app/Operations/HuffmanOp.cpp
index 3cb1e75337d6674b9f548115d08c26a3d36c6c31..9b9f49b8ebf7da7d818ca2b0197157027d3466aa 100644
--- a/app/Operations/HuffmanOp.cpp
+++ b/app/Operations/HuffmanOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "HuffmanOp.h"
diff --git a/app/Operations/HuffmanOp.h b/app/Operations/HuffmanOp.h
index e3324882ee2d224875d16abcbb671f16d6a3817d..c6a1c08a69cf4ac3218b3c03aabd2d3b67c2dc9e 100644
--- a/app/Operations/HuffmanOp.h
+++ b/app/Operations/HuffmanOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef HUFFMANOP_H
diff --git a/app/Operations/IFFTOp.cpp b/app/Operations/IFFTOp.cpp
index 78373eb4183732859d7718a5f4c7389f25549718..fce4b0e9a20e7b34b82956dbeccc01dcb033900d 100644
--- a/app/Operations/IFFTOp.cpp
+++ b/app/Operations/IFFTOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 #include <QLabel>
 #include <QDialog>
diff --git a/app/Operations/IFFTOp.h b/app/Operations/IFFTOp.h
index 0bf0b322e3d04968659a84f9c212cd670fa9e5ab..c7d165ad92641baf759003ee69a0a8f73eec4029 100644
--- a/app/Operations/IFFTOp.h
+++ b/app/Operations/IFFTOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef IFFTOP_H
diff --git a/app/Operations/InverseHoughDialog.cpp b/app/Operations/InverseHoughDialog.cpp
index 65317492ced5f111b93caa665b8b871cb57a2698..5f81105b6fdf3403c488c3ea2ad1d6f4819e506c 100644
--- a/app/Operations/InverseHoughDialog.cpp
+++ b/app/Operations/InverseHoughDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "InverseHoughDialog.h"
diff --git a/app/Operations/InverseHoughDialog.h b/app/Operations/InverseHoughDialog.h
index e9ea27984c8b2fa858c51d7e01bf5bd92d9a0f22..8e1cbeea1d303bab0121471f11c1a5d0e812a35d 100644
--- a/app/Operations/InverseHoughDialog.h
+++ b/app/Operations/InverseHoughDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef INVERSEHOUGHDIALOG_H
diff --git a/app/Operations/InverseHoughOp.cpp b/app/Operations/InverseHoughOp.cpp
index 6982ca287577301e3b75475aed99a2afa039e3ef..931f00d531a415ac50c88a3e94161d1a13da94ed 100644
--- a/app/Operations/InverseHoughOp.cpp
+++ b/app/Operations/InverseHoughOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "InverseHoughOp.h"
diff --git a/app/Operations/InverseHoughOp.h b/app/Operations/InverseHoughOp.h
index e3096d4d40414a9fc6a2f5673e08725df5c4304b..0673cb9c6e41598d34d98abd23541f8e4292872b 100644
--- a/app/Operations/InverseHoughOp.h
+++ b/app/Operations/InverseHoughOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef INVERSEHOUGHOP_H
diff --git a/app/Operations/InversePyramidDialog.cpp b/app/Operations/InversePyramidDialog.cpp
index 07d55724c6ebcca755fe4828f19ca1dec40dbdd4..2c09ff23a9a17a4be88c97c6a004ce459b2ce702 100644
--- a/app/Operations/InversePyramidDialog.cpp
+++ b/app/Operations/InversePyramidDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "InversePyramidDialog.h"
diff --git a/app/Operations/InversePyramidDialog.h b/app/Operations/InversePyramidDialog.h
index 79541e7d637356cf25e77ed2958845beecb6d2b0..f510674a92ab43de52dc2107a91c30236809e668 100644
--- a/app/Operations/InversePyramidDialog.h
+++ b/app/Operations/InversePyramidDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef INVERSEPYRAMIDDIALOG_H
diff --git a/app/Operations/InversePyramidOp.cpp b/app/Operations/InversePyramidOp.cpp
index 0ae4d17476f26ff9ee09b6f6c639e2b8df88d01f..345a65e5621910935343429a665323f045e3337f 100644
--- a/app/Operations/InversePyramidOp.cpp
+++ b/app/Operations/InversePyramidOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "InversePyramidOp.h"
diff --git a/app/Operations/InversePyramidOp.h b/app/Operations/InversePyramidOp.h
index 7b5cbc76ba25771f2d6a4be9404ca71d720f7b26..995cce117f98aa9fddff4a59c1bcb59d45aca492 100644
--- a/app/Operations/InversePyramidOp.h
+++ b/app/Operations/InversePyramidOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef INVERSEPYRAMID_H
diff --git a/app/Operations/MeanSquaredErrorOp.cpp b/app/Operations/MeanSquaredErrorOp.cpp
index 92d2377fb93a64b31d1b6240f458fe7bb9f22f0c..838a2fe661c8b1067cb25fda3f306f953541b821 100644
--- a/app/Operations/MeanSquaredErrorOp.cpp
+++ b/app/Operations/MeanSquaredErrorOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QLabel>
diff --git a/app/Operations/MeanSquaredErrorOp.h b/app/Operations/MeanSquaredErrorOp.h
index 165d63cb8a8e403639f4fd6bd697f57908db3209..e3bc8c695562d052bbf9f30c963ade244e2e2de3 100644
--- a/app/Operations/MeanSquaredErrorOp.h
+++ b/app/Operations/MeanSquaredErrorOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef MEANSQUAREDERROROP_H
diff --git a/app/Operations/NoiseOp.cpp b/app/Operations/NoiseOp.cpp
index 16e99101c887eb281a31d5fd16f62a12b27926d9..e1db5510d781570391aa43935589e902475635ee 100644
--- a/app/Operations/NoiseOp.cpp
+++ b/app/Operations/NoiseOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QDialog>
diff --git a/app/Operations/NoiseOp.h b/app/Operations/NoiseOp.h
index cd2c52ea798cb6ba1bbe4bee8ae56d69ecb68bc7..dd15d9295d16860ac23e2d968fcd4431af0a585a 100644
--- a/app/Operations/NoiseOp.h
+++ b/app/Operations/NoiseOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef NOISEOP_H
diff --git a/app/Operations/PointOp.cpp b/app/Operations/PointOp.cpp
index e7ba6a938386759b66ec53e9aaee4f5765919a43..05261d72062e0e31b7d5c02ebf4000899d168a8a 100644
--- a/app/Operations/PointOp.cpp
+++ b/app/Operations/PointOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QWidget>
diff --git a/app/Operations/PointOp.h b/app/Operations/PointOp.h
index bc6e1b449722c9c47988cdeae711b0975f7fa1bf..9ce41290748a1e18c60cee6f1908037eb45fe09f 100644
--- a/app/Operations/PointOp.h
+++ b/app/Operations/PointOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef PointOp_H
diff --git a/app/Operations/PseudoColorOp.cpp b/app/Operations/PseudoColorOp.cpp
index 20affcd0d9489ee97bebe2f2d66445c434482bba..feb5b851a845b0b9f2a2ca9256ac7b3b0649bce5 100644
--- a/app/Operations/PseudoColorOp.cpp
+++ b/app/Operations/PseudoColorOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "PseudoColorOp.h"
diff --git a/app/Operations/PseudoColorOp.h b/app/Operations/PseudoColorOp.h
index 284bef820f698861f567cbf30bea44d36ecf5e06..5c9b50a3a9d0a0aa0b6131bb7099dbc31300f3b5 100644
--- a/app/Operations/PseudoColorOp.h
+++ b/app/Operations/PseudoColorOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <Operation.h>
diff --git a/app/Operations/PyramidDialog.cpp b/app/Operations/PyramidDialog.cpp
index 0e7ca5961e7573297a61bc0e88465b1597112e78..9c77919f0922bc407394e405f8f2a2d36bf813c6 100644
--- a/app/Operations/PyramidDialog.cpp
+++ b/app/Operations/PyramidDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "PyramidDialog.h"
diff --git a/app/Operations/PyramidDialog.h b/app/Operations/PyramidDialog.h
index fcf8a4d9a04d2f1e369ede2ce98064a8f0743238..9964d47f117f141304335b574b9282de0ad5768a 100644
--- a/app/Operations/PyramidDialog.h
+++ b/app/Operations/PyramidDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef PYRAMIDDIALOG_H
diff --git a/app/Operations/PyramidOp.cpp b/app/Operations/PyramidOp.cpp
index c3db3cfeaaa8c0b749013f42b4f612f6f8ad7750..c9a6e5c019006060fa4c9ae83d3e34bbb84cd11d 100644
--- a/app/Operations/PyramidOp.cpp
+++ b/app/Operations/PyramidOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "PyramidOp.h"
diff --git a/app/Operations/PyramidOp.h b/app/Operations/PyramidOp.h
index 4a2090c140688729c8745d4ed02f876b857c5430..f5960cf5f17e5b6bb6780b155cdde3088650ee37 100644
--- a/app/Operations/PyramidOp.h
+++ b/app/Operations/PyramidOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef PYRAMIDOP_H
diff --git a/app/Operations/Quantification.cpp b/app/Operations/Quantification.cpp
index 8a4d5600d8176d753ff919416225b6b668f77077..cf19bcb24cb09b39bdd8aafe195aadbe8c6ab5d3 100644
--- a/app/Operations/Quantification.cpp
+++ b/app/Operations/Quantification.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "Quantification.h"
diff --git a/app/Operations/Quantification.h b/app/Operations/Quantification.h
index c505cdc21015eac829febd18e1ca0a24e9c9fdf5..d15d5a5adcc75a77ed95b9d50bba69a12f917403 100644
--- a/app/Operations/Quantification.h
+++ b/app/Operations/Quantification.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef QUANTIFICATION_H
diff --git a/app/Operations/QuantificationDialog.cpp b/app/Operations/QuantificationDialog.cpp
index 9f04465f18e777dd913b04d0d1117e650491156d..8f904d0c46d0f57a3cfa32f16308644fc6d31e8b 100644
--- a/app/Operations/QuantificationDialog.cpp
+++ b/app/Operations/QuantificationDialog.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "QuantificationDialog.h"
diff --git a/app/Operations/QuantificationDialog.h b/app/Operations/QuantificationDialog.h
index 39d40debdbb428d62967239531d1a56dc5c34f48..696b0bffbe687ac35aa4f891fa45bff8e069eef7 100644
--- a/app/Operations/QuantificationDialog.h
+++ b/app/Operations/QuantificationDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef QUANTIFICATIONDIALOG_H
diff --git a/app/Operations/QuantificationOp.cpp b/app/Operations/QuantificationOp.cpp
index b56681da75ff79678b8c65c8957d94b367bea10c..a813f2d30a524e9a7cc4935940c20bbf1139ab76 100644
--- a/app/Operations/QuantificationOp.cpp
+++ b/app/Operations/QuantificationOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "QuantificationOp.h"
diff --git a/app/Operations/QuantificationOp.h b/app/Operations/QuantificationOp.h
index decbab9c5cab03cadb3cbd0ec7fa214b485e8e19..a3610aa814939ade6d2c44737f9b251d5ddaae31 100644
--- a/app/Operations/QuantificationOp.h
+++ b/app/Operations/QuantificationOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef QUANTIFICATIONOP_H
diff --git a/app/Operations/QuantificationWidget.cpp b/app/Operations/QuantificationWidget.cpp
index ca3d2e5cbbdeb3b42b2a28916e66d53b96fcb9e1..55dbc7ab5b8834b4c0e34090cfbedfe42c2db7e5 100644
--- a/app/Operations/QuantificationWidget.cpp
+++ b/app/Operations/QuantificationWidget.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QGridLayout>
diff --git a/app/Operations/QuantificationWidget.h b/app/Operations/QuantificationWidget.h
index 72dc61ec9a72921faf3ac31f07fdd52a5a7f01ce..884723559a928c31373188554c8a356c52a6772b 100644
--- a/app/Operations/QuantificationWidget.h
+++ b/app/Operations/QuantificationWidget.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef QUANTIFICATIONWIDGET_H
diff --git a/app/Operations/RandomImgOp.cpp b/app/Operations/RandomImgOp.cpp
index 992e08206afb16f576b80b49c18a249af8a7122c..23f1c8c90ec935f99d0c7bd60e8e8496ca6d8720 100644
--- a/app/Operations/RandomImgOp.cpp
+++ b/app/Operations/RandomImgOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 #include <QDialog>
 #include <QFormLayout>
diff --git a/app/Operations/RandomImgOp.h b/app/Operations/RandomImgOp.h
index 937fb12199c730fcbe22d2ba0d1fa8eefc111ee2..cc97b94dbdae746a4d6a668b289b4c98e77baa10 100644
--- a/app/Operations/RandomImgOp.h
+++ b/app/Operations/RandomImgOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef RANDOMIMGOP_H
diff --git a/app/Operations/RejectionRingOp.cpp b/app/Operations/RejectionRingOp.cpp
index 5f0beb2f32e0265e1918e1801cd68725b76a2f9b..645046870cedeb6094e32d5d0c06b97245818f82 100644
--- a/app/Operations/RejectionRingOp.cpp
+++ b/app/Operations/RejectionRingOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "RejectionRingOp.h"
diff --git a/app/Operations/RejectionRingOp.h b/app/Operations/RejectionRingOp.h
index d7695ce08dc765c545db64947dab39406b69959f..3d9da4bf00bc2c4ef1966cd08bf86188c76918ac 100644
--- a/app/Operations/RejectionRingOp.h
+++ b/app/Operations/RejectionRingOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef REJECTIONRINGOP_H
diff --git a/app/Operations/RotateOp.cpp b/app/Operations/RotateOp.cpp
index 0956afe831d0b134673c4ebc1db488d9de0e16a5..7d165f6dffdeba9fa10f21aa769780e3ed26c9fc 100644
--- a/app/Operations/RotateOp.cpp
+++ b/app/Operations/RotateOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QDialogButtonBox>
diff --git a/app/Operations/RotateOp.h b/app/Operations/RotateOp.h
index 36529e43e3e4d8c73e6ede3cea5b301a8208aead..fdcddad70de627c609aebbf13d65c325e62c8326 100644
--- a/app/Operations/RotateOp.h
+++ b/app/Operations/RotateOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef ROTATEOP_H
diff --git a/app/Operations/ScalingOp.cpp b/app/Operations/ScalingOp.cpp
index a672ce400e5f79bed70d7287bc39b7bf8889a604..00b30366ecd2a2c0177283246e8982d29b3fa976 100644
--- a/app/Operations/ScalingOp.cpp
+++ b/app/Operations/ScalingOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "ScalingOp.h"
diff --git a/app/Operations/ScalingOp.h b/app/Operations/ScalingOp.h
index 815084b74c39f80ff8b1cc43f186c28ed7149055..e70b22448998096bad6f67e52bf6ee5dcb22eb3e 100644
--- a/app/Operations/ScalingOp.h
+++ b/app/Operations/ScalingOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef SCALINGOP_H
diff --git a/app/Operations/SeparatorOp.cpp b/app/Operations/SeparatorOp.cpp
index 43d0207c8993496d398d555686592f6c43aae2cc..6c7e9109718453a0bfb79f488fc5ac7b290c61eb 100644
--- a/app/Operations/SeparatorOp.cpp
+++ b/app/Operations/SeparatorOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "SeparatorOp.h"
diff --git a/app/Operations/SeparatorOp.h b/app/Operations/SeparatorOp.h
index 660e633062587da2452d628fa4b82867da8e8a73..e809cdefce43a835ec5281b3a40d8ce69a3ad4d9 100644
--- a/app/Operations/SeparatorOp.h
+++ b/app/Operations/SeparatorOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef SEPARATOROP_H
diff --git a/app/Operations/SignalToNoiseOp.cpp b/app/Operations/SignalToNoiseOp.cpp
index f6b90790d62967a4aef8f711acb6b883907e713c..731d9c1f3d4ed03f47da938b547c04b58f6b56c1 100644
--- a/app/Operations/SignalToNoiseOp.cpp
+++ b/app/Operations/SignalToNoiseOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 #include <QLabel>
 #include <QDialog>
diff --git a/app/Operations/SignalToNoiseOp.h b/app/Operations/SignalToNoiseOp.h
index 6ffd9b118284dfd4bc1c5dda092e21cfa54ffd8b..9027e9509c5a13013da16a904e3f0b58322a6972 100644
--- a/app/Operations/SignalToNoiseOp.h
+++ b/app/Operations/SignalToNoiseOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef SIGNALTONOISEOP_H
diff --git a/app/Operations/SinusSynthesisOp.cpp b/app/Operations/SinusSynthesisOp.cpp
index f97d0ed8ecaa71a86aaa475fd531686eafd033ce..df7d45dff8fff0d65d04a73ca03b727276674f29 100644
--- a/app/Operations/SinusSynthesisOp.cpp
+++ b/app/Operations/SinusSynthesisOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "SinusSynthesisOp.h"
diff --git a/app/Operations/SinusSynthesisOp.h b/app/Operations/SinusSynthesisOp.h
index 2573247aba5f4e903a04dd536ec0c9b9c7544e05..f126c4c8adeb511406afdf10caf8938bd72a16e7 100644
--- a/app/Operations/SinusSynthesisOp.h
+++ b/app/Operations/SinusSynthesisOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef SINUSSYNTHESISOP_H
diff --git a/app/Operations/SplitColorOp.cpp b/app/Operations/SplitColorOp.cpp
index e8d0094c125e5a61cde64072dd6380042325a422..1f100272aa4a4c4ea7990282a95e5cf4142c2a3f 100644
--- a/app/Operations/SplitColorOp.cpp
+++ b/app/Operations/SplitColorOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 #include <GrayscaleImage.h>
 
diff --git a/app/Operations/SplitColorOp.h b/app/Operations/SplitColorOp.h
index 614573d34cffa407c32486ab631bbc0fb4b12760..50a13099abb91c0faacb065390851ff05a044656 100644
--- a/app/Operations/SplitColorOp.h
+++ b/app/Operations/SplitColorOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef SPLITCOLOROP_H
diff --git a/app/Operations/ThresholdDialog.h b/app/Operations/ThresholdDialog.h
index a33416c546a5dd3d0fd9e7608fecb25bbe8d97a9..de46a2626efc0b3b1d8d7bc63d4b48c5303ecd1b 100644
--- a/app/Operations/ThresholdDialog.h
+++ b/app/Operations/ThresholdDialog.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef THRESHOLDDIALOG_H
diff --git a/app/Operations/ThresholdOp.h b/app/Operations/ThresholdOp.h
index 0c921c00106d459e31ab8cdb50dd9740b9bcf677..98ddc8502bc0f6e55f24504b3e908b9c9c4eb477 100644
--- a/app/Operations/ThresholdOp.h
+++ b/app/Operations/ThresholdOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef THRESHOLDOP_H
diff --git a/app/Operations/Transforms.cpp b/app/Operations/Transforms.cpp
index 0bf92ec0e5078e1df0d44c6567b5129264f32502..36bf14280afc0058f4f958b3ff348e7911b139bc 100644
--- a/app/Operations/Transforms.cpp
+++ b/app/Operations/Transforms.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "Transforms.h"
diff --git a/app/Operations/Transforms.h b/app/Operations/Transforms.h
index 34414b241b19aa722fa5b92ac418797df3c1a24a..5c7fbe08858051f65e442f93d45483f30012b082 100644
--- a/app/Operations/Transforms.h
+++ b/app/Operations/Transforms.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef TRANSFORMS_H
diff --git a/app/Operations/TranslateOp.h b/app/Operations/TranslateOp.h
index 2fba79f892c692ea12b1302eb1c6352bfb9ff27b..ccacdb5dc2ae0a12801ca07bbfd66c1a3ead930d 100644
--- a/app/Operations/TranslateOp.h
+++ b/app/Operations/TranslateOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef TRANSLATION_H
diff --git a/app/Operations/ZeroCrossingOp.cpp b/app/Operations/ZeroCrossingOp.cpp
index 468dc019e18d8ea63ff047c70a086850c1f5e369..d9fd38eb61d6d3d45101637d15e07b150f185c21 100644
--- a/app/Operations/ZeroCrossingOp.cpp
+++ b/app/Operations/ZeroCrossingOp.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QDialog>
diff --git a/app/Operations/ZeroCrossingOp.h b/app/Operations/ZeroCrossingOp.h
index f2784f7a47f74572d8415bff71349fb903117713..9c4ad6bc40005cdb1919b5f3e472ca84020ee32c 100644
--- a/app/Operations/ZeroCrossingOp.h
+++ b/app/Operations/ZeroCrossingOp.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef ZEROCROSSINGOP_H
diff --git a/app/Services/INSAimageService.cpp b/app/Services/ImageINSAService.cpp
similarity index 80%
rename from app/Services/INSAimageService.cpp
rename to app/Services/ImageINSAService.cpp
index f0002bed415e8be4a0adfe39d583d1545d487679..1bf07e86b1d14ca32a5ba1e8ac8175b74e12f4f8 100644
--- a/app/Services/INSAimageService.cpp
+++ b/app/Services/ImageINSAService.cpp
@@ -1,35 +1,35 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <GenericInterface.h>
 
-#include "INSAimageService.h"
+#include "ImageINSAService.h"
 
 using namespace genericinterface;
 using namespace std;
 
-INSAimageService::INSAimageService(GenericInterface* gi) : WindowService(Qt::LeftDockWidgetArea) {
+ImageINSAService::ImageINSAService(GenericInterface* gi) : WindowService(Qt::LeftDockWidgetArea) {
     _gi = gi;
     _operationBar = new OperationBar();
 }
 
-void INSAimageService::display(GenericInterface* gi)
+void ImageINSAService::display(GenericInterface* gi)
 {
     WindowService::display(gi);
 //    QDockWidget* _operationDock = new QDockWidget(tr("Operations"), gi);
@@ -49,12 +49,12 @@ void INSAimageService::display(GenericInterface* gi)
     _statusEdit->hide();
 }
 
-void INSAimageService::connect(GenericInterface* gi)
+void ImageINSAService::connect(GenericInterface* gi)
 {
     WindowService::connect(gi);
 }
 
-void INSAimageService::addOpSet(OpSet* opSet) {
+void ImageINSAService::addOpSet(OpSet* opSet) {
     for(vector<OpSetService*>::iterator it = _opSetServices.begin(); it != _opSetServices.end(); ++it) {
         if((*it)->getOpSet() == opSet) {
             return;
@@ -69,7 +69,7 @@ void INSAimageService::addOpSet(OpSet* opSet) {
     }
 }
 
-void INSAimageService::removeOpSet(OpSet* opSet) {
+void ImageINSAService::removeOpSet(OpSet* opSet) {
     for(vector<OpSetService*>::iterator it = _opSetServices.begin(); it != _opSetServices.end(); ++it) {
         if((*it)->getOpSet() == opSet) {
             _gi->removeService(*it);
@@ -79,14 +79,14 @@ void INSAimageService::removeOpSet(OpSet* opSet) {
     }
 }
 
-void INSAimageService::outputText(QString text) {
+void ImageINSAService::outputText(QString text) {
     _statusEdit->append(text);
     _statusEdit->show();
     if(_statusEdit->minimumHeight() < 92) _statusEdit->setMinimumHeight(_statusEdit->minimumHeight()+24);
 //    _statusEdit->setMinimumHeight(32);
 }
 
-void INSAimageService::addText(std::string s) {
+void ImageINSAService::addText(std::string s) {
     _statusEdit->append(QString::fromStdString(s));
     _statusEdit->show();
     if(_statusEdit->minimumHeight() < 92) _statusEdit->setMinimumHeight(_statusEdit->minimumHeight()+24);
diff --git a/app/Services/INSAimageService.h b/app/Services/ImageINSAService.h
similarity index 73%
rename from app/Services/INSAimageService.h
rename to app/Services/ImageINSAService.h
index ef02329d206bcd9998419aee9d423a6680b7fedf..77d24bb85fb725b98eb9ee532a50f3b350525a2c 100644
--- a/app/Services/INSAimageService.h
+++ b/app/Services/ImageINSAService.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGESERVICE_H
-#define INSAIMAGESERVICE_H
+#ifndef IMAGEINSASERVICE_H
+#define IMAGEINSASERVICE_H
 
 #include <QTextEdit>
 
@@ -30,11 +30,11 @@
 #include "../Widgets/OperationBar.h"
 #include "Services/WindowService.h"
 
-class INSAimageService : public genericinterface::WindowService
+class ImageINSAService : public genericinterface::WindowService
 {
   Q_OBJECT
   public:
-    INSAimageService(genericinterface::GenericInterface* gi);
+    ImageINSAService(genericinterface::GenericInterface* gi);
     void display(genericinterface::GenericInterface* gi);
     void connect(genericinterface::GenericInterface* gi);
 
diff --git a/app/Services/OpSetService.cpp b/app/Services/OpSetService.cpp
index c2e3fd523ff3e9249d29f16b52ac05f50310ac34..ff57fc07ac54425f7a80b93e5f538054bc9ba4ac 100644
--- a/app/Services/OpSetService.cpp
+++ b/app/Services/OpSetService.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "OpSetService.h"
diff --git a/app/Services/OpSetService.h b/app/Services/OpSetService.h
index 9a21f38236888de8295b7088c235c5e9018a0b09..34a69e50203f2ba54bb2d406fba179e9be3feac0 100644
--- a/app/Services/OpSetService.h
+++ b/app/Services/OpSetService.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef OPSETSERVICE_H
diff --git a/app/Services/OperationService.cpp b/app/Services/OperationService.cpp
index 8542a41c8d829e548e87a2a7413912b3da2daa69..b1e60ae38bc35cb357d78b2f27c9bec5e8ee9720 100644
--- a/app/Services/OperationService.cpp
+++ b/app/Services/OperationService.cpp
@@ -1,27 +1,27 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "OperationService.h"
 #include <GenericInterface.h>
 #include <Widgets/ImageWidgets/DoubleImageWindow.h>
 #include <Widgets/ImageWidgets/StandardImageWindow.h>
-#include "INSAimageService.h"
+#include "ImageINSAService.h"
 
 #include <QMessageBox>
 #include <QLibrary>
@@ -78,7 +78,7 @@ void OperationService::operation() {
         wndList.insert(pair<const ImageWindow*, string>(*it, (*it)->windowTitle().toStdString()));
     }
 
-    _operation->operator()(dynamic_cast<INSAimageService*>(ws));
+    _operation->operator()(dynamic_cast<ImageINSAService*>(ws));
     
 //    for(vector<QWidget*>::iterator it = result.begin(); it < result.end(); ++it) {
 //        QWidget* widget = *it;
diff --git a/app/Services/OperationService.h b/app/Services/OperationService.h
index 045657753d7a3895b34fe751d834f86c440cf9b2..bbae33b17bbeefba56bf2ccdd224b18a196d1e7f 100644
--- a/app/Services/OperationService.h
+++ b/app/Services/OperationService.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef OPERATIONSERVICE_H
diff --git a/app/Services/PluginManager.cpp b/app/Services/PluginManager.cpp
index 4fa39704554aac27da309ed510031bc85737f487..16e49a16ae1395414d7afd20d038f68a0c9d7f3e 100644
--- a/app/Services/PluginManager.cpp
+++ b/app/Services/PluginManager.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "PluginManager.h"
diff --git a/app/Services/PluginManager.h b/app/Services/PluginManager.h
index e880b60d432f558f0764e2afc09a51ecdabc3447..2e87c45812ed3a77a37f8caaf92c8b5828d22d8e 100644
--- a/app/Services/PluginManager.h
+++ b/app/Services/PluginManager.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef PLUGINMANAGER_H
diff --git a/app/Tools.h b/app/Tools.h
index 21e153f4e9c43e5bdcd1d0a2984d09d8a5da76f7..9a94b0bb379e602e76902ce5bffc389cc6f4b04d 100644
--- a/app/Tools.h
+++ b/app/Tools.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef TOOLS_H
diff --git a/app/Widgets/ImageZoneSelector.cpp b/app/Widgets/ImageZoneSelector.cpp
index 1ff8b6f8236dd2c329254d10eb8b0be78102bc81..50086214c6858eae328bafd2c7f9be04b0b1582d 100644
--- a/app/Widgets/ImageZoneSelector.cpp
+++ b/app/Widgets/ImageZoneSelector.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "ImageZoneSelector.h"
diff --git a/app/Widgets/ImageZoneSelector.h b/app/Widgets/ImageZoneSelector.h
index 8d6f09f6676760b38b303aeae84ba0d241196fdc..53e53d428942c2133887fce825bcbd637fda7cbf 100644
--- a/app/Widgets/ImageZoneSelector.h
+++ b/app/Widgets/ImageZoneSelector.h
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef IMAGEZONESELECTOR_H
diff --git a/app/Widgets/OperationBar.cpp b/app/Widgets/OperationBar.cpp
index caf6cf48305257011187aa944ead22f5faa6c2d2..1e1a5d50d4a3255172c78e287704d9905512cf95 100644
--- a/app/Widgets/OperationBar.cpp
+++ b/app/Widgets/OperationBar.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "OperationBar.h"
diff --git a/app/Widgets/OperationBar.h b/app/Widgets/OperationBar.h
index c0192ac4503519f8f163683ae453c28e1385e8e4..f0fd82c17b162b50bd6c27675b0a1b16c1b5e9bf 100644
--- a/app/Widgets/OperationBar.h
+++ b/app/Widgets/OperationBar.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_OPERATIONBAR_H
-#define INSAIMAGE_OPERATIONBAR_H
+#ifndef IMAGEINSA_OPERATIONBAR_H
+#define IMAGEINSA_OPERATIONBAR_H
 
 #include <QTreeView>
 
diff --git a/app/insaimage_app_res.qrc b/app/imageinsa_app_res.qrc
similarity index 100%
rename from app/insaimage_app_res.qrc
rename to app/imageinsa_app_res.qrc
diff --git a/app/insaimage_en.ts b/app/imageinsa_en.ts
similarity index 98%
rename from app/insaimage_en.ts
rename to app/imageinsa_en.ts
index 4a828fa662e03623790d4c05c8890699a0395905..0bd2d57c210f9ae2de4561b857f5fe4a7e4f9f47 100644
--- a/app/insaimage_en.ts
+++ b/app/imageinsa_en.ts
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS>
-<TS version="2.1" language="en_US">
+<TS version="2.0" language="en_US">
 <context>
     <name></name>
     <message>
@@ -769,9 +769,9 @@ Number of classes = %1 </translation>
     </message>
 </context>
 <context>
-    <name>INSAimageService</name>
+    <name>ImageINSAService</name>
     <message>
-        <location filename="Services/INSAimageService.cpp" line="44"/>
+        <location filename="Services/ImageINSAService.cpp" line="44"/>
         <source>Informations</source>
         <translation>Informations</translation>
     </message>
@@ -1155,49 +1155,44 @@ Number of classes = %1 </translation>
 <context>
     <name>PluginManager</name>
     <message>
-        <location filename="Services/PluginManager.cpp" line="36"/>
-        <source>Plugins</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <location filename="Services/PluginManager.cpp" line="52"/>
+        <location filename="Services/PluginManager.cpp" line="41"/>
         <source>&amp;Plugin</source>
         <translation>&amp;Plugin</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="54"/>
+        <location filename="Services/PluginManager.cpp" line="43"/>
         <source>&amp;Load plugin</source>
         <translation>&amp;Load plugin</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="55"/>
+        <location filename="Services/PluginManager.cpp" line="44"/>
         <source>&amp;Unload all plugins</source>
         <translation>&amp;Unload all plugins</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="78"/>
+        <location filename="Services/PluginManager.cpp" line="83"/>
         <source>Load plugin</source>
         <translation>Load plugin</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="78"/>
+        <location filename="Services/PluginManager.cpp" line="83"/>
         <source>Plugin (*.dll *.so *.dylib)</source>
         <translation>Plugin (*.dll *.so *.dylib)</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="173"/>
-        <location filename="Services/PluginManager.cpp" line="184"/>
-        <location filename="Services/PluginManager.cpp" line="196"/>
+        <location filename="Services/PluginManager.cpp" line="178"/>
+        <location filename="Services/PluginManager.cpp" line="189"/>
+        <location filename="Services/PluginManager.cpp" line="201"/>
         <source>Error loading plugin</source>
         <translation>Error loading plugin</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="184"/>
+        <location filename="Services/PluginManager.cpp" line="189"/>
         <source>Could not find the plugin&apos;s entry point &quot;loadPlugin&quot;</source>
         <translation>Could not find the plugin&apos;s entry point &quot;loadPlugin&quot;</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="196"/>
+        <location filename="Services/PluginManager.cpp" line="201"/>
         <source>The getPlugin entry point does not return a valid Plugin</source>
         <translation>The getPlugin entry point does not return a valid Plugin</translation>
     </message>
diff --git a/app/insaimage_fr.ts b/app/imageinsa_fr.ts
similarity index 99%
rename from app/insaimage_fr.ts
rename to app/imageinsa_fr.ts
index 81490d98b9a236b708424101bef83198965eb613..ea1aa45be185fd01e736d19acca4cc5b9c12d129 100644
--- a/app/insaimage_fr.ts
+++ b/app/imageinsa_fr.ts
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS>
-<TS version="2.1" language="fr_FR">
+<TS version="2.0" language="fr_FR">
 <context>
     <name></name>
     <message>
@@ -769,9 +769,9 @@ Nombre de classes = %1 </translation>
     </message>
 </context>
 <context>
-    <name>INSAimageService</name>
+    <name>ImageINSAService</name>
     <message>
-        <location filename="Services/INSAimageService.cpp" line="44"/>
+        <location filename="Services/ImageINSAService.cpp" line="44"/>
         <source>Informations</source>
         <translation>Informations</translation>
     </message>
@@ -1155,49 +1155,44 @@ Nombre de classes = %1 </translation>
 <context>
     <name>PluginManager</name>
     <message>
-        <location filename="Services/PluginManager.cpp" line="36"/>
-        <source>Plugins</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <location filename="Services/PluginManager.cpp" line="52"/>
+        <location filename="Services/PluginManager.cpp" line="41"/>
         <source>&amp;Plugin</source>
         <translation>&amp;Plugin</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="54"/>
+        <location filename="Services/PluginManager.cpp" line="43"/>
         <source>&amp;Load plugin</source>
         <translation>&amp;Charger un plugin</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="55"/>
+        <location filename="Services/PluginManager.cpp" line="44"/>
         <source>&amp;Unload all plugins</source>
         <translation>&amp;Décharger tous les plugins</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="78"/>
+        <location filename="Services/PluginManager.cpp" line="83"/>
         <source>Load plugin</source>
         <translation>Charger un plugin</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="78"/>
+        <location filename="Services/PluginManager.cpp" line="83"/>
         <source>Plugin (*.dll *.so *.dylib)</source>
         <translation>Plugin (*.dll *.so *.dylib)</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="173"/>
-        <location filename="Services/PluginManager.cpp" line="184"/>
-        <location filename="Services/PluginManager.cpp" line="196"/>
+        <location filename="Services/PluginManager.cpp" line="178"/>
+        <location filename="Services/PluginManager.cpp" line="189"/>
+        <location filename="Services/PluginManager.cpp" line="201"/>
         <source>Error loading plugin</source>
         <translation>Erreur lors du chargement d&apos;un plugin</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="184"/>
+        <location filename="Services/PluginManager.cpp" line="189"/>
         <source>Could not find the plugin&apos;s entry point &quot;loadPlugin&quot;</source>
         <translation>Point d&apos;entrée &quot;loadPlugin&quot; introuvable</translation>
     </message>
     <message>
-        <location filename="Services/PluginManager.cpp" line="196"/>
+        <location filename="Services/PluginManager.cpp" line="201"/>
         <source>The getPlugin entry point does not return a valid Plugin</source>
         <translation>Le point d&apos;entrée getPlugin ne retourne pas un Plugin valide</translation>
     </message>
diff --git a/app/main.cpp b/app/main.cpp
index b2353a09d84c8bc075bbae6581e5364402daee54..921640c27d292e91dcbdd6a3c3f9f77ce6753c50 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QApplication>
@@ -28,7 +28,7 @@
 #include "BuiltinOpSet.h"
 
 #include "Services/PluginManager.h"
-#include "Services/INSAimageService.h"
+#include "Services/ImageINSAService.h"
 
 #include "Operations/PointOp.h"
 #include "Operations/ThresholdOp.h"
@@ -79,7 +79,7 @@ int main(int argc, char** argv)
 {
     QApplication app(argc, argv);
     app.setOrganizationName("INSA");
-    app.setApplicationName("INSAimage");
+    app.setApplicationName("ImageINSA");
 
     Log::configure(true, false, 0);
 
@@ -105,21 +105,21 @@ int main(int argc, char** argv)
     }
     app.installTranslator(&giTranslator);
 
-    QTranslator eiiTranslator;
-    if(!eiiTranslator.load(QString("insaimage_") + lang, "lang")) {
-        cout << "Error while loading insaimage_en.qm" << endl;
+    QTranslator mainTranslator;
+    if(!mainTranslator.load(QString("imageinsa_") + lang, "lang")) {
+        cout << "Error while loading imageinsa_en.qm" << endl;
     }
-    app.installTranslator(&eiiTranslator);
+    app.installTranslator(&mainTranslator);
 
-    GenericInterface gi("INSAImage", Qt::LeftDockWidgetArea);
+    GenericInterface gi("ImageINSA", Qt::LeftDockWidgetArea);
 
     PluginManager* pluginManager = new PluginManager(&gi);
-    INSAimageService* insaimageService = new INSAimageService(&gi);
+    ImageINSAService* mainService = new ImageINSAService(&gi);
 
-    gi.changeService(GenericInterface::WINDOW_SERVICE, insaimageService);
+    gi.changeService(GenericInterface::WINDOW_SERVICE, mainService);
 
-    QObject::connect(pluginManager, SIGNAL(addPlugin(OpSet*)), insaimageService, SLOT(addOpSet(OpSet*)));
-    QObject::connect(pluginManager, SIGNAL(removePlugin(OpSet*)), insaimageService, SLOT(removeOpSet(OpSet*)));
+    QObject::connect(pluginManager, SIGNAL(addPlugin(OpSet*)), mainService, SLOT(addOpSet(OpSet*)));
+    QObject::connect(pluginManager, SIGNAL(removePlugin(OpSet*)), mainService, SLOT(removeOpSet(OpSet*)));
 
     BuiltinOpSet* image = new BuiltinOpSet(qApp->translate("", "&Image").toStdString());
     image->addOperation(new PointOp());
@@ -176,15 +176,15 @@ int main(int argc, char** argv)
     BuiltinOpSet* filter = new BuiltinOpSet(qApp->translate("", "Filtering").toStdString());
     filter->addOperation(new BFlitOp());
 
-    insaimageService->addOpSet(image);
-    insaimageService->addOpSet(encode);
-    insaimageService->addOpSet(morpho);
-    insaimageService->addOpSet(analyse);
-    insaimageService->addOpSet(transfo);
+    mainService->addOpSet(image);
+    mainService->addOpSet(encode);
+    mainService->addOpSet(morpho);
+    mainService->addOpSet(analyse);
+    mainService->addOpSet(transfo);
     gi.addService(new MorphoMatService);
     gi.addService(new filtrme::FilteringService);
-    insaimageService->addOpSet(filter);
-    insaimageService->addOpSet(tools);
+    mainService->addOpSet(filter);
+    mainService->addOpSet(tools);
 
     gi.addService(pluginManager);
 
diff --git a/core/BuiltinOpSet.cpp b/core/BuiltinOpSet.cpp
index 29f617d253915acb0e80777a5f1636b47b1d100e..51110eeba61572d9c6c545b9fcf6357224d7ec60 100644
--- a/core/BuiltinOpSet.cpp
+++ b/core/BuiltinOpSet.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "BuiltinOpSet.h"
diff --git a/core/BuiltinOpSet.h b/core/BuiltinOpSet.h
index bec483b50ee1183674146c62037a5bc4583add16..c7ff0447a699d6bbf344f38a650f4924a06c96c6 100644
--- a/core/BuiltinOpSet.h
+++ b/core/BuiltinOpSet.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_BUILTINOPSET_H
-#define INSAIMAGE_BUILTINOPSET_H
+#ifndef IMAGEINSA_BUILTINOPSET_H
+#define IMAGEINSA_BUILTINOPSET_H
 
 #include <string>
 #include <vector>
@@ -28,7 +28,7 @@
 /**
  * @brief A BuiltinOpSet is an implementation of OpSet containing GenericOperation
  *
- * This class is used inside the insaimage application to organize the built-in operations.
+ * This class is used inside the imageinsa application to organize the built-in operations.
  *
  */
 class BuiltinOpSet : public OpSet {
@@ -51,4 +51,4 @@ class BuiltinOpSet : public OpSet {
     std::vector<GenericOperation*> _operations; /**< List of the operations stored in this OpSet */
 };
 
-#endif //!INSAIMAGE_BUILTINOPSET_H
+#endif //!IMAGEINSA_BUILTINOPSET_H
diff --git a/core/Doxyfile b/core/Doxyfile
index 9ce647b02091ce690834580da2d93adabccdf8e9..61a98e6af7392ff24518f4f988c21494ee681af1 100644
--- a/core/Doxyfile
+++ b/core/Doxyfile
@@ -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           = "insaimage core"
+PROJECT_NAME           = "imageinsa 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          = "insaimage's core library"
+PROJECT_BRIEF          = "imageinsa'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 
diff --git a/core/ImgParam.cpp b/core/ImgParam.cpp
index 2e87e955304f9e4f93ed95a721f7a7ddd6491f2e..6bc7d549dd318996205ec926481bc0e5c1b1a102 100644
--- a/core/ImgParam.cpp
+++ b/core/ImgParam.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <Widgets/ImageListBox.h>
diff --git a/core/ImgParam.h b/core/ImgParam.h
index 502a6809d9e09094c36bad07d23f8a6a3072d026..40f9849d2712467d48ded61e3c81c4254497b109 100644
--- a/core/ImgParam.h
+++ b/core/ImgParam.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_IMGPARAM_H
-#define INSAIMAGE_IMGPARAM_H
+#ifndef IMAGEINSA_IMGPARAM_H
+#define IMAGEINSA_IMGPARAM_H
 
 #include <vector>
 #include <string>
@@ -49,4 +49,4 @@ class ImgParam : public Parameter<imagein::Image> {
     ImageListBox_t<uint8_t>* _imgListBox;
 };
 
-#endif //!INSAIMAGE_IMGPARAM_H
+#endif //!IMAGEINSA_IMGPARAM_H
diff --git a/core/Input.h b/core/Input.h
index c610bdce1593931a60322774f65fb48b63187d5f..b5b13a791e429854dde9f54d007cfc0e77ad8170 100644
--- a/core/Input.h
+++ b/core/Input.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_INPUT_H
-#define INSAIMAGE_INPUT_H
+#ifndef IMAGEINSA_INPUT_H
+#define IMAGEINSA_INPUT_H
 
 #include <vector>
 #include <map>
@@ -63,4 +63,4 @@ class Input {
     virtual void pickValue() = 0;
 };
 
-#endif //!INSAIMAGE_INPUT_H
+#endif //!IMAGEINSA_INPUT_H
diff --git a/core/IntParam.cpp b/core/IntParam.cpp
index 6c89260a53dfaafe3e5fcfd81fb91b9fbbccea42..6de31ea2ec8dcb70843542ee325d5f016fbc57fb 100644
--- a/core/IntParam.cpp
+++ b/core/IntParam.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QSpinBox>
diff --git a/core/IntParam.h b/core/IntParam.h
index e7c61de8488eb6b5bf29e5bd5250199924e58208..d874c5a59548aec7e66f7e82c1ec7ee7897fd4d2 100644
--- a/core/IntParam.h
+++ b/core/IntParam.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_INTPARAM_H
-#define INSAIMAGE_INTPARAM_H
+#ifndef IMAGEINSA_INTPARAM_H
+#define IMAGEINSA_INTPARAM_H
 
 #include <vector>
 #include <string>
@@ -66,4 +66,4 @@ class IntParam : public Parameter<int> {
     QSpinBox* _spinbox; /**< The QSpinBox widget to get the value from */
 };
 
-#endif //!INSAIMAGE_INTPARAM_H
+#endif //!IMAGEINSA_INTPARAM_H
diff --git a/core/OpSet.h b/core/OpSet.h
index 499239a87a088d0d339c66268187f629e0ef4eb3..3f46ed1179622b02649b52066047c8380245fff6 100644
--- a/core/OpSet.h
+++ b/core/OpSet.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_OPSET_H
-#define INSAIMAGE_OPSET_H
+#ifndef IMAGEINSA_OPSET_H
+#define IMAGEINSA_OPSET_H
 
 #include <string>
 #include <vector>
@@ -56,4 +56,4 @@ class OpSet {
     std::string _name; /**< The name of this OpSet */
 };
 
-#endif //!INSAIMAGE_OPSET_H
+#endif //!IMAGEINSA_OPSET_H
diff --git a/core/Operation.cpp b/core/Operation.cpp
index 735111599e3b22eca868bf71d507d9ae914a5204..c8cce14229ff454f02405a51422148f8852bce5a 100644
--- a/core/Operation.cpp
+++ b/core/Operation.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "Operation.h"
@@ -28,7 +28,7 @@ using namespace genericinterface;
 #include "Services/WindowService.h"
 #include "Services/Node.h"
 
-class INSAimageService : public genericinterface::WindowService
+class ImageINSAService : public genericinterface::WindowService
 {
     public:
     void outputText(QString text);
diff --git a/core/Operation.h b/core/Operation.h
index 1c835cc4fe20ca748a9ff6e9f61a1ac6bc2f8554..d105d31205be8259eac0293b8ab363b6fd0fe360 100644
--- a/core/Operation.h
+++ b/core/Operation.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_OPERATION_H
-#define INSAIMAGE_OPERATION_H
+#ifndef IMAGEINSA_OPERATION_H
+#define IMAGEINSA_OPERATION_H
 
 #include <map>
 #include <string>
@@ -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 insaimage source code.
+ * For an exemple of a true generic operation class, see the PointOp implementation in imageinsa 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 insaimage implementation of the genericinterface::WindowService
+     * @param ws The imageinsa implementation of the genericinterface::WindowService
      */
     virtual void operator()(genericinterface::WindowService* ws);
 
@@ -227,4 +227,4 @@ class DoubleOperation : public GenericOperation {
     imagein::Image_t<double>* _currentImg; /**< The current image, only valid in the function call operator */
 };
 
-#endif //!INSAIMAGE_OPERATION_H
+#endif //!IMAGEINSA_OPERATION_H
diff --git a/core/Parameter.h b/core/Parameter.h
index ee8e782e5120e58ff177f399ad76a4fdc1290c94..80750511664146821557d3033bd424da6d60d001 100644
--- a/core/Parameter.h
+++ b/core/Parameter.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_PARAMETER_H
-#define INSAIMAGE_PARAMETER_H
+#ifndef IMAGEINSA_PARAMETER_H
+#define IMAGEINSA_PARAMETER_H
 
 #include <string>
 
@@ -56,4 +56,4 @@ class Parameter : public Input {
   
 };
 
-#endif //!INSAIMAGE_PARAMETER_H
+#endif //!IMAGEINSA_PARAMETER_H
diff --git a/core/PlugOperation.cpp b/core/PlugOperation.cpp
index 5e2d9deec246a6143f34cfab25c54f9f6c596233..035fa3c3b9d4b545561452149ab3871591751ffe 100644
--- a/core/PlugOperation.cpp
+++ b/core/PlugOperation.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <QDialog>
diff --git a/core/PlugOperation.h b/core/PlugOperation.h
index 3ec8b4c0e6bf3622a68af7c3402cb3ae4e19866a..d1322bb2d05e25e73f7572d409b07dbc2d85fd90 100644
--- a/core/PlugOperation.h
+++ b/core/PlugOperation.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_PLUGOPERATION_H
-#define INSAIMAGE_PLUGOPERATION_H
+#ifndef IMAGEINSA_PLUGOPERATION_H
+#define IMAGEINSA_PLUGOPERATION_H
 
 #include <vector>
 #include <string>
@@ -147,4 +147,4 @@ class PlugOperation : public GenericOperation {
     bool _doubleCurrentImg; /**< Wether this operation need a double wurrent image or a standard current image. */
 };
 
-#endif //!INSAIMAGE_OPERATION_H
+#endif //!IMAGEINSA_OPERATION_H
diff --git a/core/Plugin.cpp b/core/Plugin.cpp
index 5e337dfc5dbf8db6440a02751cbd9b4874f8f092..d6fc29a4f4cc5d26d00002bbb6f638aaa677e549 100644
--- a/core/Plugin.cpp
+++ b/core/Plugin.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "Plugin.h"
diff --git a/core/Plugin.h b/core/Plugin.h
index db5d616270a3aa4b54de46b620c41d17cc96f9f7..5e88ac666610034eee7a5f0624938d7fe6d44c8a 100644
--- a/core/Plugin.h
+++ b/core/Plugin.h
@@ -1,24 +1,24 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef INSAIMAGE_PLUGIN_H
-#define INSAIMAGE_PLUGIN_H
+#ifndef IMAGEINSA_PLUGIN_H
+#define IMAGEINSA_PLUGIN_H
 
 #include <string>
 #include <vector>
@@ -52,4 +52,4 @@ class Plugin : public OpSet {
     std::vector<GenericOperation*> _operations; /**< List of all the operations stored in this OpSet */
 };
 
-#endif //!INSAIMAGE_PLUGIN_H
+#endif //!IMAGEINSA_PLUGIN_H
diff --git a/plugins/Entropy/Entropy.cpp b/plugins/Entropy/Entropy.cpp
index c6bf5c47a2d0464fba241495090f09b781ed80a3..70e2a7ab252c0083289d5688c24690ecef8551b2 100644
--- a/plugins/Entropy/Entropy.cpp
+++ b/plugins/Entropy/Entropy.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <iostream>
diff --git a/plugins/Entropy/EntropyCorrection.cpp b/plugins/Entropy/EntropyCorrection.cpp
index e053a39da4c9ad5e0f2cf1b9f720bbd8861ca88d..775613bd101809a0f07eaaf1bc567d8c2b1cb9ec 100644
--- a/plugins/Entropy/EntropyCorrection.cpp
+++ b/plugins/Entropy/EntropyCorrection.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <iostream>
diff --git a/plugins/Segmentation/segmentation.cpp b/plugins/Segmentation/segmentation.cpp
index 921a10d239b7b0b04d9776fd6638714d7848bb0c..08e1055c2b4e9fc7ad9b8ea4a67f4832c3facec0 100644
--- a/plugins/Segmentation/segmentation.cpp
+++ b/plugins/Segmentation/segmentation.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <iostream>
diff --git a/plugins/SegmentationTest/segmentation.cpp b/plugins/SegmentationTest/segmentation.cpp
index 0491f6c32e6e2514d2416506947cc4a7b3787138..2b4762bad996c9b1931cf797b85be42c217664ce 100644
--- a/plugins/SegmentationTest/segmentation.cpp
+++ b/plugins/SegmentationTest/segmentation.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  *
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  *
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  *
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <iostream>
diff --git a/plugins/plugin.cpp b/plugins/plugin.cpp
index 2e417f8555fb89cbc9925c003936945558551346..0849e22c2b65b21b6c55fc879b08aa7349351bd7 100644
--- a/plugins/plugin.cpp
+++ b/plugins/plugin.cpp
@@ -1,20 +1,20 @@
 /*
  * Copyright 2011-2012 INSA Rennes
  * 
- * This file is part of INSAimage.
+ * This file is part of ImageINSA.
  * 
- * INSAimage is free software: you can redistribute it and/or modify
+ * ImageINSA is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
- * INSAimage is distributed in the hope that it will be useful,
+ * ImageINSA is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with INSAimage.  If not, see <http://www.gnu.org/licenses/>.
+ * along with ImageINSA.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <iostream>