
org.scijava.ops.image.threshold.rosin.ComputeRosinThreshold Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scijava-ops-image Show documentation
Show all versions of scijava-ops-image Show documentation
Image processing operations for SciJava Ops.
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.threshold.rosin;
import org.scijava.ops.image.threshold.AbstractComputeThresholdHistogram;
import net.imglib2.histogram.Histogram1d;
import net.imglib2.type.numeric.RealType;
/**
* Implements Rosin's threshold method. From : Rosin, Paul L. "Unimodal
* thresholding." Pattern recognition 34.11 (2001): 2083-2096.
*
* Implementation inspired/copied from
* Paul Rosin
* C implementation.
*
*
* @author Hadrien Mary
* @implNote op names='threshold.rosin', priority='100.'
*/
public class ComputeRosinThreshold> extends
AbstractComputeThresholdHistogram
{
/**
* TODO
*
* @param histo the {@link Histogram1d}
* @return the Rosin threshold value
*/
@Override
public long computeBin(final Histogram1d histo) {
final long[] hist = histo.toLongArray();
return computeBin(hist);
}
public static long computeBin(final long[] hist) {
final int noPts = hist.length;
int pk, st, fi, d1, d2;
long tmp;
int i;
int thresh;
boolean doInvert = false;
pk = findStart(hist, noPts);
st = findFirst(hist, noPts);
fi = findEnd(hist, noPts);
d1 = pk - st;
d2 = fi - pk;
// TODO: figure out how to log. If we wanted to pass an OpMonitor then all
// thresholds would have to take an OpMonito(?)
// if ((d1 < 0) || (d2 < 0)) {
// Logger.warn("Histogram peak at a strange location");
// }
if (d1 > d2) {
doInvert = true;
}
if (doInvert) {
for (i = 0; i < noPts / 2; i++) {
tmp = hist[i];
hist[i] = hist[noPts - 1 - i];
hist[noPts - 1 - i] = tmp;
}
}
st = findStart(hist, noPts);
thresh = findCorner(hist, st, noPts);
if (doInvert) {
thresh = noPts - thresh - 1;
}
return thresh;
}
private static int findStart(final long[] Y, final int noPts) {
int i, st;
long max;
// Find largest peak
st = 0;
max = Y[0];
for (i = 1; i < noPts; i++) {
if (Y[i] > max) {
max = Y[i];
st = i;
}
}
return st;
}
private static int findFirst(final long[] Y, final int noPts) {
int i, st;
st = 0;
for (i = 0; i < noPts; i++) {
if (Y[i] > 0) {
st = i;
break;
}
}
return st;
}
private static int findEnd(final long[] Y, final int noPts) {
int i, fi;
fi = 0;
for (i = 1; i < noPts; i++) {
if (Y[i] > 0) {
fi = i;
}
}
return fi;
}
private static int findCorner(final long[] Y, final int st, int noPts) {
final long[] X = new long[noPts];
int i;
float dist;
float maxDist = -1;
int thresh = -1;
int end;
for (i = st; i < noPts; i++) {
X[i] = i;
}
end = noPts - 1;
while (Y[end] == 0 && end >= 0) {
end--;
}
noPts = end;
if (end <= 0) {
throw new IllegalStateException("Histogram is empty.");
}
for (i = st; i <= noPts; i++) {
dist = (Y[st] - Y[noPts - 1]) * X[i] //
- (X[st] - X[noPts - 1]) * Y[i] //
- X[noPts - 1] * Y[st] //
+ X[st] * Y[noPts - 1];
dist = (float) (Math.pow(dist, 2) / (Math.pow(X[st] - X[noPts - 1], 2) +
Math.pow(Y[st] - Y[noPts - 1], 2)));
dist = Math.abs(dist);
if (dist > maxDist) {
maxDist = dist;
thresh = i;
}
}
return thresh;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy