You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
first of all thanks for the great module. In the process of using it, I noticed a small optimization for the code:
if target_label is not None:
self.add_label(source_label, model_name="six_pos", model_position="shead", preferred_placement="source_on_edge",
border_color=label_border_color, background_color = label_background_color)
i would suggest the following changes (target_label and thead):
if target_label is not None:
self.add_label(target_label, model_name="six_pos", model_position="thead", preferred_placement="source_on_edge",
border_color=label_border_color, background_color = label_background_color)
Thanks!
The text was updated successfully, but these errors were encountered:
Hello, team!
first of all thanks for the great module. In the process of using it, I noticed a small optimization for the code:
i would suggest the following changes (target_label and thead):
Thanks!
The text was updated successfully, but these errors were encountered: