--
You received this message because you are subscribed to the Google Groups "Icy imaging" group.
To unsubscribe from this group and stop receiving emails from it, send an email to icy-software...@googlegroups.com.
To post to this group, send email to icy-so...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/icy-software/a06b5eac-1cc8-4652-b366-624ebde49742%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/icy-software/a64f7859-5f77-4efb-86c7-d65088986fc9%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/icy-software/df091ab4-d869-49a9-9204-4ba641b6b245%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/icy-software/63a28ddf-59ac-4746-9bcb-7c9d04201d15%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/icy-software/2227761C-7E33-4689-8478-FC516FAE9E2C%40pasteur.fr.
So after further investigation, I did notice that I run on a new(er) kernel version (one that is not online yet), and I believe that there is an issue in the current version that causes the iterations over ROI to not work properly.
Perhaps Stephane could confirm this?
To view this discussion on the web visit https://groups.google.com/d/msgid/icy-software/69882c89-7c8b-466d-9219-186c466a1a3f%40googlegroups.com.
className = currentROI.getClassName()
if (className.equals("plugins.kernel.roi.roi3d.ROI3DArea"))
{
minIntensity = 10000000
it = currentROI.iterator()
while(it.hasNext())
{
v = ROIMinIntensityDescriptor.computeMinIntensity(it.next(), s)
if (v < minIntensity)
minIntensity = v
}
}
else
minIntensity = ROIMinIntensityDescriptor.computeMinIntensity(currentROI, s)