Skip to content

Commit d21b2a9

Browse files
committed
Merge pull request #4 from rolkar/feature/copyright
Update Copyright
2 parents 7b6cbcd + b10c3b9 commit d21b2a9

37 files changed

+265
-30
lines changed

doc/copyright.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
BSD-style License
33
----------------------------------------------------------------
44

5-
* Copyright (c) 2010, Roland Karlsson (roland@proxel.se)
5+
* Copyright (c) 2015,
6+
* Roland Karlsson (roland@proxel.se)
7+
* Erik Karlsson (erik.r.karlsson@gmail.com)
8+
* Mark Roden (mmroden@gmail.com) - [anisotropic filtering parts]
69
* All rights reserved.
710
*
811
* Redistribution and use in source and binary forms, with or without

src/x3f_denoise.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* X3F_DENOISE.CPP
2+
*
3+
* Library for denoising of X3F image data.
4+
*
5+
* Copyright 2015 - Roland and Erik Karlsson
6+
* BSD-style - see doc/copyright.txt
7+
*
8+
*/
9+
110
#include <iostream>
211
#include <inttypes.h>
312

src/x3f_denoise.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* X3F_DENOISE.H
2+
*
3+
* Library for denoising of X3F image data.
4+
*
5+
* Copyright 2015 - Roland and Erik Karlsson
6+
* BSD-style - see doc/copyright.txt
7+
*
8+
*/
9+
110
#ifndef X3F_DENOISE_H
211
#define X3F_DENOISE_H
312

src/x3f_denoise_aniso.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* X3F_DENOISE_ANISO.CPP
2+
*
3+
* Library for anisotropic denoising of X3F image data.
4+
*
5+
* Copyright 2015 - Mark Roden
6+
* BSD-style - see doc/copyright.txt
7+
*
8+
*/
9+
110
#include <iostream>
211
#include "x3f_denoise_aniso.h"
312
#include "x3f_printf.h"

src/x3f_denoise_aniso.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* X3F_DENOISE_ANISO.H
2+
*
3+
* Library for anisotropic denoising of X3F image data.
4+
*
5+
* Copyright 2015 - Mark Roden
6+
* BSD-style - see doc/copyright.txt
7+
*
8+
*/
9+
110
#ifndef DENOISE_ANISO
211
#define DENOISE_ANISO
312

src/x3f_denoise_utils.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/* X3F_DENOISE_UTILS.CPP
2+
*
3+
* Library for support functions for noise reduction algorithms,
4+
* including color conversions and conversions to/from float type images
5+
*
6+
* Copyright 2015 - Mark Roden and Erik Karlsson
7+
* BSD-style - see doc/copyright.txt
8+
*
9+
*/
10+
111
#include <iostream>
212
#include <inttypes.h>
313

src/x3f_denoise_utils.h

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1+
/* X3F_DENOISE_UTILS.H
2+
*
3+
* Library for support functions for noise reduction algorithms,
4+
* including color conversions and conversions to/from float type images
5+
*
6+
* Copyright 2015 - Mark Roden and Erik Karlsson
7+
* BSD-style - see doc/copyright.txt
8+
*
9+
*/
10+
111
#ifndef DENOISE_UTILS
212
#define DENOISE_UTILS
3-
/* this file contains the support functions for noise reduction algorithms,
4-
including color conversions and conversions to/from float type images
5-
*/
613

714
#ifndef __cplusplus
815
#error This file can only be included from C++

src/x3f_dngtags.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
/* x3f_dngtags.c - libtiff tag extender for DNG tags.
1+
/* X3F_DNGTAGS.C
2+
*
3+
* libtiff tag extender for DNG tags.
24
*
35
* The current version of libtiff (4.0.3) only supports tags for DNG
46
* versions <= 1.1.0.0
57
*
8+
* Copyright 2015 - Roland and Erik Karlsson
9+
* BSD-style - see doc/copyright.txt
10+
*
611
*/
712

813
#include "x3f_dngtags.h"

src/x3f_dngtags.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
/* x3f_dngtags.h - libtiff tag extender for DNG tags.
1+
/* X3F_DNGTAGS.H
2+
*
3+
* libtiff tag extender for DNG tags.
24
*
35
* The current version of libtiff (4.0.3) only supports tags for DNG
46
* versions <= 1.1.0.0
57
*
8+
* Copyright 2015 - Roland and Erik Karlsson
9+
* BSD-style - see doc/copyright.txt
10+
*
611
*/
712

813
#ifndef X3F_DNGTAGS_H

src/x3f_dump.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
/* X3F_DUMP.C - Library for accessing X3F Files.
1+
/* X3F_DUMP.C
22
*
3-
* Copyright (c) 2010 - Roland Karlsson (roland@proxel.se)
3+
* Library for writing unprocessed RAW and JPEG data.
4+
*
5+
* Copyright 2015 - Roland and Erik Karlsson
46
* BSD-style - see doc/copyright.txt
57
*
68
*/

0 commit comments

Comments
 (0)