/* Copyright 2006 Jerry Huxtable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.jhlabs.image; public class Curve { public float[] x; public float[] y; public Curve() { x = new float[] { 0, 1 }; y = new float[] { 0, 1 }; } public Curve( Curve curve ) { x = (float[])curve.x.clone(); y = (float[])curve.y.clone(); } public int addKnot( float kx, float ky ) { int pos = -1; int numKnots = x.length; float[] nx = new float[numKnots+1]; float[] ny = new float[numKnots+1]; int j = 0; for ( int i = 0; i < numKnots; i++ ) { if ( pos == -1 && x[i] > kx ) { pos = j; nx[j] = kx; ny[j] = ky; j++; } nx[j] = x[i]; ny[j] = y[i]; j++; } if ( pos == -1 ) { pos = j; nx[j] = kx; ny[j] = ky; } x = nx; y = ny; return pos; } public void removeKnot( int n ) { int numKnots = x.length; if ( numKnots <= 2 ) return; float[] nx = new float[numKnots-1]; float[] ny = new float[numKnots-1]; int j = 0; for ( int i = 0; i < numKnots-1; i++ ) { if ( i == n ) j++; nx[i] = x[j]; ny[i] = y[j]; j++; } x = nx; y = ny; } @SuppressWarnings("unused") private void sortKnots() { int numKnots = x.length; for (int i = 1; i < numKnots-1; i++) { for (int j = 1; j < i; j++) { if (x[i] < x[j]) { float t = x[i]; x[i] = x[j]; x[j] = t; t = y[i]; y[i] = y[j]; y[j] = t; } } } } protected int[] makeTable() { int numKnots = x.length; float[] nx = new float[numKnots+2]; float[] ny = new float[numKnots+2]; System.arraycopy( x, 0, nx, 1, numKnots); System.arraycopy( y, 0, ny, 1, numKnots); nx[0] = nx[1]; ny[0] = ny[1]; nx[numKnots+1] = nx[numKnots]; ny[numKnots+1] = ny[numKnots]; int[] table = new int[256]; for (int i = 0; i < 1024; i++) { float f = i/1024.0f; int x = (int)(255 * ImageMath.spline( f, nx.length, nx ) + 0.5f); int y = (int)(255 * ImageMath.spline( f, nx.length, ny ) + 0.5f); x = ImageMath.clamp( x, 0, 255 ); y = ImageMath.clamp( y, 0, 255 ); table[x] = y; } return table; } }