Revision: 4324
http://hugin.svn.sourceforge.net/hugin/?rev=4324&view=rev
Author: stativ
Date: 2009-09-05 10:17:03 +0000 (Sat, 05 Sep 2009)
Log Message:
-----------
Added license headers
Modified Paths:
--------------
hugin/branches/gsoc2009_deghosting/src/deghosting/CMakeLists.txt
hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting.cpp
hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting.h
hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting_mask.cpp
hugin/branches/gsoc2009_deghosting/src/deghosting/khan.cpp
hugin/branches/gsoc2009_deghosting/src/deghosting/khan.h
hugin/branches/gsoc2009_deghosting/src/deghosting/support.h
hugin/branches/gsoc2009_deghosting/src/deghosting/threshold.h
Modified: hugin/branches/gsoc2009_deghosting/src/deghosting/CMakeLists.txt
===================================================================
--- hugin/branches/gsoc2009_deghosting/src/deghosting/CMakeLists.txt 2009-09-05 10:15:18 UTC (rev 4323)
+++ hugin/branches/gsoc2009_deghosting/src/deghosting/CMakeLists.txt 2009-09-05 10:17:03 UTC (rev 4324)
@@ -1,4 +1,3 @@
-# various command line utilities
add_executable(deghosting_mask deghosting_mask.cpp deghosting.cpp khan.cpp)
target_link_libraries(deghosting_mask ${common_libs} ${image_libs})
Modified: hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting.cpp
===================================================================
--- hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting.cpp 2009-09-05 10:15:18 UTC (rev 4323)
+++ hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting.cpp 2009-09-05 10:17:03 UTC (rev 4324)
@@ -1,4 +1,23 @@
+/**
+ * Implementation of basic routines for deghosting algorithms
+ * Copyright (C) 2009 Lukáš Jirkovský <l.jirkovsky@...>
+ *
+ * This program 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 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ *Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
#include "deghosting.h"
using namespace vigra;
Modified: hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting.h
===================================================================
--- hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting.h 2009-09-05 10:15:18 UTC (rev 4323)
+++ hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting.h 2009-09-05 10:17:03 UTC (rev 4324)
@@ -1,9 +1,22 @@
-/*
- * deghosting.h
+
+/**
+ * Header file for base class for deghosting algorithms
+ * Copyright (C) 2009 Lukáš Jirkovský <l.jirkovsky@...>
*
- * Created on: May 23, 2009
- * Author: Lukas "stativ" Jirkovsky
- */
+ * This program 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 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ *Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
#ifndef DEGHOSTING_H_
#define DEGHOSTING_H_
Modified: hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting_mask.cpp
===================================================================
--- hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting_mask.cpp 2009-09-05 10:15:18 UTC (rev 4323)
+++ hugin/branches/gsoc2009_deghosting/src/deghosting/deghosting_mask.cpp 2009-09-05 10:17:03 UTC (rev 4324)
@@ -1,4 +1,23 @@
+/**
+ * Tool for creating b/w alpha masks to eliminate ghosting artifacts
+ * Copyright (C) 2009 Lukáš Jirkovský <l.jirkovsky@...>
+ *
+ * This program 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 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ *Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
#include <iostream>
#include <string>
#include <cstring>
Modified: hugin/branches/gsoc2009_deghosting/src/deghosting/khan.cpp
===================================================================
--- hugin/branches/gsoc2009_deghosting/src/deghosting/khan.cpp 2009-09-05 10:15:18 UTC (rev 4323)
+++ hugin/branches/gsoc2009_deghosting/src/deghosting/khan.cpp 2009-09-05 10:17:03 UTC (rev 4324)
@@ -1,4 +1,23 @@
+/**
+ * Implementation of Khan's deghosting algorithm
+ * Copyright (C) 2009 Lukáš Jirkovský <l.jirkovsky@...>
+ *
+ * This program 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 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ *Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
#include "khan.h"
#include <vigra/impex.hxx>
// for importImageAlpha, it's not really necessary
Modified: hugin/branches/gsoc2009_deghosting/src/deghosting/khan.h
===================================================================
--- hugin/branches/gsoc2009_deghosting/src/deghosting/khan.h 2009-09-05 10:15:18 UTC (rev 4323)
+++ hugin/branches/gsoc2009_deghosting/src/deghosting/khan.h 2009-09-05 10:17:03 UTC (rev 4324)
@@ -1,4 +1,23 @@
+/**
+ * Header file for Khan's deghosting algorithm
+ * Copyright (C) 2009 Lukáš Jirkovský <l.jirkovsky@...>
+ *
+ * This program 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 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ *Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
#ifndef KHAN_H_
#define KHAN_H_
Modified: hugin/branches/gsoc2009_deghosting/src/deghosting/support.h
===================================================================
--- hugin/branches/gsoc2009_deghosting/src/deghosting/support.h 2009-09-05 10:15:18 UTC (rev 4323)
+++ hugin/branches/gsoc2009_deghosting/src/deghosting/support.h 2009-09-05 10:17:03 UTC (rev 4324)
@@ -1,4 +1,23 @@
+/**
+ * Support code for use in deghosting implementation
+ * Copyright (C) 2009 Lukáš Jirkovský <l.jirkovsky@...>
+ *
+ * This program 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 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ *Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
#ifndef SUPPORT_H_
#define SUPPORT_H_
Modified: hugin/branches/gsoc2009_deghosting/src/deghosting/threshold.h
===================================================================
--- hugin/branches/gsoc2009_deghosting/src/deghosting/threshold.h 2009-09-05 10:15:18 UTC (rev 4323)
+++ hugin/branches/gsoc2009_deghosting/src/deghosting/threshold.h 2009-09-05 10:17:03 UTC (rev 4324)
@@ -1,6 +1,22 @@
+
/**
- * thresshold
- */
+ * Advanced threshold
+ * Copyright (C) 2009 Lukáš Jirkovský <l.jirkovsky@...>
+ *
+ * This program 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 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ *Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
#include <vector>
#include <stdint.h>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|