Skip to content

Commit 005228e

Browse files
committed
fixed manual matching to work with camera wrapper
1 parent d12c89b commit 005228e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

myptv/gui_manual_matching.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
in images.
1212
"""
1313

14-
from myptv.imaging_mod import camera, img_system
14+
from myptv.imaging_mod import camera_wrapper, img_system
1515
from myptv.segmentation_mod import particle_segmentation
1616
from myptv.calibrate_mod import calibrate
1717
from myptv.utils import match_calibration_blobs_and_points
@@ -62,8 +62,8 @@ def __init__(self, cam_list, image_list, cameras_folder = '.'):
6262
self.cam_list = []
6363

6464
for e,cn in enumerate(self.cam_names):
65-
cam = camera(cn, self.cam_res[e])
66-
cam.load(cameras_folder)
65+
cam = camera_wrapper(cn, './')
66+
cam.load()
6767
self.cam_list.append(cam)
6868

6969
self.imsys = img_system(self.cam_list)

0 commit comments

Comments
 (0)