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

org.scijava.ops.image.stats.DefaultQuantile 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.stats;

import net.imglib2.type.numeric.RealType;
import org.scijava.function.Computers;

import java.util.ArrayList;

import static java.util.Collections.swap;

/**
 * Op to calculate the n-th {@code stats.percentile}.
 *
 * @author Daniel Seebacher (University of Konstanz)
 * @author Christian Dietz (University of Konstanz)
 * @author Jan Eglinger
 * @param  input type
 * @param  output type
 * @implNote op names='stats.quantile'
 */
public class DefaultQuantile, N extends Number, O extends RealType>
	implements Computers.Arity2, N, O>
{

	/**
	 * TODO
	 *
	 * @param input
	 * @param quantile
	 * @param output
	 */
	@Override
	public void compute(final Iterable input, final N quantile,
		final O output)
	{
		if (quantile.doubleValue() < 0 || quantile.doubleValue() > 1) {
			throw new IllegalArgumentException(
				"Quantile must be between 0 and 1 (inclusive) but is " + quantile);
		}

		final ArrayList statistics = new ArrayList<>();

		for (I i : input) {
			statistics.add(i.getRealDouble());
		}

		output.setReal(select(statistics, (int) (statistics.size() * quantile
			.doubleValue())));
	}

	/**
	 * Returns the value of the kth lowest element. Do note that for nth lowest
	 * element, k = n - 1.
	 * 

* This an all-in-one method version of your basic quick select algorithm. *

*/ static double select(final ArrayList array, final int k) { int left = 0; int right = array.size() - 1; while (true) { if (right <= left + 1) { if (right == left + 1 && array.get(right) < array.get(left)) { swap(array, left, right); } return array.get(k); } final int middle = (left + right) >>> 1; swap(array, middle, left + 1); if (array.get(left) > array.get(right)) { swap(array, left, right); } if (array.get(left + 1) > array.get(right)) { swap(array, left + 1, right); } if (array.get(left) > array.get(left + 1)) { swap(array, left, left + 1); } int i = left + 1; int j = right; final double pivot = array.get(left + 1); while (true) { do ++i; while (array.get(i) < pivot); do --j; while (array.get(j) > pivot); if (j < i) { break; } swap(array, i, j); } array.set(left + 1, array.get(j)); array.set(j, pivot); if (j >= k) { right = j - 1; } if (j <= k) { left = i; } } } }