DAQ: find_xtal.py bug where cx and cy were flipped

This commit is contained in:
2025-12-02 13:34:38 +01:00
parent 2142097ce6
commit df1a018084
+3 -1
View File
@@ -266,12 +266,14 @@ def com_nan_check(com):
def get_result_list_from_com(images, com: CenterOfMassModel):
if not com_nan_check(com):
return None
cy, cx = com.n_x, com.n_y
cx, cy = com.n_x, com.n_y
logger.info(f"cx is n_x: {cx}, cy is n_y: {cy},")
start_x, end_x = round(cx - 1), round(cx + 1)
start_y, end_y = round(cy - 1), round(cy + 1)
logger.info(f"range x {start_x} {end_x}, y {start_y} {end_y}")
result_list = [img for img in images
if start_x <= img.nx <= end_x and start_y <= img.ny <= end_y]
logger.debug(result_list)
return result_list
def get_com_image_number(com, images):