diff --git a/simba/SimBA.py b/simba/SimBA.py index 2376797f8..624fd381f 100644 --- a/simba/SimBA.py +++ b/simba/SimBA.py @@ -852,8 +852,8 @@ def __init__(self): video_process_menu.add_cascade(label="Concatenate (stack) videos...", compound="left", image=self.menu_icons["concat"]["img"], menu=concatenate_menu, font=Formats.FONT_REGULAR.value) video_process_menu.add_command(label="Convert ROI definitions", compound="left", image=self.menu_icons["roi"]["img"], command=lambda: ConvertROIDefinitionsPopUp(), font=Formats.FONT_REGULAR.value) convert_data_menu = Menu(video_process_menu) - convert_data_menu.add_command(label="Convert CSV to parquet", command=Csv2ParquetPopUp, font=Formats.FONT_REGULAR.value) - convert_data_menu.add_command(label="Convert parquet o CSV", command=Parquet2CsvPopUp, font=Formats.FONT_REGULAR.value) + convert_data_menu.add_command(label="Convert CSV to parquet", compound="left", image=self.menu_icons["parquet"]["img"], command=Csv2ParquetPopUp, font=Formats.FONT_REGULAR.value) + convert_data_menu.add_command(label="Convert parquet o CSV", compound="left", image=self.menu_icons["csv"]["img"], command=Parquet2CsvPopUp, font=Formats.FONT_REGULAR.value) video_process_menu.add_cascade(label="Convert working file type...", compound="left", image=self.menu_icons["change"]["img"], menu=convert_data_menu, font=Formats.FONT_REGULAR.value) @@ -880,20 +880,20 @@ def __init__(self): video_process_menu.add_cascade(label="Reorganize Tracking Data", compound="left", image=self.menu_icons["reorganize"]["img"], command=PoseReorganizerPopUp, font=Formats.FONT_REGULAR.value) rotate_menu = Menu(menu) - rotate_menu.add_command(label="Rotate videos", command=RotateVideoSetDegreesPopUp, font=Formats.FONT_REGULAR.value) - rotate_menu.add_command(label="Interactively rotate videos", command=VideoRotatorPopUp, font=Formats.FONT_REGULAR.value) - rotate_menu.add_command(label="Flip videos", command=FlipVideosPopUp, font=Formats.FONT_REGULAR.value) - rotate_menu.add_command(label="Reverse videos", command=ReverseVideoPopUp, font=Formats.FONT_REGULAR.value) + rotate_menu.add_command(label="Rotate videos", compound="left", image=self.menu_icons["flip_red"]["img"], command=RotateVideoSetDegreesPopUp, font=Formats.FONT_REGULAR.value) + rotate_menu.add_command(label="Interactively rotate videos", compound="left", image=self.menu_icons["flip_red"]["img"], command=VideoRotatorPopUp, font=Formats.FONT_REGULAR.value) + rotate_menu.add_command(label="Flip videos", compound="left", image=self.menu_icons["flip_green"]["img"], command=FlipVideosPopUp, font=Formats.FONT_REGULAR.value) + rotate_menu.add_command(label="Reverse videos", compound="left", image=self.menu_icons["reverse_blue"]["img"], command=ReverseVideoPopUp, font=Formats.FONT_REGULAR.value) video_process_menu.add_cascade(label="Rotate / flip / reverse videos...", compound="left", image=self.menu_icons["rotate"]["img"], menu=rotate_menu, font=Formats.FONT_REGULAR.value) superimpose_menu = Menu(menu) - superimpose_menu.add_command(label="Superimpose frame numbers", command=SuperImposeFrameCountPopUp, font=Formats.FONT_REGULAR.value) - superimpose_menu.add_command(label="Superimpose watermark", command=SuperimposeWatermarkPopUp, font=Formats.FONT_REGULAR.value) - superimpose_menu.add_command(label="Superimpose timer", command=SuperimposeTimerPopUp, font=Formats.FONT_REGULAR.value) - superimpose_menu.add_command(label="Superimpose progress-bar", command=SuperimposeProgressBarPopUp, font=Formats.FONT_REGULAR.value) - superimpose_menu.add_command(label="Superimpose video on video", command=SuperimposeVideoPopUp, font=Formats.FONT_REGULAR.value) - superimpose_menu.add_command(label="Superimpose video names", command=SuperimposeVideoNamesPopUp, font=Formats.FONT_REGULAR.value) - superimpose_menu.add_command(label="Superimpose free-text", command=SuperimposeTextPopUp, font=Formats.FONT_REGULAR.value) + superimpose_menu.add_command(label="Superimpose frame numbers", compound="left", image=self.menu_icons["number_black"]["img"], command=SuperImposeFrameCountPopUp, font=Formats.FONT_REGULAR.value) + superimpose_menu.add_command(label="Superimpose watermark", compound="left", image=self.menu_icons["watermark_green"]["img"], command=SuperimposeWatermarkPopUp, font=Formats.FONT_REGULAR.value) + superimpose_menu.add_command(label="Superimpose timer", compound="left", image=self.menu_icons["timer"]["img"], command=SuperimposeTimerPopUp, font=Formats.FONT_REGULAR.value) + superimpose_menu.add_command(label="Superimpose progress-bar", compound="left", image=self.menu_icons["progressbar_black"]["img"], command=SuperimposeProgressBarPopUp, font=Formats.FONT_REGULAR.value) + superimpose_menu.add_command(label="Superimpose video on video", compound="left", image=self.menu_icons["video"]["img"], command=SuperimposeVideoPopUp, font=Formats.FONT_REGULAR.value) + superimpose_menu.add_command(label="Superimpose video names", compound="left", image=self.menu_icons["id_card"]["img"], command=SuperimposeVideoNamesPopUp, font=Formats.FONT_REGULAR.value) + superimpose_menu.add_command(label="Superimpose free-text", compound="left", image=self.menu_icons["text_black"]["img"], command=SuperimposeTextPopUp, font=Formats.FONT_REGULAR.value) video_process_menu.add_cascade(label="Superimpose on videos...", compound="left", image=self.menu_icons["superimpose"]["img"], menu=superimpose_menu, font=Formats.FONT_REGULAR.value) temporal_join_videos = Menu(menu) diff --git a/simba/assets/icons/csv_grey.png b/simba/assets/icons/csv_grey.png new file mode 100644 index 000000000..c07d4ae7e Binary files /dev/null and b/simba/assets/icons/csv_grey.png differ diff --git a/simba/assets/icons/flip_black.png b/simba/assets/icons/flip_black.png new file mode 100644 index 000000000..075bb57b8 Binary files /dev/null and b/simba/assets/icons/flip_black.png differ diff --git a/simba/assets/icons/flip_green.png b/simba/assets/icons/flip_green.png new file mode 100644 index 000000000..0475a6cb8 Binary files /dev/null and b/simba/assets/icons/flip_green.png differ diff --git a/simba/assets/icons/flip_red.png b/simba/assets/icons/flip_red.png new file mode 100644 index 000000000..2a81e061b Binary files /dev/null and b/simba/assets/icons/flip_red.png differ diff --git a/simba/assets/icons/number_black.png b/simba/assets/icons/number_black.png new file mode 100644 index 000000000..4287aa942 Binary files /dev/null and b/simba/assets/icons/number_black.png differ diff --git a/simba/assets/icons/parquet.png b/simba/assets/icons/parquet.png new file mode 100644 index 000000000..d99959a91 Binary files /dev/null and b/simba/assets/icons/parquet.png differ diff --git a/simba/assets/icons/progressbar_black.png b/simba/assets/icons/progressbar_black.png new file mode 100644 index 000000000..72e2f3236 Binary files /dev/null and b/simba/assets/icons/progressbar_black.png differ diff --git a/simba/assets/icons/reverse_blue.png b/simba/assets/icons/reverse_blue.png new file mode 100644 index 000000000..5dab223cb Binary files /dev/null and b/simba/assets/icons/reverse_blue.png differ diff --git a/simba/assets/icons/text_black.png b/simba/assets/icons/text_black.png new file mode 100644 index 000000000..2d9d690af Binary files /dev/null and b/simba/assets/icons/text_black.png differ diff --git a/simba/assets/icons/watermark_green.png b/simba/assets/icons/watermark_green.png new file mode 100644 index 000000000..8db8b07ba Binary files /dev/null and b/simba/assets/icons/watermark_green.png differ