Added copyright notices
This commit is contained in:
parent
b4745655aa
commit
5a00947f34
87 changed files with 2002 additions and 10 deletions
23
camera.cpp
23
camera.cpp
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/calib3d.hpp>
|
#include <opencv2/calib3d.hpp>
|
||||||
|
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
|
|
23
camera.h
23
camera.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef CAMERA_H
|
#ifndef CAMERA_H
|
||||||
#define CAMERA_H
|
#define CAMERA_H
|
||||||
|
|
||||||
|
|
23
cast.h
23
cast.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef CAST_H
|
#ifndef CAST_H
|
||||||
#define CAST_H
|
#define CAST_H
|
||||||
|
|
||||||
|
|
23
console.cpp
23
console.cpp
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
#include <QScrollBar>
|
#include <QScrollBar>
|
||||||
|
|
||||||
|
|
23
console.h
23
console.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef CONSOLE_H
|
#ifndef CONSOLE_H
|
||||||
#define CONSOLE_H
|
#define CONSOLE_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
|
|
||||||
#include "console.h"
|
#include "console.h"
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef DEBUGSTREAM_H
|
#ifndef DEBUGSTREAM_H
|
||||||
#define DEBUGSTREAM_H
|
#define DEBUGSTREAM_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
|
||||||
#include "filterlist.h"
|
#include "filterlist.h"
|
||||||
|
|
23
filterlist.h
23
filterlist.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef FILTERLIST_H
|
#ifndef FILTERLIST_H
|
||||||
#define FILTERLIST_H
|
#define FILTERLIST_H
|
||||||
|
|
||||||
|
|
23
filters.h
23
filters.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef FILTERS_H
|
#ifndef FILTERS_H
|
||||||
#define FILTERS_H
|
#define FILTERS_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/imgproc.hpp>
|
#include <opencv2/imgproc.hpp>
|
||||||
|
|
||||||
#include "blur.h"
|
#include "blur.h"
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef BLUR_H
|
#ifndef BLUR_H
|
||||||
#define BLUR_H
|
#define BLUR_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/imgproc.hpp>
|
#include <opencv2/imgproc.hpp>
|
||||||
|
|
||||||
#include "channel.h"
|
#include "channel.h"
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef CHANNEL_H
|
#ifndef CHANNEL_H
|
||||||
#define CHANNEL_H
|
#define CHANNEL_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "convert.h"
|
#include "convert.h"
|
||||||
|
|
||||||
Convert::Convert(int c) :
|
Convert::Convert(int c) :
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef CONVERT_H
|
#ifndef CONVERT_H
|
||||||
#define CONVERT_H
|
#define CONVERT_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "derivative.h"
|
#include "derivative.h"
|
||||||
|
|
||||||
Derivative::Derivative(Type t, Size o, int s) :
|
Derivative::Derivative(Type t, Size o, int s) :
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef DERIVATIVE_H
|
#ifndef DERIVATIVE_H
|
||||||
#define DERIVATIVE_H
|
#define DERIVATIVE_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,25 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
#include "edgedetect.h"
|
#include "edgedetect.h"
|
||||||
|
|
||||||
#include <opencv2/imgproc.hpp>
|
#include <opencv2/imgproc.hpp>
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef EDGEDETECT_H
|
#ifndef EDGEDETECT_H
|
||||||
#define EDGEDETECT_H
|
#define EDGEDETECT_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QElapsedTimer>
|
#include <QElapsedTimer>
|
||||||
#include <QFormLayout>
|
#include <QFormLayout>
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef FILTER_H
|
#ifndef FILTER_H
|
||||||
#define FILTER_H
|
#define FILTER_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "histequalize.h"
|
#include "histequalize.h"
|
||||||
|
|
||||||
Result * HistEqualize::applyInternal(Image *img)
|
Result * HistEqualize::applyInternal(Image *img)
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef HISTEQUALIZE_H
|
#ifndef HISTEQUALIZE_H
|
||||||
#define HISTEQUALIZE_H
|
#define HISTEQUALIZE_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
#include <QBitArray>
|
#include <QBitArray>
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef KMEANS_H
|
#ifndef KMEANS_H
|
||||||
#define KMEANS_H
|
#define KMEANS_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "maxchannel.h"
|
#include "maxchannel.h"
|
||||||
|
|
||||||
Result * MaxChannel::applyInternal(Image *img)
|
Result * MaxChannel::applyInternal(Image *img)
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef MAXCHANNEL_H
|
#ifndef MAXCHANNEL_H
|
||||||
#define MAXCHANNEL_H
|
#define MAXCHANNEL_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "morph.h"
|
#include "morph.h"
|
||||||
|
|
||||||
Morph::Morph(int o, int t, Size s, Point a, int i) :
|
Morph::Morph(int o, int t, Size s, Point a, int i) :
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef MORPH_H
|
#ifndef MORPH_H
|
||||||
#define MORPH_H
|
#define MORPH_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "normalize.h"
|
#include "normalize.h"
|
||||||
|
|
||||||
Result * Normalize::applyInternal(Image *img)
|
Result * Normalize::applyInternal(Image *img)
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef NORMALIZE_H
|
#ifndef NORMALIZE_H
|
||||||
#define NORMALIZE_H
|
#define NORMALIZE_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "paddetect.h"
|
#include "paddetect.h"
|
||||||
|
|
||||||
static double angle(Point pt1, Point pt2, Point pt0)
|
static double angle(Point pt1, Point pt2, Point pt0)
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PADDETECT_H
|
#ifndef PADDETECT_H
|
||||||
#define PADDETECT_H
|
#define PADDETECT_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "padfilter.h"
|
#include "padfilter.h"
|
||||||
#include "paddetect.h"
|
#include "paddetect.h"
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PADFILTER_H
|
#ifndef PADFILTER_H
|
||||||
#define PADFILTER_H
|
#define PADFILTER_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "pathplanner.h"
|
#include "pathplanner.h"
|
||||||
#include "range.h"
|
#include "range.h"
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PATHPLANNER_H
|
#ifndef PATHPLANNER_H
|
||||||
#define PATHPLANNER_H
|
#define PATHPLANNER_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/imgproc.hpp>
|
#include <opencv2/imgproc.hpp>
|
||||||
|
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PATTERN_H
|
#ifndef PATTERN_H
|
||||||
#define PATTERN_H
|
#define PATTERN_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/imgproc.hpp>
|
#include <opencv2/imgproc.hpp>
|
||||||
|
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PERSPECTIVE_H
|
#ifndef PERSPECTIVE_H
|
||||||
#define PERSPECTIVE_H
|
#define PERSPECTIVE_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "rectify.h"
|
#include "rectify.h"
|
||||||
|
|
||||||
Rectify::Rectify(double t) :
|
Rectify::Rectify(double t) :
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef RECTIFY_H
|
#ifndef RECTIFY_H
|
||||||
#define RECTIFY_H
|
#define RECTIFY_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "resize.h"
|
#include "resize.h"
|
||||||
|
|
||||||
Resize::Resize(Range<int> r, int i) :
|
Resize::Resize(Range<int> r, int i) :
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef RESIZE_H
|
#ifndef RESIZE_H
|
||||||
#define RESIZE_H
|
#define RESIZE_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef RESULT_H
|
#ifndef RESULT_H
|
||||||
#define RESULT_H
|
#define RESULT_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "rotate.h"
|
#include "rotate.h"
|
||||||
|
|
||||||
Rotate::Rotate(double a, int i = INTER_LINEAR, double s) :
|
Rotate::Rotate(double a, int i = INTER_LINEAR, double s) :
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef ROTATE_H
|
#ifndef ROTATE_H
|
||||||
#define ROTATE_H
|
#define ROTATE_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QLayout>
|
#include <QLayout>
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SETTING_H
|
#ifndef SETTING_H
|
||||||
#define SETTING_H
|
#define SETTING_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "threshold.h"
|
#include "threshold.h"
|
||||||
|
|
||||||
Threshold::Threshold(enum Threshold::Type t, double v, int sz, double d) :
|
Threshold::Threshold(enum Threshold::Type t, double v, int sz, double d) :
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef THRESHOLD_H
|
#ifndef THRESHOLD_H
|
||||||
#define THRESHOLD_H
|
#define THRESHOLD_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "undistort.h"
|
#include "undistort.h"
|
||||||
|
|
||||||
Undistort::Undistort(Camera *c) :
|
Undistort::Undistort(Camera *c) :
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef UNDISTORT_H
|
#ifndef UNDISTORT_H
|
||||||
#define UNDISTORT_H
|
#define UNDISTORT_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "watershed.h"
|
#include "watershed.h"
|
||||||
|
|
||||||
void Watershed::clicked(Point pos, QMouseEvent *me)
|
void Watershed::clicked(Point pos, QMouseEvent *me)
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef WATERSHED_H
|
#ifndef WATERSHED_H
|
||||||
#define WATERSHED_H
|
#define WATERSHED_H
|
||||||
|
|
||||||
|
|
23
image.cpp
23
image.cpp
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/highgui.hpp>
|
#include <opencv2/highgui.hpp>
|
||||||
|
|
||||||
#include "image.h"
|
#include "image.h"
|
||||||
|
|
23
image.h
23
image.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef IMAGE_H
|
#ifndef IMAGE_H
|
||||||
#define IMAGE_H
|
#define IMAGE_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
|
|
||||||
|
|
23
imagelist.h
23
imagelist.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef IMAGELIST_H
|
#ifndef IMAGELIST_H
|
||||||
#define IMAGELIST_H
|
#define IMAGELIST_H
|
||||||
|
|
||||||
|
|
23
main.cpp
23
main.cpp
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QCameraInfo>
|
#include <QCameraInfo>
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/core.hpp>
|
#include <opencv2/core.hpp>
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
23
mainwindow.h
23
mainwindow.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef MAINWINDOW_H
|
#ifndef MAINWINDOW_H
|
||||||
#define MAINWINDOW_H
|
#define MAINWINDOW_H
|
||||||
|
|
||||||
|
|
23
pad.cpp
23
pad.cpp
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "pad.h"
|
#include "pad.h"
|
||||||
|
|
||||||
Pad::Pad(const Point &p) :
|
Pad::Pad(const Point &p) :
|
||||||
|
|
23
pad.h
23
pad.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PAD_H
|
#ifndef PAD_H
|
||||||
#define PAD_H
|
#define PAD_H
|
||||||
|
|
||||||
|
|
23
painter.cpp
23
painter.cpp
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#include "painter.h"
|
#include "painter.h"
|
||||||
#include "filters/filter.h"
|
#include "filters/filter.h"
|
||||||
|
|
||||||
|
|
23
painter.h
23
painter.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef PAINTER_H
|
#ifndef PAINTER_H
|
||||||
#define PAINTER_H
|
#define PAINTER_H
|
||||||
|
|
||||||
|
|
23
range.h
23
range.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef RANGE_H
|
#ifndef RANGE_H
|
||||||
#define RANGE_H
|
#define RANGE_H
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,25 @@
|
||||||
/* Library: CTK
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
*
|
*
|
||||||
* Copyright (c) Kitware Inc.
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Pastie is distributed in the hope that it will be useful,
|
||||||
* you may not use this file except in compliance with the License.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* You may obtain a copy of the License at
|
* 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Qt includes
|
// Qt includes
|
||||||
|
|
|
@ -1,10 +1,25 @@
|
||||||
/* Library: CTK
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
*
|
*
|
||||||
* Copyright (c) Kitware Inc.
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Pastie is distributed in the hope that it will be useful,
|
||||||
* you may not use this file except in compliance with the License.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* You may obtain a copy of the License at
|
* 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _RangeSlider_
|
#ifndef _RangeSlider_
|
||||||
|
|
24
robot.cpp
24
robot.cpp
|
@ -1,3 +1,27 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
|
*/
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "robot.h"
|
#include "robot.h"
|
||||||
|
|
23
robot.h
23
robot.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef ROBOT_H
|
#ifndef ROBOT_H
|
||||||
#define ROBOT_H
|
#define ROBOT_H
|
||||||
|
|
||||||
|
|
24
source.cpp
24
source.cpp
|
@ -1,3 +1,27 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
|
|
||||||
|
|
23
source.h
23
source.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SOURCE_H
|
#ifndef SOURCE_H
|
||||||
#define SOURCE_H
|
#define SOURCE_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/core.hpp>
|
#include <opencv2/core.hpp>
|
||||||
|
|
||||||
#include "filters/pattern.h"
|
#include "filters/pattern.h"
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef TABCALIBRATION_H
|
#ifndef TABCALIBRATION_H
|
||||||
#define TABCALIBRATION_H
|
#define TABCALIBRATION_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/videoio.hpp>
|
#include <opencv2/videoio.hpp>
|
||||||
|
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
|
|
23
tabcamera.h
23
tabcamera.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef TABCAMERA_H
|
#ifndef TABCAMERA_H
|
||||||
#define TABCAMERA_H
|
#define TABCAMERA_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
|
|
||||||
#include "tabfilters.h"
|
#include "tabfilters.h"
|
||||||
|
|
23
tabfilters.h
23
tabfilters.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef TABFILTERS_H
|
#ifndef TABFILTERS_H
|
||||||
#define TABFILTERS_H
|
#define TABFILTERS_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QMimeData>
|
#include <QMimeData>
|
||||||
|
|
||||||
#include "tabimages.h"
|
#include "tabimages.h"
|
||||||
|
|
23
tabimages.h
23
tabimages.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef TABIMAGES_H
|
#ifndef TABIMAGES_H
|
||||||
#define TABIMAGES_H
|
#define TABIMAGES_H
|
||||||
|
|
||||||
|
|
24
tabrobot.cpp
24
tabrobot.cpp
|
@ -1,3 +1,27 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QGridLayout>
|
#include <QGridLayout>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
|
|
||||||
|
|
23
tabrobot.h
23
tabrobot.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef TABROBOT_H
|
#ifndef TABROBOT_H
|
||||||
#define TABROBOT_H
|
#define TABROBOT_H
|
||||||
|
|
||||||
|
|
24
viewer.cpp
24
viewer.cpp
|
@ -1,3 +1,27 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright Kitware Inc.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
* @package CTK
|
||||||
|
*/
|
||||||
|
|
||||||
#include <opencv2/core.hpp>
|
#include <opencv2/core.hpp>
|
||||||
#include <opencv2/imgproc.hpp>
|
#include <opencv2/imgproc.hpp>
|
||||||
|
|
||||||
|
|
23
viewer.h
23
viewer.h
|
@ -1,3 +1,26 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Pastie
|
||||||
|
*
|
||||||
|
* Pastie 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
|
||||||
|
* any later version.
|
||||||
|
*
|
||||||
|
* Pastie 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 Pastie. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @copyright 2015 Steffen Vogel
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
|
||||||
|
* @author Steffen Vogel <steffen.vogel@rwth-aachen.de>
|
||||||
|
* @link http://www.steffenvogel.de
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef VIEWER_H
|
#ifndef VIEWER_H
|
||||||
#define VIEWER_H
|
#define VIEWER_H
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue