ebd260fd18d030569f83fba30edafb300b2b18dc
Stefan Schuermans start of implementation (ha...

Stefan Schuermans authored 13 years ago

1) /* JFlexiPix - Java implementation of FlexiPix output library
2)  *
3)  * Copyright 2010-2011 Stefan Schuermans <stefan blinkenarea org>
4)  *
5)  * This program is free software: you can redistribute it and/or modify
6)  * it under the terms of the GNU General Public License as published by
7)  * the Free Software Foundation, version 3 of the License.
8)  *
9)  *
10)  * This program is distributed in the hope that it will be useful,
11)  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12)  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13)  * GNU General Public License for more details.
14)  *
15)  * You should have received a copy of the GNU Lesser General Public License
16)  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17)  */
18) 
19) package org.blinkenarea.JFlexiPix;
20) 
21) /**
22)  * FlexiPix mapping information
23)  *
24)  * values of channels are mapped according to following formula:
25)  * <display value> := <base> + <factor> * <original value> ^ (1 / <gamma>)
26)  */
27) class Mapping
28) {
29)   /// constructor
Stefan Schuermans implemened mapping parsing

Stefan Schuermans authored 13 years ago

30)   Mapping()