Skip to content

Commit

Permalink
reduce angle threshold for successive fourier rotations
Browse files Browse the repository at this point in the history
  • Loading branch information
gvarnavi committed Jan 16, 2025
1 parent dbb2a1b commit 3de4557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py4DSTEM/process/phase/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2959,7 +2959,7 @@ def fourier_rotate_volume_base(array, tf, xp=np):
return out_array


def fourier_rotate_volume(array, tf, angle_threshold=np.pi / 6, xp=np):
def fourier_rotate_volume(array, tf, angle_threshold=np.pi / 9, xp=np):
""" """

cmplx_obj = xp.iscomplexobj(array)
Expand Down Expand Up @@ -3011,7 +3011,7 @@ def return_tsp_and_edge_weighted_graph(old_graph):


def calculate_orientation_matrices_tsp_ordering(
orientation_matrices, num_iter, angle_threshold=np.pi / 6
orientation_matrices, num_iter, angle_threshold=np.pi / 9
):
""" """
try:
Expand Down

0 comments on commit 3de4557

Please sign in to comment.