Skip to content
Snippets Groups Projects
Commit aee4533e authored by Antoine Pazat's avatar Antoine Pazat Committed by Sanchez Alexandre
Browse files

modification CMakeLists pour que les sources compilent

parent c910053d
No related branches found
No related tags found
No related merge requests found
project(ImageINSA)
cmake_minimum_required(VERSION 2.8.11)
set(CMAKE_BUILD_TYPE "Release")
# Find includes in corresponding build directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Instruct CMake to run moc automatically when needed.
set(CMAKE_AUTOMOC ON)
#Modif Pazat : repertoire contenant les fichiers de configuration .cmake pour QT5. !!! Modifier le chemin pour qu'il dépende des variables d'environnement !!!
#set (CMAKE_PREFIX_PATH "C:\\Qt\\Qt5.6.1\\5.6\\msvc2015_64\\lib\\cmake\\")
#Modif Pazat : repertoire contenant les fichiers de configuration .cmake pour QT5.
set (CMAKE_PREFIX_PATH "C:\\Qt\\Qt5.6.1\\5.6\\mingw49_32\\lib\\cmake")
# Find the Qt libraries
find_package(Qt5Core REQUIRED)
find_package(Qt5Gui REQUIRED)
......@@ -24,6 +31,8 @@ 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})
set (CMAKE_PREFIX_PATH "C:\\RandomLib-mingw32")
# Find RandomLib, which must be built and installed before running this compilation
find_package(RandomLib 1.7 REQUIRED)
if(RandomLib_FOUND)
......@@ -45,6 +54,10 @@ else()
"for Detiq-T (ImageIn & GenericInterface libraries), and re-run CMake.")
endif()
set (CMAKE_MODULE_PATH "C:\\Program Files\\CMake\\share\\cmake-3.6\\Modules\\")
set (CMAKE_PREFIX_PATH "C:\\Program Files (x86)\\GnuWin32\\")
find_package(JPEG)
if(JPEG_FOUND)
include_directories(${JPEG_INCLUDE_DIR})
......@@ -63,8 +76,14 @@ find_package(Threads REQUIRED)
# Simple inclusion, more control have already been performed
# in previous Detiq-T lookup (GenericInterface)
find_package(Qwt 6.0)
include_directories(${QWT_INCLUDE_DIRS})
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
set(CMAKE_PREFIX_PATH "C:\\Qwt-6.1.2\\")
set(QWT_LIBRARY "C:\\Qwt-6.1.2\\lib\\qwt.dll")
set(QWT_INCLUDE_DIR "C:\\Qwt-6.1.2\\include")
find_package(Qwt 6.0 REQUIRED)
include_directories(${QWT_INCLUDE_DIRS})
add_subdirectory(core)
include_directories(core)
......
......@@ -28,7 +28,9 @@
#include "Widgets/FilterEditor.h"
#include <QStringList>
#ifdef __linux__
#include <pthread.h>
#endif
namespace filtrme
{
......
find_package(Qt5Widgets REQUIRED)
set(CMAKE_PREFIX_PATH "C:\\Qwt-6.1.2\\")
#set(QWT_LIBRARY "C:\\Qwt-6.1.2\\lib\\qwt.dll")
set(QWT_LIBRARY C:/Qwt-6.1.2/lib/qwt.dll)
set(QWT_INCLUDE_DIR "C:\\Qwt-6.1.2\\include")
find_package(Qwt 6.0 REQUIRED)
if(QWT_FOUND)
include_directories(${QWT_INCLUDE_DIRS})
else()
message(FATAL_ERROR "Cannot find Qwt library. Please add the Qwt library directory to CMAKE_PREFIX_PATH.")
endif()
set(SRCS
BuiltinOpSet.cpp
BuiltinOpSet.h
......
......@@ -18,3 +18,5 @@ target_link_libraries(segmentationTest core)
add_library(entropy SHARED Entropy/Entropy.cpp)
target_link_libraries(entropy core)
add_library(median SHARED Median/Median.cpp)
target_link_libraries(median core)
/*
* Copyright 2011-2012 INSA Rennes
*
* This file is part of EIImage.
*
* EIImage 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.
*
* EIImage 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 EIImage. If not, see <http://www.gnu.org/licenses/>.
*/
#include <iostream>
#include <string>
#include <algorithm>
#include "Image.h"
#include "Converter.h"
#include "Operation.h"
#include "Plugin.h"
#include "ImgParam.h"
#include "IntParam.h"
#include "PlugOperation.h"
#include <cstring>
#include <cstdio>
#include <cmath>
#include <vector>
#include <algorithm>
using namespace std;
using namespace imagein;
class MedianCroix : public PlugOperation {
public:
MedianCroix() : PlugOperation("MedianCroix") {
addParam(CurrentImg(), &MedianCroix::img);
addParam(IntParam("Taille",1,30,3),&MedianCroix::wSide);
}
void operation() {
Image *outputImage = new Image(img);
unsigned int histo[256];
unsigned int imageWidth = img.getWidth();
unsigned int imageHeight = img.getHeight();
unsigned int nbChannels = img.getNbChannels();
int iStart, iStop, jStart, jStop;
// parcours des composantes de couleur
for (int c=0;c<nbChannels;c++){
// parcours de l'image
for (int x=0;x<imageWidth;x++){
for(int y=0;y<imageHeight;y++){
//parcours de la fentre du filtre
x-wSide/2 < 0 ? iStart = 0 : iStart = x-wSide/2;
x+wSide/2 > imageWidth-1 ? iStop = imageWidth : iStop = x+wSide/2+1;
y-wSide/2 < 0 ? jStart = 0 : jStart = y-wSide/2;
y+wSide/2 > imageHeight-1 ? jStop = imageHeight : jStop = y+wSide/2+1;
for(int i=iStart; i< iStop ; i++){
for(int j=jStart;j<jStop;j++){
//remplissage de la fentre du filtre
if (i==x || j==y)window.push_back(img.getPixelAt(i,j,c));
}//j
}//i
size_t size = window.size();
sort(window.begin(), window.begin()+size);
outputImage->setPixelAt(x, y, c, window[size/2]);
window.clear();
}//y
}//x
}//c
//conversion de la taille de la fentre en string pour l'affichage de l'image rsultat
string str;
ostringstream convert;
convert << wSide;
str = convert.str();
outImage(outputImage, "Image filtered (median"+str+"x"+str+")");
}
private:
Image img;
int wSide;//largeur de la fentre
vector<int> window;
};
class MedianCarre : public PlugOperation {
public:
MedianCarre() : PlugOperation("MedianCarre") {
addParam(CurrentImg(), &MedianCarre::img);
addParam(IntParam("Taille",1,30,3),&MedianCarre::wSide);
}
void operation() {
Image *outputImage = new Image(img);
unsigned int histo[256];
unsigned int imageWidth = img.getWidth();
unsigned int imageHeight = img.getHeight();
unsigned int nbChannels = img.getNbChannels();
int iStart, iStop, jStart, jStop;
int i,j;
// parcours des composantes de couleur
for (int c=0;c<nbChannels;c++){
// parcours de l'image
for (int x=0;x<imageWidth;x++){
for(int y=0;y<imageHeight;y++){
//parcours de la fentre du filtre
x-wSide/2 < 0 ? iStart = 0 : iStart = x-wSide/2;
x+wSide/2 > imageWidth-1 ? iStop = imageWidth : iStop = x+wSide/2+1;
y-wSide/2 < 0 ? jStart = 0 : jStart = y-wSide/2;
y+wSide/2 > imageHeight-1 ? jStop = imageHeight : jStop = y+wSide/2+1;
for(i=iStart; i< iStop ; i++){
for(j=jStart;j<jStop;j++){
//remplissage de la fentre du filtre
window.push_back(img.getPixelAt(i,j,c));
}//j
}//i
size_t size = window.size();
sort(window.begin(), window.begin()+size);
outputImage->setPixelAt(x, y, c, window[size/2]);
window.clear();
}//y
}//x
}//c
//conversion de la taille de la fentre en string pour l'affichage de l'image rsultat
string str;
ostringstream convert;
convert << wSide;
str = convert.str();
outImage(outputImage, "Image filtered (median"+str+"x"+str+")");
}
private:
Image img;
int wSide;//largeur de la fentre
vector<int> window;
};
extern "C" Plugin* loadPlugin() {
Plugin* plugin = new Plugin("Median");
plugin->addOperation(new MedianCroix());
plugin->addOperation(new MedianCarre());
return plugin;
}
extern "C" void unloadPlugin(Plugin* plugin) {
delete plugin;
}
#include "main.h"
// a sample exported function
void DLL_EXPORT SomeFunction(const LPCSTR sometext)
{
MessageBoxA(0, sometext, "DLL Message", MB_OK | MB_ICONINFORMATION);
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
switch (fdwReason)
{
case DLL_PROCESS_ATTACH:
// attach to process
// return FALSE to fail DLL load
break;
case DLL_PROCESS_DETACH:
// detach from process
break;
case DLL_THREAD_ATTACH:
// attach to thread
break;
case DLL_THREAD_DETACH:
// detach from thread
break;
}
return TRUE; // succesful
}
#ifndef __MAIN_H__
#define __MAIN_H__
#include <windows.h>
/* To use this exported function of dll, include this header
* in your project.
*/
#ifdef BUILD_DLL
#define DLL_EXPORT __declspec(dllexport)
#else
#define DLL_EXPORT __declspec(dllimport)
#endif
#ifdef __cplusplus
extern "C"
{
#endif
void DLL_EXPORT SomeFunction(const LPCSTR sometext);
#ifdef __cplusplus
}
#endif
#endif // __MAIN_H__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment