simba-uw-tf-dev 4.7.7__py3-none-any.whl → 4.7.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of simba-uw-tf-dev might be problematic. Click here for more details.
- simba/SimBA.py +1 -1
- simba/assets/lookups/tooptips.json +32 -1
- simba/third_party_label_appenders/transform/sleap_csv_to_yolo.py +5 -3
- simba/ui/blob_tracker_ui.py +25 -26
- simba/ui/pop_ups/batch_preprocess_pop_up.py +2 -2
- simba/ui/pop_ups/initialize_blob_tracking_pop_up.py +2 -2
- simba/ui/pop_ups/video_processing_pop_up.py +8 -7
- simba/ui/pop_ups/yolo_pose_train_popup.py +1 -1
- simba/ui/tkinter_functions.py +1091 -1044
- simba/utils/read_write.py +2 -2
- simba/video_processors/batch_process_menus.py +24 -21
- {simba_uw_tf_dev-4.7.7.dist-info → simba_uw_tf_dev-4.7.9.dist-info}/METADATA +1 -1
- {simba_uw_tf_dev-4.7.7.dist-info → simba_uw_tf_dev-4.7.9.dist-info}/RECORD +17 -17
- {simba_uw_tf_dev-4.7.7.dist-info → simba_uw_tf_dev-4.7.9.dist-info}/LICENSE +0 -0
- {simba_uw_tf_dev-4.7.7.dist-info → simba_uw_tf_dev-4.7.9.dist-info}/WHEEL +0 -0
- {simba_uw_tf_dev-4.7.7.dist-info → simba_uw_tf_dev-4.7.9.dist-info}/entry_points.txt +0 -0
- {simba_uw_tf_dev-4.7.7.dist-info → simba_uw_tf_dev-4.7.9.dist-info}/top_level.txt +0 -0
simba/utils/read_write.py
CHANGED
|
@@ -71,7 +71,7 @@ from simba.utils.errors import (CorruptedFileError, DataHeaderError,
|
|
|
71
71
|
NoFilesFoundError, NotDirectoryError,
|
|
72
72
|
ParametersFileError, PermissionError,
|
|
73
73
|
SimBAPAckageVersionError)
|
|
74
|
-
from simba.utils.printing import SimbaTimer,
|
|
74
|
+
from simba.utils.printing import SimbaTimer, stdout_information, stdout_success
|
|
75
75
|
from simba.utils.warnings import (
|
|
76
76
|
FileExistWarning, FrameRangeWarning, GPUToolsWarning, InvalidValueWarning,
|
|
77
77
|
NoFileFoundWarning, ThirdPartyAnnotationsInvalidFileFormatWarning)
|
|
@@ -885,7 +885,7 @@ def read_frm_of_video(video_path: Union[str, os.PathLike, cv2.VideoCapture],
|
|
|
885
885
|
ret, img = capture.read()
|
|
886
886
|
if not ret:
|
|
887
887
|
if raise_error:
|
|
888
|
-
raise FrameRangeError(msg=f"Frame {frame_index} for video {video_path} could not be read.")
|
|
888
|
+
raise FrameRangeError(msg=f"Frame {frame_index} for video {video_path} could not be read.", source=read_frm_of_video.__name__)
|
|
889
889
|
else:
|
|
890
890
|
return None
|
|
891
891
|
else:
|
|
@@ -20,7 +20,7 @@ from simba.utils.checks import (check_ffmpeg_available,
|
|
|
20
20
|
check_if_string_value_is_valid_video_timestamp,
|
|
21
21
|
check_int, check_nvidea_gpu_available,
|
|
22
22
|
check_that_hhmmss_start_is_before_end)
|
|
23
|
-
from simba.utils.enums import Formats, Keys, Links, Options
|
|
23
|
+
from simba.utils.enums import Formats, Keys, Links, Options
|
|
24
24
|
from simba.utils.errors import (FFMPEGCodecGPUError, FFMPEGNotFoundError,
|
|
25
25
|
NoFilesFoundError)
|
|
26
26
|
from simba.utils.lookups import (get_color_dict, get_ffmpeg_encoders,
|
|
@@ -30,7 +30,7 @@ from simba.utils.lookups import (get_color_dict, get_ffmpeg_encoders,
|
|
|
30
30
|
from simba.utils.printing import SimbaTimer, stdout_success
|
|
31
31
|
from simba.utils.read_write import (
|
|
32
32
|
check_if_hhmmss_timestamp_is_valid_part_of_video, get_fn_ext,
|
|
33
|
-
get_video_meta_data, str_2_bool)
|
|
33
|
+
get_video_meta_data, read_frm_of_video, str_2_bool)
|
|
34
34
|
from simba.video_processors.batch_process_create_ffmpeg_commands import \
|
|
35
35
|
FFMPEGCommandCreator
|
|
36
36
|
from simba.video_processors.roi_selector import ROISelector
|
|
@@ -69,19 +69,23 @@ class BatchProcessFrame(PopUpMixin):
|
|
|
69
69
|
|
|
70
70
|
"""
|
|
71
71
|
|
|
72
|
-
def __init__(self,
|
|
72
|
+
def __init__(self,
|
|
73
|
+
input_dir: Union[str, os.PathLike],
|
|
73
74
|
output_dir: Union[str, os.PathLike]):
|
|
74
75
|
|
|
75
76
|
if not check_ffmpeg_available(raise_error=False):
|
|
76
77
|
raise FFMPEGNotFoundError(msg='Cannot perform batch video processing: FFMPEG not found', source=self.__class__.__name__)
|
|
77
78
|
|
|
78
79
|
|
|
79
|
-
|
|
80
|
+
|
|
80
81
|
self.input_dir, self.output_dir = input_dir, output_dir
|
|
81
82
|
if not os.path.exists(self.output_dir):
|
|
82
83
|
os.makedirs(self.output_dir)
|
|
83
84
|
self.videos_in_dir_dict, self.crop_dict = {}, {}
|
|
84
85
|
self.get_input_files()
|
|
86
|
+
if len(list(self.videos_in_dir_dict.keys())) == 0:
|
|
87
|
+
raise NoFilesFoundError(msg=f"The input directory {self.input_dir} contains ZERO video files in either .avi, .mp4, .mov, .flv, or m4v format", source=self.__class__.__name__)
|
|
88
|
+
PopUpMixin.__init__(self, title="BATCH PRE-PROCESS VIDEOS IN SIMBA", size=(2000, 600), icon='factory')
|
|
85
89
|
self.red_drop_img = ImageTk.PhotoImage(image=PIL.Image.open(MENU_ICONS["crop_red"]["icon_path"]))
|
|
86
90
|
self.black_crop_img = ImageTk.PhotoImage(image=PIL.Image.open(MENU_ICONS["crop"]["icon_path"]))
|
|
87
91
|
self.percent_to_crf_lookup = percent_to_crf_lookup()
|
|
@@ -91,8 +95,7 @@ class BatchProcessFrame(PopUpMixin):
|
|
|
91
95
|
self.video_quality_to_preset_lookup = video_quality_to_preset_lookup()
|
|
92
96
|
self.clrs = get_color_dict()
|
|
93
97
|
self.gpu_available_state = NORMAL if check_nvidea_gpu_available() else DISABLED
|
|
94
|
-
|
|
95
|
-
raise NoFilesFoundError(msg=f"The input directory {self.input_dir} contains ZERO video files in either .avi, .mp4, .mov, .flv, or m4v format", source=self.__class__.__name__)
|
|
98
|
+
|
|
96
99
|
self.max_char_vid_name = len(max(list(self.videos_in_dir_dict.keys()), key=len))
|
|
97
100
|
self.root.lift()
|
|
98
101
|
self.root.attributes("-topmost", True)
|
|
@@ -124,24 +127,24 @@ class BatchProcessFrame(PopUpMixin):
|
|
|
124
127
|
self.quick_settings_frm = CreateLabelFrameWithIcon(parent=self.main_frm,header="QUICK SETTINGS",icon_name=Keys.DOCUMENTATION.value,icon_link=Links.BATCH_PREPROCESS.value)
|
|
125
128
|
|
|
126
129
|
self.clip_video_settings_frm = CreateLabelFrameWithIcon(parent=self.quick_settings_frm, header='CLIP VIDEOS SETTING', icon_name='clip', padx=5, pady=5)
|
|
127
|
-
self.quick_clip_start_entry_box = Entry_Box(parent=self.clip_video_settings_frm, fileDescription='START TIME: ', labelwidth=15, value="00:00:00", justify='center', img='play', entry_box_width=12)
|
|
128
|
-
self.quick_clip_end_entry_box = Entry_Box(parent=self.clip_video_settings_frm, fileDescription='END TIME: ', labelwidth=15, value="00:00:00", justify='center', img='finish', entry_box_width=12)
|
|
130
|
+
self.quick_clip_start_entry_box = Entry_Box(parent=self.clip_video_settings_frm, fileDescription='START TIME: ', labelwidth=15, value="00:00:00", justify='center', img='play', entry_box_width=12, tooltip_key='BATCH_CLIP_START_TIME')
|
|
131
|
+
self.quick_clip_end_entry_box = Entry_Box(parent=self.clip_video_settings_frm, fileDescription='END TIME: ', labelwidth=15, value="00:00:00", justify='center', img='finish', entry_box_width=12, tooltip_key='BATCH_CLIP_END_TIME')
|
|
129
132
|
self.quick_clip_apply = SimbaButton(parent=self.clip_video_settings_frm, txt='APPLY', img='arrow_down_green_2', cmd=self.apply_trim_to_all)
|
|
130
133
|
|
|
131
134
|
self.quick_downsample_frm = CreateLabelFrameWithIcon(parent=self.quick_settings_frm, header='DOWNSAMPLE VIDEOS', icon_name='resize', padx=5, pady=5)
|
|
132
|
-
self.quick_downsample_width = Entry_Box(parent=self.quick_downsample_frm, fileDescription='WIDTH: ', labelwidth=15, value=400, justify='center', img='width', entry_box_width=12)
|
|
133
|
-
self.quick_downsample_height = Entry_Box(parent=self.quick_downsample_frm, fileDescription='HEIGHT: ', labelwidth=15, value=600, justify='center', img='height', entry_box_width=12)
|
|
135
|
+
self.quick_downsample_width = Entry_Box(parent=self.quick_downsample_frm, fileDescription='WIDTH: ', labelwidth=15, value=400, justify='center', img='width', entry_box_width=12, tooltip_key='BATCH_DOWNSAMPLE_WIDTH')
|
|
136
|
+
self.quick_downsample_height = Entry_Box(parent=self.quick_downsample_frm, fileDescription='HEIGHT: ', labelwidth=15, value=600, justify='center', img='height', entry_box_width=12, tooltip_key='BATCH_DOWNSAMPLE_HEIGHT')
|
|
134
137
|
self.quick_downsample_apply = SimbaButton(parent=self.quick_downsample_frm, txt='APPLY', img='arrow_down_green_2', cmd=self.apply_resolution_to_all)
|
|
135
138
|
|
|
136
139
|
|
|
137
140
|
self.quick_set_fps = CreateLabelFrameWithIcon(parent=self.quick_settings_frm, header="CHANGE FPS", icon_name='camera', padx=5, pady=12)
|
|
138
|
-
self.quick_fps_entry_box = Entry_Box(parent=self.quick_set_fps, fileDescription='FPS: ', labelwidth=15, value=15.0, justify='center', img='camera', entry_box_width=12)
|
|
141
|
+
self.quick_fps_entry_box = Entry_Box(parent=self.quick_set_fps, fileDescription='FPS: ', labelwidth=15, value=15.0, justify='center', img='camera', entry_box_width=12, tooltip_key='BATCH_FPS')
|
|
139
142
|
self.quick_fps_apply = SimbaButton(parent=self.quick_set_fps, txt='APPLY', img='arrow_down_green_2', cmd=self.apply_fps_to_all)
|
|
140
143
|
|
|
141
144
|
|
|
142
145
|
self.quick_set_quality = CreateLabelFrameWithIcon(parent=self.quick_settings_frm, header="OUTPUT VIDEO QUALITY", icon_name='star', padx=5, pady=12)
|
|
143
|
-
self.use_gpu_dropdown = SimBADropDown(parent=self.quick_set_quality, label="USE GPU", label_width=20, dropdown_options=['TRUE', 'FALSE'], value='FALSE', img='gpu_3', state=self.gpu_available_state, dropdown_width=15)
|
|
144
|
-
self.quick_set_quality_dropdown = SimBADropDown(parent=self.quick_set_quality, label='VIDEO QUALITY %', label_width=20, dropdown_options=self.cpu_video_quality, value=60, img='star', dropdown_width=15)
|
|
146
|
+
self.use_gpu_dropdown = SimBADropDown(parent=self.quick_set_quality, label="USE GPU", label_width=20, dropdown_options=['TRUE', 'FALSE'], value='FALSE', img='gpu_3', state=self.gpu_available_state, dropdown_width=15, tooltip_key='USE_GPU')
|
|
147
|
+
self.quick_set_quality_dropdown = SimBADropDown(parent=self.quick_set_quality, label='VIDEO QUALITY %', label_width=20, dropdown_options=self.cpu_video_quality, value=60, img='star', dropdown_width=15, tooltip_key='OUTPUT_VIDEO_QUALITY')
|
|
145
148
|
self.quick_set_quality_apply = SimbaButton(parent=self.quick_set_quality, txt='APPLY', img='arrow_down_green_2', cmd=self.apply_quality_to_all)
|
|
146
149
|
|
|
147
150
|
self.quick_settings_frm.grid(row=0, column=0, sticky=W, padx=10)
|
|
@@ -224,15 +227,15 @@ class BatchProcessFrame(PopUpMixin):
|
|
|
224
227
|
self.headings["start_time_col_head"] = SimBALabel(parent=self.videos_frm, txt='START \n TIME', font=Formats.FONT_REGULAR_BOLD.value, justify='center', padx=12, img='play')
|
|
225
228
|
self.headings["end_time_col_head"] = SimBALabel(parent=self.videos_frm, txt='END \n TIME', font=Formats.FONT_REGULAR_BOLD.value, justify='center', img='stop', padx=12)
|
|
226
229
|
self.headings["video_quality_head"] = SimBALabel(parent=self.videos_frm, txt='QUALITY', font=Formats.FONT_REGULAR_BOLD.value, justify='center', padx=12, img='star')
|
|
227
|
-
self.headings["shorten_all_videos_cbox"], self.headings["clip_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n CLIP', txt_img='clip', cmd=lambda: self.inverse_all_cb_ticks(variable_name="clip_cb_var"))
|
|
230
|
+
self.headings["shorten_all_videos_cbox"], self.headings["clip_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n CLIP', txt_img='clip', cmd=lambda: self.inverse_all_cb_ticks(variable_name="clip_cb_var"), tooltip_key='BATCH_APPLY_CLIP')
|
|
228
231
|
self.headings["video_width_col_head"] = SimBALabel(parent=self.videos_frm, txt='WIDTH', img='width', font=Formats.FONT_REGULAR_BOLD.value, justify='center', padx=12)
|
|
229
232
|
self.headings["video_height_col_head"] = SimBALabel(parent=self.videos_frm, txt='HEIGHT', img='height', font=Formats.FONT_REGULAR_BOLD.value, justify='center', padx=12)
|
|
230
|
-
self.headings["downsample_all_videos_cbox"], self.headings["downsample_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n DOWNSAMPLE', cmd=lambda: self.inverse_all_cb_ticks(variable_name="downsample_cb_var"))
|
|
233
|
+
self.headings["downsample_all_videos_cbox"], self.headings["downsample_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n DOWNSAMPLE', cmd=lambda: self.inverse_all_cb_ticks(variable_name="downsample_cb_var"), tooltip_key='BATCH_APPLY_DOWNSAMPLE')
|
|
231
234
|
self.headings["fps_col_head"] = SimBALabel(parent=self.videos_frm, txt='FPS', img='camera', font=Formats.FONT_REGULAR_BOLD.value, justify='center', padx=12)
|
|
232
|
-
self.headings["change_fps_all_videos_cbox"], self.headings["fps_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n VIDEO FPS', cmd=lambda: self.inverse_all_cb_ticks(variable_name="fps_cb_var"))
|
|
233
|
-
self.headings["grayscale_cbox"], self.headings["grayscale_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n GREYSCALE', cmd=lambda: self.inverse_all_cb_ticks(variable_name="grayscale_cb_var"))
|
|
234
|
-
self.headings["frame_cnt_cbox"], self.headings["frame_cnt_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n FRAME COUNT', cmd=lambda: self.inverse_all_cb_ticks(variable_name="frame_cnt_cb_var"))
|
|
235
|
-
self.headings["apply_clahe_cbox"], self.headings["apply_clahe_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n CLAHE', cmd=lambda: self.inverse_all_cb_ticks(variable_name="apply_clahe_cb_var"))
|
|
235
|
+
self.headings["change_fps_all_videos_cbox"], self.headings["fps_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n VIDEO FPS', cmd=lambda: self.inverse_all_cb_ticks(variable_name="fps_cb_var"), tooltip_key='BATCH_APPLY_FPS')
|
|
236
|
+
self.headings["grayscale_cbox"], self.headings["grayscale_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n GREYSCALE', cmd=lambda: self.inverse_all_cb_ticks(variable_name="grayscale_cb_var"), tooltip_key='BATCH_APPLY_GREYSCALE')
|
|
237
|
+
self.headings["frame_cnt_cbox"], self.headings["frame_cnt_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n FRAME COUNT', cmd=lambda: self.inverse_all_cb_ticks(variable_name="frame_cnt_cb_var"), tooltip_key='BATCH_APPLY_FRAME_COUNT')
|
|
238
|
+
self.headings["apply_clahe_cbox"], self.headings["apply_clahe_cb_var"] = SimbaCheckbox(parent=self.videos_frm, txt='APPLY \n CLAHE', cmd=lambda: self.inverse_all_cb_ticks(variable_name="apply_clahe_cb_var"), tooltip_key='BATCH_APPLY_CLAHE')
|
|
236
239
|
|
|
237
240
|
self.videos_frm.grid(row=1, column=0, sticky=W, padx=5, pady=15)
|
|
238
241
|
self.headings["video_name_col_head"].grid(row=0, column=0, sticky=NW)
|
|
@@ -270,12 +273,12 @@ class BatchProcessFrame(PopUpMixin):
|
|
|
270
273
|
for w in self.videos_frm.grid_slaves():
|
|
271
274
|
if int(w.grid_info()["row"]) > 1:
|
|
272
275
|
w.destroy()
|
|
273
|
-
|
|
274
276
|
for video_cnt, (name, data) in enumerate(self.videos_in_dir_dict.items()):
|
|
275
277
|
self.videos[name] = {}
|
|
276
278
|
row = video_cnt * 2 + 2
|
|
277
279
|
row_color = '#f8f8f8' if video_cnt % 2 == 0 else '#e5e5e5'
|
|
278
|
-
|
|
280
|
+
img = read_frm_of_video(video_path=data['file_path'], frame_index=0, raise_error=False, size=(420, 280), keep_aspect_ratio=True)
|
|
281
|
+
self.videos[name]["video_name_lbl"] = SimBALabel(parent=self.videos_frm, txt=name, font=Formats.FONT_REGULAR_BOLD.value, width=self.max_char_vid_name, justify='center', bg_clr=row_color, hover_img=img)
|
|
279
282
|
self.videos[name]["crop_btn"] = SimbaButton(parent=self.videos_frm, txt='CROP', txt_clr='black', cmd=lambda k=self.videos[name]["video_name_lbl"]["text"]: self.batch_process_crop_function(k), img='crop_2')
|
|
280
283
|
self.videos[name]["start_entry"] = Entry_Box(parent=self.videos_frm, fileDescription='', value="00:00:00", justify='center', entry_font=Formats.FONT_REGULAR_BOLD.value, entry_box_width=12)
|
|
281
284
|
self.videos[name]["end_entry"] = Entry_Box(parent=self.videos_frm, fileDescription='', value=data["video_length"], justify='center', entry_font=Formats.FONT_REGULAR_BOLD.value, entry_box_width=12)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: simba-uw-tf-dev
|
|
3
|
-
Version: 4.7.
|
|
3
|
+
Version: 4.7.9
|
|
4
4
|
Summary: Toolkit for computer classification and analysis of behaviors in experimental animals
|
|
5
5
|
Home-page: https://github.com/sgoldenlab/simba
|
|
6
6
|
Author: Simon Nilsson, Jia Jie Choong, Sophia Hwang
|
|
@@ -7,7 +7,7 @@ scripts/make_qr_code.py,sha256=kRwIDxTpje8VFnSdiGWgetkJk1dKAe6HaQLZ-YqAehg,6503
|
|
|
7
7
|
scripts/osf_download.py,sha256=245LvhkUaECzbAYh-QYK_Q5pO1MF-lta_e4OdFJHo9I,2435
|
|
8
8
|
scripts/upgrade_simba_keep_configs.py,sha256=yk1hnt9of44FjGRINcis4RopUgNV_QIyRABv-sf--58,5274
|
|
9
9
|
simba/.DS_Store,sha256=yMGLDvlm5TWUT_ePJnMtFflChocptQ5zbSINTYrioAw,20484
|
|
10
|
-
simba/SimBA.py,sha256=
|
|
10
|
+
simba/SimBA.py,sha256=Mg6mZB4QmN2gOUt8NHbiA9NwMF8PDAapGYPvl94xebc,101696
|
|
11
11
|
simba/SimBA_logo.ico,sha256=qq53eMXfA5Qfv7LINLCO47jSrcSY5ph4pXDdJZEz54g,243998
|
|
12
12
|
simba/__init__.py,sha256=Zbw277SaA4dLpF3IDQnIjzOb-GWKgF-V6caod95b4YA,539
|
|
13
13
|
simba/requirements.txt,sha256=Ou1KKYqIsOaqQ10UeqxTPorpHWBH5rTMGzpFif1VRWc,2072
|
|
@@ -464,7 +464,7 @@ simba/assets/lookups/critical_values_05.pickle,sha256=bYlqp9T6ehVIjIJr3Uwfulj-kS
|
|
|
464
464
|
simba/assets/lookups/feature_extraction_headers.csv,sha256=I5TLfAihpHgzUZ7OUyGge-Yu-XGbQmHbDFAD4vVAc4w,2987
|
|
465
465
|
simba/assets/lookups/features.csv,sha256=bc6aN2ZRa2J2dxur-Zjcpc4I3q6vd-gN2erwnhdzLIk,14175
|
|
466
466
|
simba/assets/lookups/model_names.parquet,sha256=hOuvYONO8wZGcAwRNSf_hS_lUaynC8Gt24MLOg3w5ZA,270783
|
|
467
|
-
simba/assets/lookups/tooptips.json,sha256=
|
|
467
|
+
simba/assets/lookups/tooptips.json,sha256=a2ePMvU1fA5puZ7YSxHTi7ZBX67QGTRfTzqX0xu4wrA,13779
|
|
468
468
|
simba/assets/lookups/unsupervised_example_x.csv,sha256=bc6aN2ZRa2J2dxur-Zjcpc4I3q6vd-gN2erwnhdzLIk,14175
|
|
469
469
|
simba/assets/lookups/yolo.yaml,sha256=3Omt-t-w555E4oAJsRRblBjzyiTW9e5x-0VuyQ-t9C0,278
|
|
470
470
|
simba/assets/lookups/yolo_schematics/yolo_1.csv,sha256=TzUzWAtia4P-5FRwLPnjU0zDSkAA-nItNFCcq6nG_iQ,72
|
|
@@ -1363,7 +1363,7 @@ simba/third_party_label_appenders/transform/labelme_to_yolo_seg.py,sha256=wJOGVZ
|
|
|
1363
1363
|
simba/third_party_label_appenders/transform/simba_roi_to_yolo.py,sha256=i0bO_ZwjHSMzCfHlKecuqYXBvJgzhg2ohoVXdjzkemU,12969
|
|
1364
1364
|
simba/third_party_label_appenders/transform/simba_to_yolo.py,sha256=9_gH94YxdeDwVfZF9Vlv-w5SiOu41X1Lpk98UWztXZ4,13570
|
|
1365
1365
|
simba/third_party_label_appenders/transform/simba_to_yolo_seg.py,sha256=NzmzQj618_SqTn16b9PPohaFYjzmtFFMUKoDezN_wLA,12732
|
|
1366
|
-
simba/third_party_label_appenders/transform/sleap_csv_to_yolo.py,sha256=
|
|
1366
|
+
simba/third_party_label_appenders/transform/sleap_csv_to_yolo.py,sha256=lIPv-QhFO22OYHrcT9OaIjO7UVntZrUA3IzkYnu3fVI,12832
|
|
1367
1367
|
simba/third_party_label_appenders/transform/sleap_h5_to_yolo.py,sha256=bb-5JgTp8rtOdJgkbsghQNyxM4BwQSRkY37-v2XVMHM,11036
|
|
1368
1368
|
simba/third_party_label_appenders/transform/sleap_to_yolo.py,sha256=yorjyNlUnPzgVJDHahxBlIE2F-1JTvJaIXynnRZrAFw,10342
|
|
1369
1369
|
simba/third_party_label_appenders/transform/utils.py,sha256=2W1G0pyUm7oHqu0xhyJowxPp9xxSmMpqXfNzGJIFjvo,31652
|
|
@@ -1371,7 +1371,7 @@ simba/third_party_label_appenders/transform/yolo_to_imgs.py,sha256=DyyNVlpT7SiZP
|
|
|
1371
1371
|
simba/ui/.DS_Store,sha256=iQb7oqWWyurQk2ZeMphWuiG7QX5btEEdLeeeHBL1zRU,10244
|
|
1372
1372
|
simba/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1373
1373
|
simba/ui/blob_quick_check_interface.py,sha256=DqedeHPFdbiYEX15V_wi5T5zJbgyn4mSbFdjFdmy7xM,12377
|
|
1374
|
-
simba/ui/blob_tracker_ui.py,sha256=
|
|
1374
|
+
simba/ui/blob_tracker_ui.py,sha256=Px-iBpzan9Qhs8m64emFqvq2VjEhGb6RjRwqK3AGYxo,37087
|
|
1375
1375
|
simba/ui/create_project_ui.py,sha256=lTl9qW8pnthKQafxWVvKzJ0eRW9NGb1Mh25FTR-ZPNk,12544
|
|
1376
1376
|
simba/ui/get_tree_view.py,sha256=KpEs89bZ_XMoJVdH2G-J8tajBUAn8XToLzfnT1XnfcY,6432
|
|
1377
1377
|
simba/ui/import_pose_frame.py,sha256=YTnbIXGiImkB3Nuxjyc6k2iE_bqD9tt7cLyhjCjae6Y,38518
|
|
@@ -1379,7 +1379,7 @@ simba/ui/import_videos_frame.py,sha256=i0LnQzPLFne9dA_nvpVWAHYGmi0aTRXpiHzEog_-R
|
|
|
1379
1379
|
simba/ui/machine_model_settings_ui.py,sha256=hTfpBxtfYGH9Rsf3JdQ5Sc8z874tYAoZefvjF1JD6gA,38292
|
|
1380
1380
|
simba/ui/ml_settings_frm.py,sha256=f1-E6pEGjWJVF3I6n0azO9zAnsskpZjInViguHIDntw,3101
|
|
1381
1381
|
simba/ui/px_to_mm_ui.py,sha256=ETedZPFkloU0l3JeGnhiSIAsGBQzzv0YrDWtiVGOmJ4,9387
|
|
1382
|
-
simba/ui/tkinter_functions.py,sha256=
|
|
1382
|
+
simba/ui/tkinter_functions.py,sha256=2zEZCWLuugpr3TE24vUFTDS9ntkIuxsfDM6N5wtqJ8U,44617
|
|
1383
1383
|
simba/ui/user_defined_pose_creator.py,sha256=QAfdp8r225DONLaCgQJe6kXiZZLj20VQCLJEnCvZsKs,9249
|
|
1384
1384
|
simba/ui/video_info_ui.py,sha256=ld_fN-3vCYJDFv1t9i5B-VVtoaBCspDmiDUIfOSJb_8,17262
|
|
1385
1385
|
simba/ui/video_timelaps.py,sha256=GSQAD0Qg_7ctDsUsKFHm-6pSYGau_EZv5oBJ50ssUUE,26010
|
|
@@ -1390,7 +1390,7 @@ simba/ui/pop_ups/animal_directing_other_animals_pop_up.py,sha256=eaRVoEJ0WPnR15B
|
|
|
1390
1390
|
simba/ui/pop_ups/append_roi_features_animals_pop_up.py,sha256=__UwX3PuzPIeg5mSOY2yk4rJPHwwyCsWpLuqcBhLgH0,3308
|
|
1391
1391
|
simba/ui/pop_ups/append_roi_features_bodypart_pop_up.py,sha256=b21GIlgBCgAAM-MR_1LUmAdV9oiyHzO4fv_4HvqjVQM,1955
|
|
1392
1392
|
simba/ui/pop_ups/archive_files_pop_up.py,sha256=4dByXZS0bCZxy06-7WoElmcFSMoKfBbX3ZgamkZgIfs,1734
|
|
1393
|
-
simba/ui/pop_ups/batch_preprocess_pop_up.py,sha256=
|
|
1393
|
+
simba/ui/pop_ups/batch_preprocess_pop_up.py,sha256=oUkJRJLSgg9xVIp6pjnY9gJrgP0JV-N5imJp5aI7fwI,2875
|
|
1394
1394
|
simba/ui/pop_ups/blob_visualizer_pop_up.py,sha256=6OzJMROHowZWIcI5FL9a8uIo70K_dZKaVNs9-rUWWbE,6924
|
|
1395
1395
|
simba/ui/pop_ups/boolean_conditional_slicer_pup_up.py,sha256=q3IGjO4rwCCM8ODS2O7CueNRPFvSkJLHAgcV31sE0y4,5506
|
|
1396
1396
|
simba/ui/pop_ups/change_speed_popup.py,sha256=59Ck0kzLTQpE5AXURVRcNdK-a0kFOnwvTE0RZjs0lfI,5940
|
|
@@ -1430,7 +1430,7 @@ simba/ui/pop_ups/heatmap_clf_pop_up.py,sha256=uyYQI-R3jswkB2LI3UYRiPySNDcmv_Cn_s
|
|
|
1430
1430
|
simba/ui/pop_ups/heatmap_location_pop_up.py,sha256=LeQPzcjLSCCn8my-dvIIQ9DDTNtblxPSmCp7x4Ob7YY,8645
|
|
1431
1431
|
simba/ui/pop_ups/helpers.py,sha256=wjxintf8wqKfm8SqfDDLVqDGlwKkWbXVtF-e5HwauVs,656
|
|
1432
1432
|
simba/ui/pop_ups/import_roi_csv_popup.py,sha256=k2kL1ZonBe9J70oUligTGFaSwIW0C8OmdNBr4SjilmA,4795
|
|
1433
|
-
simba/ui/pop_ups/initialize_blob_tracking_pop_up.py,sha256=
|
|
1433
|
+
simba/ui/pop_ups/initialize_blob_tracking_pop_up.py,sha256=XywTPvFxa8UU9uX4EGJno4RCe8Z7Jl14jG7YkONugGQ,2408
|
|
1434
1434
|
simba/ui/pop_ups/interpolate_pop_up.py,sha256=fz360nYiX6YyFDY3VK7quMyx4w_gzVtygaXVc3xey9g,6284
|
|
1435
1435
|
simba/ui/pop_ups/kleinberg_pop_up.py,sha256=yRALHibKTZe92dPfcLcoLc1B6SjqV1ErqfHqFHB2kKI,6237
|
|
1436
1436
|
simba/ui/pop_ups/labelme_bbox_to_yolo_bbox_popup.py,sha256=iL3g7V5f_Cg_m_D-QA3yPHLRpjMo9vXCPIBwvU4iKn0,3681
|
|
@@ -1477,11 +1477,11 @@ simba/ui/pop_ups/subset_feature_extractor_pop_up.py,sha256=M24iJSqh-DpYdpw1pSaIm
|
|
|
1477
1477
|
simba/ui/pop_ups/targeted_annotation_clips_pop_up.py,sha256=PFh5ua2f_OMQ1Pth9Ha8Fo5lTPZNQV3bMnRGEoAPhTQ,6997
|
|
1478
1478
|
simba/ui/pop_ups/third_party_annotator_appender_pop_up.py,sha256=Xnha2UwM-08djObCkL_EXK2L4pernyipzbyNKQvX5aQ,7694
|
|
1479
1479
|
simba/ui/pop_ups/validation_plot_pop_up.py,sha256=yIo_el2dR_84ZAh_-2fYFg-BJDG0Eip_P_o9vzTQRkk,12174
|
|
1480
|
-
simba/ui/pop_ups/video_processing_pop_up.py,sha256=
|
|
1480
|
+
simba/ui/pop_ups/video_processing_pop_up.py,sha256=SmsL5Q1w8XnJuu6V_90xTWRmZHynm_IX4jmE-hrLvGE,252384
|
|
1481
1481
|
simba/ui/pop_ups/visualize_pose_in_dir_pop_up.py,sha256=PpFs0zaqF4dnHJ_yH-PqYgsjAyxYPVP427Soj-kYtM0,8838
|
|
1482
1482
|
simba/ui/pop_ups/yolo_inference_popup.py,sha256=C4_WDvEHLp9JMUTjLZuRpKHxMCGpa_pxXELuj-zerCs,14679
|
|
1483
1483
|
simba/ui/pop_ups/yolo_plot_results.py,sha256=WvDS3kCYZU_27EpADNev0tAKBPI-CUkYv9Dxz0eP83c,9803
|
|
1484
|
-
simba/ui/pop_ups/yolo_pose_train_popup.py,sha256=
|
|
1484
|
+
simba/ui/pop_ups/yolo_pose_train_popup.py,sha256=30CmqmhgFaFD4eRlENvP4D3Fh2eQ9rXIUPC47Z6dhbs,8904
|
|
1485
1485
|
simba/unsupervised/.DS_Store,sha256=3YMgk5I3uoYy8KIh_EO-KH7CFu-0y7ileb-YFwM4ks4,6148
|
|
1486
1486
|
simba/unsupervised/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1487
1487
|
simba/unsupervised/bout_aggregator.py,sha256=FJiAdl3RWpCOPdi0Qzq3vPYzG62zQZqeo8mYUrTqRto,4674
|
|
@@ -1526,7 +1526,7 @@ simba/utils/enums.py,sha256=ZR2175N06ZHZNiHk8n757T-WGyt1-55LLpcg3Sbb91k,38668
|
|
|
1526
1526
|
simba/utils/errors.py,sha256=aC-1qiGlh1vvHxUaPxBMQ9-LW-KKWXCGlH9acCPH0Cc,18788
|
|
1527
1527
|
simba/utils/lookups.py,sha256=hVUIis9FxgoKvTa2S2Rhrqg_LKrzW13tEBr3Tt8ZP44,50458
|
|
1528
1528
|
simba/utils/printing.py,sha256=2s-uESy1knuPiniqQ-q277uQ2teYM4OHo9Y4L20JQWM,5353
|
|
1529
|
-
simba/utils/read_write.py,sha256
|
|
1529
|
+
simba/utils/read_write.py,sha256=-wmm1AH0e1cYIfgT2Icwwncazh1Ijct4uuxTGmXPygc,190102
|
|
1530
1530
|
simba/utils/warnings.py,sha256=K7w1RiDL4Un7rGaabOVCGc9fHcaKxk66iZyNLS_AtOE,8121
|
|
1531
1531
|
simba/utils/yolo.py,sha256=UZzpnDqZj81SOMnwsWPQIhFAsHHSSaDawi1UUh0-uAA,19264
|
|
1532
1532
|
simba/utils/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1535,7 +1535,7 @@ simba/video_processors/.DS_Store,sha256=6gsgZL1uIfKqBNSk6EAKBP9lJ1qMrQy6XrEvluyc
|
|
|
1535
1535
|
simba/video_processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1536
1536
|
simba/video_processors/async_frame_reader.py,sha256=_17735pfAKUDHE18snAbWIbxUhIFkx3m-HipWqoE6r8,8059
|
|
1537
1537
|
simba/video_processors/batch_process_create_ffmpeg_commands.py,sha256=qfGb6KeJ7kOpRreRfpV1Lb9zCOL2g7cDqUFbEk9or2k,14194
|
|
1538
|
-
simba/video_processors/batch_process_menus.py,sha256=
|
|
1538
|
+
simba/video_processors/batch_process_menus.py,sha256=ptENVUMcZnTec6KqsMMsJvE0k8WxOAOV3HJ9bi1wdCg,38253
|
|
1539
1539
|
simba/video_processors/blob_tracking_executor.py,sha256=hyB-FYwbCmk44ytOmYQsiWHh7ecE0h5A0-ySjpYWyvY,18395
|
|
1540
1540
|
simba/video_processors/brightness_contrast_ui.py,sha256=nWmzho1WeJuIp3CuDjJmqMIzge2sTZn6_H0lWyZYaz0,5202
|
|
1541
1541
|
simba/video_processors/calculate_px_dist.py,sha256=se9M1Kv6VxjVTZqSBmdmx29fg10s-1tL1UqJ6353Iqc,10029
|
|
@@ -1549,9 +1549,9 @@ simba/video_processors/roi_selector_circle.py,sha256=SD_lv6V3MGiIQd0VtUFSKe83ySW
|
|
|
1549
1549
|
simba/video_processors/roi_selector_polygon.py,sha256=DMtilt__gGwNu6VV73CWbnPqrPBXkan1_akUqGEzfGw,6742
|
|
1550
1550
|
simba/video_processors/video_processing.py,sha256=hYyAqBQfSwPFruqLvjGr1nBG7Tfp9VAWySh4HN_SPpA,328019
|
|
1551
1551
|
simba/video_processors/videos_to_frames.py,sha256=8hltNZpwUfb3GFi-63D0PsySmD5l59pbzQGJx8SscgU,7818
|
|
1552
|
-
simba_uw_tf_dev-4.7.
|
|
1553
|
-
simba_uw_tf_dev-4.7.
|
|
1554
|
-
simba_uw_tf_dev-4.7.
|
|
1555
|
-
simba_uw_tf_dev-4.7.
|
|
1556
|
-
simba_uw_tf_dev-4.7.
|
|
1557
|
-
simba_uw_tf_dev-4.7.
|
|
1552
|
+
simba_uw_tf_dev-4.7.9.dist-info/LICENSE,sha256=Sjn362upcvYFypam-b-ziOXU1Wl5GGuTt5ICrGimzyA,1720
|
|
1553
|
+
simba_uw_tf_dev-4.7.9.dist-info/METADATA,sha256=DI1yYh7B5G5z35TrV2uh99r7BmtOHCci_xHF41FbpM0,11432
|
|
1554
|
+
simba_uw_tf_dev-4.7.9.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
1555
|
+
simba_uw_tf_dev-4.7.9.dist-info/entry_points.txt,sha256=Nfh_EbfDGdKftLjCnGWtQrBHENiDYMdgupwLyLpU5dc,44
|
|
1556
|
+
simba_uw_tf_dev-4.7.9.dist-info/top_level.txt,sha256=ogtimvlqDxDTOBAPfT2WaQ2pGAAbKRXG8z8eUTzf6TU,14
|
|
1557
|
+
simba_uw_tf_dev-4.7.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|