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

org.scijava.ops.image.deconvolve.AccelerationState Maven / Gradle / Ivy

The newest version!
/*
 * #%L
 * Image processing operations for SciJava Ops.
 * %%
 * Copyright (C) 2014 - 2024 SciJava developers.
 * %%
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 * 
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 * #L%
 */

package org.scijava.ops.image.deconvolve;

import net.imglib2.RandomAccessibleInterval;
import net.imglib2.img.Img;
import net.imglib2.type.numeric.RealType;

/**
 * Helper class for the Vector Accelerator Op. The Acceleration State stores the
 * Vector Accelerator's data while iterative deconvolution is applied.
 *
 * @author Curtis Rueden
 * @author Edward Evans
 * @param 
 */

public class AccelerationState> {

	private final RandomAccessibleInterval ykIterated;
	private Img xkm1Previous = null;
	private Img ykPrediction = null;
	private Img hkVector = null;
	private Img gk;
	private Img gkm1;
	private double accelerationFactor = 0.0f;

	public AccelerationState(RandomAccessibleInterval ykIterated) {
		this.ykIterated = ykIterated;
	}

	public RandomAccessibleInterval ykIterated() {
		return ykIterated;
	}

	public Img xkm1Previous() {
		return xkm1Previous;
	}

	public void xkm1Previous(Img xkm1Previous) {
		this.xkm1Previous = xkm1Previous;
	}

	public Img ykPrediction() {
		return ykPrediction;
	}

	public void ykPrediction(Img ykPrediction) {
		this.ykPrediction = ykPrediction;
	}

	public Img hkVector() {
		return hkVector;
	}

	public void hkVector(Img hkVector) {
		this.hkVector = hkVector;
	}

	public Img gk() {
		return gk;
	}

	public void gk(Img gk) {
		this.gk = gk;
	}

	public Img gkm1() {
		return gkm1;
	}

	public void gkm1(Img gkm1) {
		this.gkm1 = gkm1;
	}

	public double accelerationFactor() {
		return accelerationFactor;
	}

	public void accelerationFactor(double accelerationFactor) {
		this.accelerationFactor = accelerationFactor;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy