Commit d3429417 authored by Andrey Filippov's avatar Andrey Filippov

suppressed some warnings, some fixed

parent d93d350f
...@@ -3120,7 +3120,7 @@ public class CalibrationHardwareInterface { ...@@ -3120,7 +3120,7 @@ public class CalibrationHardwareInterface {
} catch (IOException e) { } catch (IOException e) {
String msg="Failed to write XML motor state file: "+path; String msg="Failed to write XML motor state file: "+path;
IJ.showMessage("Error",msg); IJ.showMessage("Error",msg);
throw new IOException (msg); extracted(msg);
} }
try { try {
os.close(); os.close();
...@@ -3146,7 +3146,7 @@ public class CalibrationHardwareInterface { ...@@ -3146,7 +3146,7 @@ public class CalibrationHardwareInterface {
} catch (IOException e) { } catch (IOException e) {
String msg="Failed to read XML configuration file: "+path; String msg="Failed to read XML configuration file: "+path;
IJ.showMessage("Error",msg); IJ.showMessage("Error",msg);
throw new IOException (msg); extracted(msg);
} }
try { try {
is.close(); is.close();
...@@ -3164,11 +3164,14 @@ public class CalibrationHardwareInterface { ...@@ -3164,11 +3164,14 @@ public class CalibrationHardwareInterface {
} else { } else {
String msg="motor"+(i+1)+" is undefined in "+path+". If the file is corrupted you may delete it."; String msg="motor"+(i+1)+" is undefined in "+path+". If the file is corrupted you may delete it.";
IJ.showMessage("Error",msg); IJ.showMessage("Error",msg);
throw new IOException (msg); extracted(msg);
} }
} }
return savedPosition; return savedPosition;
} }
private void extracted(String msg) throws IOException {
throw new IOException (msg);
}
public void checkEnabled(){ public void checkEnabled(){
if (isEnabled()) return; if (isEnabled()) return;
GenericDialog gd = new GenericDialog("Enable motors"); GenericDialog gd = new GenericDialog("Enable motors");
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
import ij.IJ; import ij.IJ;
import ij.ImageStack; import ij.ImageStack;
import java.lang.reflect.InvocationTargetException;
import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicInteger;
import javax.swing.SwingUtilities; import javax.swing.SwingUtilities;
......
...@@ -39,7 +39,7 @@ public class DenseCorrespondence { ...@@ -39,7 +39,7 @@ public class DenseCorrespondence {
private void disparitySweepTile ( public void disparitySweepTile ( // never used so far
int tileX, int tileX,
int tileY, int tileY,
CyclopeanTile [][] allCyclopeanMap, CyclopeanTile [][] allCyclopeanMap,
......
...@@ -9410,7 +9410,8 @@ public class PixelMapping { ...@@ -9410,7 +9410,8 @@ public class PixelMapping {
private BitSet innerMask=null; private BitSet innerMask=null;
private int []borderMask=null; private int []borderMask=null;
public int getNumberOfPlanes(){return this.maximums.length;} public int getNumberOfPlanes(){return this.maximums.length;}
public int getForegroundPlane(){return this.foregroundIndex;} @SuppressWarnings("unused")
public int getForegroundPlane(){return this.foregroundIndex;}
public double getPlaneDisparity (int plane){return this.maximums[plane][0];} public double getPlaneDisparity (int plane){return this.maximums[plane][0];}
public void setPlaneDisparity (double disparity, int plane){this.maximums[plane][0]=disparity;} public void setPlaneDisparity (double disparity, int plane){this.maximums[plane][0]=disparity;}
public double getPlaneStrength (int plane){return this.maximums[plane][1];} public double getPlaneStrength (int plane){return this.maximums[plane][1];}
...@@ -9448,14 +9449,16 @@ public class PixelMapping { ...@@ -9448,14 +9449,16 @@ public class PixelMapping {
this.auxData=new float[n][]; this.auxData=new float[n][];
for (int i=0;i<n;i++) this.auxData[i]=null; for (int i=0;i<n;i++) this.auxData[i]=null;
} }
public void resetAux(){ @SuppressWarnings("unused")
public void resetAux(){
this.auxData=null; this.auxData=null;
} }
public void setAux(int n, float [] data){ public void setAux(int n, float [] data){
if (this.auxData==null) initAux(n+1); if (this.auxData==null) initAux(n+1);
this.auxData[n]=data; this.auxData[n]=data;
} }
public float [][] getAux (){ @SuppressWarnings("unused")
public float [][] getAux (){
return this.auxData; return this.auxData;
} }
public float [] getAux (int n){ public float [] getAux (int n){
...@@ -9467,17 +9470,21 @@ public class PixelMapping { ...@@ -9467,17 +9470,21 @@ public class PixelMapping {
this.likely=new float[this.numPlanes][]; this.likely=new float[this.numPlanes][];
for (int i=0;i<this.numPlanes;i++) this.likely[i]=null; for (int i=0;i<this.numPlanes;i++) this.likely[i]=null;
} }
public void resetLikely(){ @SuppressWarnings("unused")
public void resetLikely(){
this.likely=null; this.likely=null;
} }
public void setLikely(int n, float [] data){ @SuppressWarnings("unused")
public void setLikely(int n, float [] data){
if (this.likely==null) initLikely(); if (this.likely==null) initLikely();
this.likely[n]=data; this.likely[n]=data;
} }
public float [][] getLikely (){ @SuppressWarnings("unused")
public float [][] getLikely (){
return this.likely; return this.likely;
} }
public float [] getLikely (int n){ @SuppressWarnings("unused")
public float [] getLikely (int n){
if ((this.likely==null) || (this.likely.length<=n)) return null; if ((this.likely==null) || (this.likely.length<=n)) return null;
return this.likely[n]; return this.likely[n];
} }
...@@ -9486,17 +9493,21 @@ public class PixelMapping { ...@@ -9486,17 +9493,21 @@ public class PixelMapping {
this.unlikely=new float[this.numPlanes][]; this.unlikely=new float[this.numPlanes][];
for (int i=0;i<this.numPlanes;i++) this.unlikely[i]=null; for (int i=0;i<this.numPlanes;i++) this.unlikely[i]=null;
} }
public void resetUnlikely(){ @SuppressWarnings("unused")
public void resetUnlikely(){
this.unlikely=null; this.unlikely=null;
} }
public void setUnlikely(int n, float [] data){ @SuppressWarnings("unused")
public void setUnlikely(int n, float [] data){
if (this.unlikely==null) initUnlikely(); if (this.unlikely==null) initUnlikely();
this.unlikely[n]=data; this.unlikely[n]=data;
} }
public float [][] getUnlikely(){ @SuppressWarnings("unused")
public float [][] getUnlikely(){
return this.unlikely; return this.unlikely;
} }
public float [] getUnlikely(int n){ @SuppressWarnings("unused")
public float [] getUnlikely(int n){
if ((this.unlikely==null) || (this.unlikely.length<=n)) return null; if ((this.unlikely==null) || (this.unlikely.length<=n)) return null;
return this.unlikely[n]; return this.unlikely[n];
} }
...@@ -9584,7 +9595,8 @@ public class PixelMapping { ...@@ -9584,7 +9595,8 @@ public class PixelMapping {
* @param disparityTolerance - consider "this" as being withing disparityTolerance of disparity. NaN - do not filter by this * @param disparityTolerance - consider "this" as being withing disparityTolerance of disparity. NaN - do not filter by this
* @return * @return
*/ */
public boolean [] getEnabledNonOccluded( @SuppressWarnings("unused")
public boolean [] getEnabledNonOccluded(
double disparityFG, double disparityFG,
double disparity, double disparity,
double disparityTolerance){ double disparityTolerance){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment