Skip to content

NeilM21/rPPG-Toolbox

 
 

Repository files navigation

Reference

@article{liu2022deep,
  title={Deep physiological sensing toolbox},
  author={Liu, Xin and Zhang, Xiaoyu and Narayanswamy, Girish and Zhang, Yuzhe and Wang, Yuntao and Patel, Shwetak and McDuff, Daniel},
  journal={arXiv preprint arXiv:2210.00716},
  year={2022}
}

Setup

STEP1: bash setup.sh

STEP2: conda activate rppg-toolbox

STEP3: pip install -r requirements.txt

Example of using pre-trained models

Please use config files under ./configs/infer_configs

For example, if you want to run The model trained on PURE and tested on UBFC, use python main.py --config_file ./configs/infer_configs/PURE_PURE_UBFC_TSCAN_BASIC.yaml

If you want to test unsupervised signal processing methods, you can use python main.py --config_file ./configs/infer_configs/UBFC_UNSUPERVISED.yaml

Example of neural network training

Please use config files under ./configs/train_configs

Train on PURE and test on UBFC with TSCAN

STEP1: Download the PURE raw data by asking the paper authors.

STEP2: Download the UBFC raw data via link

STEP3: Modify ./configs/train_configs/PURE_PURE_UBFC_TSCAN_BASIC.yaml

STEP4: Run python main.py --config_file ./configs/train_configs/PURE_PURE_UBFC_TSCAN_BASIC.yaml

Note1: Preprocessing requires only once; thus turn it off on the yaml file when you train the network after the first time.

Note2: The example yaml setting will allow 80% of PURE to train and 20% of PURE to valid. After training, it will use the best model(with the least validation loss) to test on UBFC.

Training on SCAMPS and testing on UBFC with DeepPhys

STEP1: Download the SCAMPS via this link and split it into train/val/test folders.

STEP2: Download the UBFC via link

STEP3: Modify ./configs/train_configs/SCAMPS_SCAMPS_UBFC_DEEPPHYS_BASIC.yaml

STEP4: Run python main.py --config_file ./configs/train_configs/SCAMPS_SCAMPS_UBFC_DEEPPHYS_BASIC.yaml

Note1: Preprocessing requires only once; thus turn it off on the yaml file when you train the network after the first time.

Note2: The example yaml setting will allow 80% of SCAMPS to train and 20% of SCAMPS to valid. After training, it will use the best model(with the least validation loss) to test on UBFC.

Predicting BVP signal and calculate heart rate on UBFC with POS/CHROME/ICA/GREEN/PBV/LGI

STEP1: Download the UBFC via link

STEP3: Modify ./configs/infer_configs/UBFC_UNSUPERVISED.yaml

STEP4: Run python main.py --config_file ./configs/infer_configs/UBFC_UNSUPERVISED.yaml

Yaml File Setting

The rPPG-Toolbox uses yaml file to control all parameters for training and evaluation. You can modify the existing yaml files to meet your own training and testing requirements.

Here are some explanation of parameters:

  • TOOLBOX_MODE:

    • train_and_test: train on the dataset and use the newly trained model to test.
    • only_test: you need to set INFERENCE-MODEL_PATH, and it will use pre-trained model initialized with the MODEL_PATH to test.
  • TRAIN / VALID / TEST / UNSUPERVISED DATA:

    • DATA_PATH: The input path of raw data
    • CACHED_PATH: The output path to preprocessed data. This path also houses a directory of .csv files containing data paths to files loaded by the dataloader. This filelist (found in default at CACHED_PATH/DataFileLists). These can be viewed for users to understand which files are used in each data split (train/val/test)
    • EXP_DATA_NAME If it is "", the toolbox generates a EXP_DATA_NAME based on other defined parameters. Otherwise, it uses the user-defined EXP_DATA_NAME.
    • BEGIN" & "END: The portion of the dataset used for training/validation/testing. For example, if the DATASET is PURE, BEGIN is 0.0 and END is 0.8 under the TRAIN, the first 80% PURE is used for training the network. If the DATASET is PURE, BEGIN is 0.8 and END is 1.0 under the VALID, the last 20% PURE is used as the validation set. It is worth noting that validation and training sets don't have overlapping subjects.
    • DATA_TYPE: How to preprocess the video data
    • LABEL_TYPE: How to preprocess the label data
    • DO_CHUNK: Whether to split the raw data into smaller chunks
    • CHUNK_LENGTH: The length of each chunk (number of frames)
    • CROP_FACE: Whether to perform face detection
    • DYNAMIC_DETECTION: If False, face detection is only performed at the first frame and the detected box is used to crop the video for all of the subsequent frames. If True, face detection is performed at a specific frequency which is defined by DYNAMIC_DETECTION_FREQUENCY.
    • DYNAMIC_DETECTION_FREQUENCY: The frequency of face detection (number of frames) if DYNAMIC_DETECTION is True
    • LARGE_FACE_BOX: Whether to enlarge the rectangle of the detected face region in case the detected box is not large enough for some special cases (e.g., motion videos)
    • LARGE_BOX_COEF: The coefficient of enlarging. See more details at https://github.com/ubicomplab/rPPG-Toolbox/blob/main/dataset/data_loader/BaseLoader.py#L162-L165.
  • MODEL : Set used model (support Deepphys / TSCAN / Physnet right now) and their parameters.

  • UNSUPERVISED METHOD: Set used unsupervised method. Example: ["ICA", "POS", "CHROM", "GREEN", "LGI", "PBV"]

  • METRICS: Set used metrics. Example: ['MAE','RMSE','MAPE','Pearson']

Dataset

The toolbox supports three datasets, which are SCAMPS, UBFC, and PURE (COHFACE support will be added shortly). Cite corresponding papers when using. For now, we only recommend training with PURE or SCAMPS due to the level of synchronization and volume of the dataset.

  • MMPD

  • Jiankai Tang, Kequan Chen, Yuntao Wang, Yuanchun Shi, Shwetak Patel, Daniel McDuff, Xin Liu.
    "MMPD: Multi-Domain Mobile Video Physiology Dataset", arxiv, 2023

    • In order to use this dataset in a deep model, you should organize the files as follows:

       data/MMPD/
       |   |-- subject1/
       |       |-- p1_0.mat
       |       |-- p1_1.mat
       |       |...
       |       |-- p1_19.mat
       |   |-- subject2/
       |       |-- p2_0.mat
       |       |-- p2_1.mat
       |       |...
       |...
       |   |-- subjectn/
       |       |-- pn_0.mat
       |       |-- pn_1.mat
       |       |...
    

  • SCAMPS

    • D. McDuff, M. Wander, X. Liu, B. Hill, J. Hernandez, J. Lester, T. Baltrusaitis, "SCAMPS: Synthetics for Camera Measurement of Physiological Signals", Arxiv, 2022
    • In order to use this dataset in a deep model, you should organize the files as follows:

       data/SCAMPS/Train/
          |-- P00001.mat
          |-- P00002.mat
          |-- P00003.mat
       |...
       data/SCAMPS/Val/
          |-- P00001.mat
          |-- P00002.mat
          |-- P00003.mat
       |...
       data/SCAMPS/Test/
          |-- P00001.mat
          |-- P00002.mat
          |-- P00003.mat
       |...
    

  • UBFC

    • S. Bobbia, R. Macwan, Y. Benezeth, A. Mansouri, J. Dubois, "Unsupervised skin tissue segmentation for remote photoplethysmography", Pattern Recognition Letters, 2017.
    • In order to use this dataset in a deep model, you should organize the files as follows:

       data/UBFC/
       |   |-- subject1/
       |       |-- vid.avi
       |       |-- ground_truth.txt
       |   |-- subject2/
       |       |-- vid.avi
       |       |-- ground_truth.txt
       |...
       |   |-- subjectn/
       |       |-- vid.avi
       |       |-- ground_truth.txt
    

  • PURE

    • Stricker, R., Müller, S., Gross, H.-M.Non-contact Video-based Pulse Rate Measurement on a Mobile Service Robot in: Proc. 23st IEEE Int. Symposium on Robot and Human Interactive Communication (Ro-Man 2014), Edinburgh, Scotland, UK, pp. 1056 - 1062, IEEE 2014
    • In order to use this dataset in a deep model, you should organize the files as follows:

      data/PURE/
       |   |-- 01-01/
       |      |-- 01-01/
       |      |-- 01-01.json
       |   |-- 01-02/
       |      |-- 01-02/
       |      |-- 01-02.json
       |...
       |   |-- ii-jj/
       |      |-- ii-jj/
       |      |-- ii-jj.json
    

Add A New Dataloader

  • Step1 : Create a new python file in dataset/data_loader, e.g. MyLoader.py

  • Step2 : Implement the required functions, including:

    def preprocess_dataset(self, config_preprocess)
    @staticmethod
    def read_video(video_file)
    @staticmethod
    def read_wave(bvp_file):
  • Step3 :[Optional] Override optional functions. In principle, all functions in BaseLoader can be override, but we do not recommend you to override __len__, __get_item__,save,load.

  • Step4 :Set or add configuration parameters. To set paramteters, create new yaml files in configs/ . Adding parameters requires modifying config.py, adding new parameters' definition and initial values.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.9%
  • Shell 0.1%