我的问题与Add elements to Arraylist 类似,它替换了 Java 中所有以前的元素。虽然我的变量不是静态的。仍然每次我添加一个,其他值将是那个值。
重要代码:
int counter = 1;
// Threshold the image to get a binary image
image.threshold(44);
image.showImage();
int[] directionFIRST = new int[2];
// Get the first white pixel on the boundary
int[] pixelFIRST = image.getFirstBoundaryPixel();
image.updatePicture(pixelFIRST[0], pixelFIRST[1]);
directionFIRST = getInitialDirection(image, pixelFIRST);
//Create an array for the output. It will hold the (x,y) coordinates of
//every pixel around the border of the region to be contour-traced. The
//directions are also saved for the chain code.
List<int[]> listCONTOUR = new ArrayList<int[]>();
List<int[]> listDIRECTION = new ArrayList<int[]>();
// Create a variable which will be used to tell the algorithm when to stop:
boolean stopCondition = false;
int[][] ROTmatrix90 = new int[][]{{0, 1}, {-1, 0}};
int[][] ROTmatrix180 = new int[][]{{-1, 0}, {0, -1}};
int[] tempPIX = pixelFIRST;
int[] tempDIR = directionFIRST;
while (!stopCondition) {
//Take the direction opposit the current direction
tempDIR = multiply(ROTmatrix180, tempDIR);
tempPIX[0] = tempPIX[0] + tempDIR[0];
tempPIX[1] = tempPIX[1] + tempDIR[1];
if (image.get(tempPIX[0], tempPIX[1]) == 1) {
listCONTOUR.add(tempPIX);
listDIRECTION.add(tempDIR);
} else {
tempDIR = multiply(ROTmatrix90, tempDIR);
tempPIX[0] = tempPIX[0] + tempDIR[0];
tempPIX[1] = tempPIX[1] + tempDIR[1];
if (image.get(tempPIX[0], tempPIX[1]) == 1) {
listCONTOUR.add(tempPIX);
listDIRECTION.add(tempDIR);
} else {
tempDIR = multiply(ROTmatrix90, tempDIR);
tempPIX[0] = tempPIX[0] + tempDIR[0];
tempPIX[1] = tempPIX[1] + tempDIR[1];
if (image.get(tempPIX[0], tempPIX[1]) == 1) {
listCONTOUR.add(tempPIX);
listDIRECTION.add(tempDIR);
} else {
tempDIR = multiply(ROTmatrix90, tempDIR);
tempPIX[0] = tempPIX[0] + tempDIR[0];
tempPIX[1] = tempPIX[1] + tempDIR[1];
if (image.get(tempPIX[0], tempPIX[1]) == 1) {
listCONTOUR.add(tempPIX);
listDIRECTION.add(tempDIR);
} else {
tempDIR = multiply(ROTmatrix90, tempDIR);
tempPIX[0] = tempPIX[0] + tempDIR[0];
tempPIX[1] = tempPIX[1] + tempDIR[1];
if (image.get(tempPIX[0], tempPIX[1]) == 1) {
listCONTOUR.add(tempPIX);
listDIRECTION.add(tempDIR);
}
}
}
}
}
counter++;
image.updatePicture(tempPIX[0], tempPIX[1]);
System.out.println(tempPIX[0] + " , " + tempPIX[1]);
if(tempPIX[0]== tempPIX[1]){
System.out.println("test");
}
if ((listCONTOUR.size() > 2) && (tempPIX[0] == listCONTOUR.get(1)[0]) && (tempPIX[0] == listCONTOUR.get(1)[1])) {
stopCondition = true;
listCONTOUR.remove(listCONTOUR.get(listCONTOUR.size() - 1));
listDIRECTION.remove(listDIRECTION.get(listDIRECTION.size() - 1));
}
}
当我在循环运行 5 次后检查 listCONTOUR 的值时,所有值都相同,这是不可能的。我搜索了一个解决方案,但所有解决方案都指向变量是静态的这一事实。而在我的情况下不是。它只是一个简单的局部变量,在函数中启动并在 1 个函数中使用。