├── .idea ├── .gitignore ├── EV-Eye.iml ├── deployment.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── evaluate.py ├── matlab_processed ├── Display Dot │ ├── Display_Dot_saccade.m │ ├── Display_Dot_smooth.m │ └── randIndex.mat ├── README.md ├── calculate_optimal_translation.m ├── evaluation_on_gaze_tracking_with_polynomial_regression.m ├── frame_event_pupil_track.m ├── frame_event_pupil_track_plot.m ├── frame_event_pupil_track_result_find_tobii_reference.m ├── generate_pupil_mask.m ├── left_dod.txt ├── pe_of_event_based_pupil_track.m ├── pe_of_frame_based_pupil_track.m ├── plot_bar_event_pe.m ├── plot_bar_frame_pe.m ├── plot_gaze_tracking_dod.m ├── plot_miou_dice.m ├── read_csv.m ├── right_dod.txt ├── sort_nat.m └── trajectories_of_pupil_tracking_under_random_saccadic_state.m ├── pictures ├── EV.png ├── dice.png ├── distance.png ├── event_pixel.png ├── frame_pixel.png ├── iou_new.png ├── main.jpg └── samples.png ├── predict.py ├── requirements.txt ├── train.py ├── unet ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── unet_model.cpython-37.pyc │ ├── unet_model.cpython-38.pyc │ ├── unet_model.cpython-39.pyc │ ├── unet_parts.cpython-37.pyc │ ├── unet_parts.cpython-38.pyc │ └── unet_parts.cpython-39.pyc ├── unet_model.py └── unet_parts.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── __init__.cpython-38.pyc ├── __init__.cpython-39.pyc ├── data_loading.cpython-37.pyc ├── data_loading.cpython-38.pyc ├── data_loading.cpython-39.pyc ├── dice_score.cpython-37.pyc ├── dice_score.cpython-38.pyc ├── dice_score.cpython-39.pyc ├── utils.cpython-37.pyc └── utils.cpython-38.pyc ├── data_loading.py ├── dice_score.py └── utils.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/EV-Eye.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/.idea/EV-Eye.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/README.md -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/evaluate.py -------------------------------------------------------------------------------- /matlab_processed/Display Dot/Display_Dot_saccade.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/Display Dot/Display_Dot_saccade.m -------------------------------------------------------------------------------- /matlab_processed/Display Dot/Display_Dot_smooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/Display Dot/Display_Dot_smooth.m -------------------------------------------------------------------------------- /matlab_processed/Display Dot/randIndex.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/Display Dot/randIndex.mat -------------------------------------------------------------------------------- /matlab_processed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/README.md -------------------------------------------------------------------------------- /matlab_processed/calculate_optimal_translation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/calculate_optimal_translation.m -------------------------------------------------------------------------------- /matlab_processed/evaluation_on_gaze_tracking_with_polynomial_regression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/evaluation_on_gaze_tracking_with_polynomial_regression.m -------------------------------------------------------------------------------- /matlab_processed/frame_event_pupil_track.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/frame_event_pupil_track.m -------------------------------------------------------------------------------- /matlab_processed/frame_event_pupil_track_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/frame_event_pupil_track_plot.m -------------------------------------------------------------------------------- /matlab_processed/frame_event_pupil_track_result_find_tobii_reference.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/frame_event_pupil_track_result_find_tobii_reference.m -------------------------------------------------------------------------------- /matlab_processed/generate_pupil_mask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/generate_pupil_mask.m -------------------------------------------------------------------------------- /matlab_processed/left_dod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/left_dod.txt -------------------------------------------------------------------------------- /matlab_processed/pe_of_event_based_pupil_track.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/pe_of_event_based_pupil_track.m -------------------------------------------------------------------------------- /matlab_processed/pe_of_frame_based_pupil_track.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/pe_of_frame_based_pupil_track.m -------------------------------------------------------------------------------- /matlab_processed/plot_bar_event_pe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/plot_bar_event_pe.m -------------------------------------------------------------------------------- /matlab_processed/plot_bar_frame_pe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/plot_bar_frame_pe.m -------------------------------------------------------------------------------- /matlab_processed/plot_gaze_tracking_dod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/plot_gaze_tracking_dod.m -------------------------------------------------------------------------------- /matlab_processed/plot_miou_dice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/plot_miou_dice.m -------------------------------------------------------------------------------- /matlab_processed/read_csv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/read_csv.m -------------------------------------------------------------------------------- /matlab_processed/right_dod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/right_dod.txt -------------------------------------------------------------------------------- /matlab_processed/sort_nat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/sort_nat.m -------------------------------------------------------------------------------- /matlab_processed/trajectories_of_pupil_tracking_under_random_saccadic_state.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/matlab_processed/trajectories_of_pupil_tracking_under_random_saccadic_state.m -------------------------------------------------------------------------------- /pictures/EV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/pictures/EV.png -------------------------------------------------------------------------------- /pictures/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/pictures/dice.png -------------------------------------------------------------------------------- /pictures/distance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/pictures/distance.png -------------------------------------------------------------------------------- /pictures/event_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/pictures/event_pixel.png -------------------------------------------------------------------------------- /pictures/frame_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/pictures/frame_pixel.png -------------------------------------------------------------------------------- /pictures/iou_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/pictures/iou_new.png -------------------------------------------------------------------------------- /pictures/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/pictures/main.jpg -------------------------------------------------------------------------------- /pictures/samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/pictures/samples.png -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/train.py -------------------------------------------------------------------------------- /unet/__init__.py: -------------------------------------------------------------------------------- 1 | from .unet_model import UNet 2 | -------------------------------------------------------------------------------- /unet/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /unet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /unet/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /unet/__pycache__/unet_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/__pycache__/unet_model.cpython-37.pyc -------------------------------------------------------------------------------- /unet/__pycache__/unet_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/__pycache__/unet_model.cpython-38.pyc -------------------------------------------------------------------------------- /unet/__pycache__/unet_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/__pycache__/unet_model.cpython-39.pyc -------------------------------------------------------------------------------- /unet/__pycache__/unet_parts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/__pycache__/unet_parts.cpython-37.pyc -------------------------------------------------------------------------------- /unet/__pycache__/unet_parts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/__pycache__/unet_parts.cpython-38.pyc -------------------------------------------------------------------------------- /unet/__pycache__/unet_parts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/__pycache__/unet_parts.cpython-39.pyc -------------------------------------------------------------------------------- /unet/unet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/unet_model.py -------------------------------------------------------------------------------- /unet/unet_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/unet/unet_parts.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/data_loading.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/data_loading.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/data_loading.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/data_loading.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/data_loading.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/data_loading.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dice_score.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/dice_score.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dice_score.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/dice_score.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dice_score.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/dice_score.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/data_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/data_loading.py -------------------------------------------------------------------------------- /utils/dice_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/dice_score.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ningreka/EV-Eye/HEAD/utils/utils.py --------------------------------------------------------------------------------