Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/quick fix import #66

Merged
merged 3 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parallax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import os

__version__ = "0.37.8"
__version__ = "0.37.9"

# allow multiple OpenMP instances
os.environ["KMP_DUPLICATE_LIB_OK"] = "True"
2 changes: 1 addition & 1 deletion parallax/probe_calibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import pandas as pd
from PyQt5.QtCore import QObject, pyqtSignal
from sklearn.linear_model import LinearRegression
from coords_transformation import RotationTransformation
from .coords_transformation import RotationTransformation

# Set logger name
logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion parallax/stage_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def calibrate_stereo(self):
err, instance, retval, R_AB, T_AB, E_AB, F_AB = self.get_results_calibrate_stereo(
camA, coordsA, itmxA, camB, coordsB, itmxB
)
print(f"camA: {camA} camB: {camB} err: {err}")
print(f"camera pair: {camA}-{camB}, err: {err}")
if err < min_err:
self.calibrationStereo = instance
min_err = err
Expand Down
Loading