Skip to content
This repository has been archived by the owner on Jul 8, 2023. It is now read-only.

Commit

Permalink
Merge branch 'dev' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
ElvinC committed Aug 29, 2021
2 parents c525ada + f144a65 commit a1ae307
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "Hawkeye_Firefly X Lite__4k Ultra Wide",
"note": "",
"calibrated_by": "deadmoo",
"camera_brand": "Hawkeye",
"camera_model": "Firefly X Lite",
"lens_model": "",
"camera_setting": "4k Ultra Wide",
"calibrator_version": "0.2.1-alpha",
"date": "2021-08-23",
"calib_dimension": {
"w": 3840,
"h": 2160
},
"num_images": 16,
"use_opencv_fisheye": true,
"fisheye_params": {
"RMS_error": 1.37617120895551,
"camera_matrix": [
[
1899.5441875505342,
0.0,
1920.0
],
[
0.0,
1425.3289503090905,
1080.0
],
[
0.0,
0.0,
1.0
]
],
"distortion_coeffs": [
-0.04048086944649209,
0.024162499785652793,
-0.009614423183174505,
-0.009665050311279665
]
},
"use_opencv_standard": false,
"calib_params": {}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "firefly8s_hawkeye__2.7k 30 wide",
"note": "",
"calibrated_by": "truog2003",
"camera_brand": "firefly8s",
"camera_model": "hawkeye",
"lens_model": "",
"camera_setting": "2.7k 30 wide",
"calibrator_version": "0.2.1-alpha",
"date": "2021-08-28",
"calib_dimension": {
"w": 1280,
"h": 720
},
"num_images": 10,
"use_opencv_fisheye": true,
"fisheye_params": {
"RMS_error": 0.13039440913402167,
"camera_matrix": [
[
577.9154252779942,
0.0,
640.0
],
[
0.0,
577.4626037548595,
360.0
],
[
0.0,
0.0,
1.0
]
],
"distortion_coeffs": [
0.024842363393347697,
0.006257377547097875,
-0.0037898765821426086,
0.0006455592915864194
]
},
"use_opencv_standard": false,
"calib_params": {}
}
3 changes: 1 addition & 2 deletions gyroflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2724,7 +2724,7 @@ def export_video(self):

filename = QtWidgets.QFileDialog.getSaveFileName(self, "Export video", filter=export_file_filter)
print("Output file: {}".format(filename[0]))

time.sleep(0.5) # Time to close file dialog
# Handled in stabilizer
#if filename[0] == self.infile_path:
# self.show_error("You can't overwride the input file")
Expand Down Expand Up @@ -2765,7 +2765,6 @@ def export_video(self):
self.video_viewer.stop()
viewer_thread = self.video_viewer.thread

time.sleep(0.5)

self.stab.renderfile(start_time, stop_time, filename[0], out_size = out_size,
split_screen = split_screen, bitrate_mbits = bitrate,
Expand Down

0 comments on commit a1ae307

Please sign in to comment.