Source code for simba.ui.pop_ups.append_roi_features_animals_pop_up

__author__ = "Simon Nilsson; sronilsson@gmail.com"

import os
import threading
from tkinter import *
from typing import Union

from simba.mixins.config_reader import ConfigReader
from simba.mixins.pop_up_mixin import PopUpMixin
from simba.roi_tools.ROI_feature_analyzer import ROIFeatureCreator
from simba.ui.tkinter_functions import (CreateLabelFrameWithIcon, DropDownMenu,
                                        SimbaButton, SimBADropDown)
from simba.utils.enums import Formats, Keys, Links
from simba.utils.warnings import ROIWarning


[docs]class AppendROIFeaturesByAnimalPopUp(ConfigReader, PopUpMixin): def __init__(self, config_path: Union[str, os.PathLike]): ConfigReader.__init__(self, config_path=config_path, read_video_info=False) if not os.path.isfile(self.roi_coordinates_path): ROIWarning(msg=f"SIMBA ERROR: No ROIs have been defined. Please define ROIs before appending ROI-based features (no data file found at path {self.roi_coordinates_path})", source=self.__class__.__name__,) PopUpMixin.__init__(self, title="APPEND ROI FEATURES: BY ANIMALS", size=(400, 600), icon='shapes_small') self.animal_cnt_frm = CreateLabelFrameWithIcon(parent=self.main_frm, header="SELECT NUMBER OF ANIMALS", icon_name=Keys.DOCUMENTATION.value, icon_link=Links.ROI_FEATURES.value) self.animal_cnt_dropdown = SimBADropDown(parent=self.animal_cnt_frm, label="# of animals", dropdown_options=list(range(1, self.animal_cnt + 1)), label_width=30, dropdown_width=30, value=1, img='mouse_head') self.animal_cnt_confirm_btn = SimbaButton(parent=self.animal_cnt_frm, txt='Confirm', img='tick', cmd=self.create_settings_frm) self.animal_cnt_frm.grid(row=0, column=0, sticky=NW) self.animal_cnt_dropdown.grid(row=0, column=0, sticky=NW) self.animal_cnt_confirm_btn.grid(row=0, column=1, sticky=NW) self.create_settings_frm() self.main_frm.mainloop()
[docs] def create_settings_frm(self): if hasattr(self, "setting_frm"): self.setting_frm.destroy() self.body_part_frm.destroy() self.setting_frm = LabelFrame(self.main_frm, text="SETTINGS", font=Formats.FONT_HEADER.value) self.choose_bp_frm(parent=self.setting_frm, bp_options=self.body_parts_lst) self.setting_frm.grid(row=1, column=0, sticky=NW) self.create_run_frm(run_function=self.run)
[docs] def run(self): body_parts = [] for bp_cnt, bp_dropdown in self.body_parts_dropdowns.items(): body_parts.append(bp_dropdown.getChoices()) roi_feature_creator = ROIFeatureCreator( config_path=self.config_path, body_parts=body_parts, data_path=None, append_data=True, ) threading.Thread(target=roi_feature_creator.run()).start() self.root.destroy()
#AppendROIFeaturesByAnimalPopUp(config_path=r"C:\troubleshooting\mitra\project_folder\project_config.ini") # AppendROIFeaturesByAnimalPopUp(config_path='/Users/simon/Desktop/envs/troubleshooting/locomotion/project_folder/project_config.ini') # AppendROIFeaturesByAnimalPopUp(config_path='/Users/simon/Desktop/envs/troubleshooting/two_black_animals_14bp/project_folder/project_config.ini')