Changeset 7613 for trunk/projects
- Timestamp:
- 02/04/11 12:01:10 (9 years ago)
- Location:
- trunk/projects/opencl-decon
- Files:
-
- 18 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/projects/opencl-decon
- Property svn:ignore
-
old new 1 1 build 2 HisYFP-SPIM
-
- Property svn:ignore
-
trunk/projects/opencl-decon/.classpath
r7578 r7613 20 20 <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/> 21 21 <classpathentry kind="lib" path="lib/jocl.jar"/> 22 <classpathentry kind="lib" path="lib/imglib-algorithms.jar"/> 23 <classpathentry kind="lib" path="lib/imglib-ij.jar"/> 24 <classpathentry kind="lib" path="lib/imglib-io.jar"/> 25 <classpathentry kind="lib" path="lib/imglib-scripting.jar"/> 26 <classpathentry kind="lib" path="lib/imglib.jar"/> 27 <classpathentry kind="lib" path="lib/loci_tools.jar"/> 22 28 <classpathentry kind="output" path="bin"/> 23 29 </classpath> -
trunk/projects/opencl-decon/src/demos/Iterative_3D_Deconvolution.java
r7525 r7613 813 813 814 814 long time = System.currentTimeMillis(); 815 long executionTime = fastHartleyTransform3D.run( data, inverse);815 long executionTime = fastHartleyTransform3D.run( data, inverse ); 816 816 time = System.currentTimeMillis() - time; 817 817 times[1] += time; -
trunk/projects/opencl-decon/src/org/imagejdev/api/FHTEJBService.java
r7170 r7613 6 6 package org.imagejdev.api; 7 7 8 /**9 *10 * @author rick11 */12 8 13 9 public interface FHTEJBService { … … 18 14 */ 19 15 public String getTestMessage(); 20 /** 16 17 public float[] getSobel( int width, int height, float[] imageData ); 18 19 /** 20 * Profile network throughput... 21 * @return 22 */ 23 public float[][] getProfileData(float[][] data); 24 25 /** 21 26 * Performs a single 3D FHT on the provided data 22 27 **/ 23 28 public float[][] fht( int width, int height, int depth, float[][] data, boolean inverse ); 29 24 30 /** 25 31 * Performs iterative 3d deconvolution with the provided data 26 32 **/ 27 public float[][] getIterative3DDecon( float[][] dataAin, float[][] dataYin, boolean normalize, int bw, int bh, int bd, int kd, int kw, int kh, double filterX, double filterY, double filterZ, boolean dB, boolean wiener, boolean antiRing, int nIter, float gamma, boolean detectDivergence, double changeThreshPercent);33 public float[][] getIterative3DDecon( float[][] dataAin, float[][] dataYin, boolean normalize, int bw, int bh, int bd, int kd, int kw, int kh, double filterX, double filterY, double filterZ, boolean dB, boolean wiener, boolean antiRing, int nIter, float gamma, boolean detectDivergence, double changeThreshPercent); 28 34 }
Note: See TracChangeset
for help on using the changeset viewer.