我知道有很多关于删除重复的内容,但我似乎无法做到正确,我想知道是否有人能告诉我我做错了什么。所以下面的代码包含一个嵌套的for循环,它遍历一个图像(由一个256x256的矩阵组成),然后传递给ImagePlus来计算半径,θ和值。问题是在半径范围内有重复,我希望每个副本都能像这样总结一下这个值:
......
r=1.44 mm/c (167), value=63
r=1.43 mm/c (167), value=77
r=1.43 mm/c (168), value=70
r=1.42 mm/c (169), value=63
r=1.42 mm/c (169), value=64
r=1.41 mm/c (170), value=70
r=1.41 mm/c (171), value=67
r=1.40 mm/c (171), value=71
...........
所以应该是这样的:
r= 1.43, value=147 (70+77)
r= 1.42, value= 127 (63+64)
r= 1.41, value= 137 (70+67)
....
这是我一直在尝试但我没有运气!我也尝试过使用套装,但我需要按照特定的顺序进行操作,并且不能搞砸了。
final XYSeries data = new XYSeries("Third");
double rMax = -1;
double [][] radiusArray = new double[256][256];
double [][] valueArray = new double[256][256];
for(int i =0; i< 256; i++){
for(int y =0; y< 256; y++){
//image.getPixel(i, y);
//This is taking the pixel position and calculating the r and value at that pixel
String x = image.getLocationAsString(i, y);
String n = image.getValueAsString(i, y);
String delim = ", value=";
String [] tokens = n.split(delim);
double num = Double.parseDouble(tokens[1]);
//if(image.getR() < 1.43){
String [] t = x.split("r=");
String[] b = t[1].split(" mm/c");
//System.out.print("Meet b: "+b[0]);
double radius = Double.parseDouble(b[0]);
String [] theta = x.split("theta= ");
String [] token2 = theta[1].split(Character.toString(IJ.degreeSymbol));
float thetaNum = Float.parseFloat(token2[0]);
//System.out.print(" This is the theta value: "+thetaNum+" ");
if(radius > rMax){
rMax = radius;
}
radiusArray[i][y] = radius;
valueArray[i][y] = num;
//if(thetaNum <= 180.00){
System.out.print(x);
System.out.print(n);
System.out.print(" "+num);
System.out.println();
data.add(radius, num);
//}
//}
}
}
更新
所以我能够摆脱重复,但现在它似乎正在跳过每一个数字,我不知道为什么?
double summation;
for(int i=1; i< 256; i++){
for(int y=1; y< 256; y++){
if(radiusArray[i] != radiusArray[y]){
//System.out.print("its okay"+radiusArray[i][y]+" ");
String n = image.getValueAsString(i, y);
//System.out.println(valueArray[i][y]);
String delim = ", value=";
String [] tokens = n.split(delim);
double num = Double.parseDouble(tokens[1]);
// System.out.print(radiusArray[i][y]);
// System.out.println(" value= "+num);
}
else{
String n = image.getValueAsString(i, y);
String m = image.getValueAsString(i-1, y-1);
String delim = ", value=";
String [] tokens = n.split(delim);
double num = Double.parseDouble(tokens[1]);
String mDelim = ", value=";
String [] mtokens = m.split(delim);
double mnum = Double.parseDouble(tokens[1]);
summation = mnum+ num;
System.out.print(radiusArray[i][y]);
System.out.println(" value= "+summation);
}
}
}
这就是我现在所得到的:
1.64 value= 186.0
1.62 value= 130.0
1.61 value= 120.0
1.59 value= 150.0
1.58 value= 134.0
1.56 value= 130.0
1.55 value= 136.0
1.54 value= 108.0
1.52 value= 144.0
1.51 value= 118.0
答案 0 :(得分:0)
尝试这个以找到欺骗,注意尽管不要在循环时移除;这将导致数组超出范围。也许让其他array
标记为重复以添加欺骗,并在找到它们后删除它们。
for(int i = 0; i < array.length; i++) {
for(int j = 0; j < array.length; j++) {
if(array[i] == array[j]) {
// "i" would be a duplicate...
break;
}
}
}
这样你就不会丢失数组的顺序。只需确保找到重复项,然后将其删除。
希望这有帮助! :)