Hi André,
First thing to do is some basic benchmarking: time how long it takes to do the calculation. Record also:
OS
Java version
ImageJ version
Vanilla ImageJ or Fiji
BoneJ version
ImageJ can be rolled back (Help > Update ImageJ, choose an old version from the menu)
The timing can be done with a macro, which also helps to keep the dialog options the same e.g.
//----------
startTime = getTime();
//run slice geometry here with your preferred options
elapsedTime = getTime() - startTime;
print("This run took "+elapsedTime+" ms");
//------------
How much is the difference - 10 times slower, 100 times slower?
Michael
On Thursday, 25 April 2013 17:46:44 UTC+1, André Pereira wrote:
Hey Mike!I've been lately using BoneJ to get cross sectional Imin using the Slice Geometry function. However it seems to be highly inefficient, since I updated Fiji. The same thing happens in ImageJ (without Fiji). First I thought that it would be a problem in my computer, but it's happening in different machines now.
Is there something I should try to do?
Thanks for your attention!
Andre