All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.mines.jtk.dsp.Tensors3 Maven / Gradle / Ivy

/****************************************************************************
Copyright 2008, Colorado School of Mines and others.
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 edu.mines.jtk.dsp;

/**
 * An interface for 3D tensors used in anisotropic 3D image processing. 
 * Each tensor is a symmetric positive-semidefinite 3-by-3 matrix:
 * 

 *     |a11 a12 a13|
 * A = |a12 a22 a23|
 *     |a13 a23 a33|
 * 
* * @author Dave Hale, Colorado School of Mines * @version 2008.07.28 */ public interface Tensors3 { /** * Gets tensor elements for specified indices. * @param i1 index for 1st dimension. * @param i2 index for 2nd dimension. * @param i3 index for 3rd dimension. * @param a array {a11,a12,a13,a22,a23,a33} of tensor elements. */ public void getTensor(int i1, int i2, int i3, float[] a); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy