├── .gitignore ├── README.md ├── UI ├── images │ ├── bearIcon.ico │ └── bearIcon.png ├── main_window.py └── main_window.ui ├── data_preprocess.py ├── diagnosis.py ├── feature_extraction.py ├── figure_canvas.py ├── img ├── diagnosis_page.jpg └── train_model_page.jpg ├── main.py ├── message_signal.py ├── preprocess_train_result.py ├── real_time_data └── 0HP │ ├── 48k_Drive_End_B007_0_122.mat │ ├── 48k_Drive_End_B014_0_189.mat │ ├── 48k_Drive_End_B021_0_226.mat │ ├── 48k_Drive_End_IR007_0_109.mat │ ├── 48k_Drive_End_IR014_0_174.mat │ ├── 48k_Drive_End_IR021_0_213.mat │ ├── 48k_Drive_End_OR007@6_0_135.mat │ ├── 48k_Drive_End_OR014@6_0_201.mat │ ├── 48k_Drive_End_OR021@6_0_238.mat │ └── normal_0_97.mat ├── requirements.txt ├── standard_scaler.py ├── training_model.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/README.md -------------------------------------------------------------------------------- /UI/images/bearIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/UI/images/bearIcon.ico -------------------------------------------------------------------------------- /UI/images/bearIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/UI/images/bearIcon.png -------------------------------------------------------------------------------- /UI/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/UI/main_window.py -------------------------------------------------------------------------------- /UI/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/UI/main_window.ui -------------------------------------------------------------------------------- /data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/data_preprocess.py -------------------------------------------------------------------------------- /diagnosis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/diagnosis.py -------------------------------------------------------------------------------- /feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/feature_extraction.py -------------------------------------------------------------------------------- /figure_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/figure_canvas.py -------------------------------------------------------------------------------- /img/diagnosis_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/img/diagnosis_page.jpg -------------------------------------------------------------------------------- /img/train_model_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/img/train_model_page.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/main.py -------------------------------------------------------------------------------- /message_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/message_signal.py -------------------------------------------------------------------------------- /preprocess_train_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/preprocess_train_result.py -------------------------------------------------------------------------------- /real_time_data/0HP/48k_Drive_End_B007_0_122.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/48k_Drive_End_B007_0_122.mat -------------------------------------------------------------------------------- /real_time_data/0HP/48k_Drive_End_B014_0_189.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/48k_Drive_End_B014_0_189.mat -------------------------------------------------------------------------------- /real_time_data/0HP/48k_Drive_End_B021_0_226.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/48k_Drive_End_B021_0_226.mat -------------------------------------------------------------------------------- /real_time_data/0HP/48k_Drive_End_IR007_0_109.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/48k_Drive_End_IR007_0_109.mat -------------------------------------------------------------------------------- /real_time_data/0HP/48k_Drive_End_IR014_0_174.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/48k_Drive_End_IR014_0_174.mat -------------------------------------------------------------------------------- /real_time_data/0HP/48k_Drive_End_IR021_0_213.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/48k_Drive_End_IR021_0_213.mat -------------------------------------------------------------------------------- /real_time_data/0HP/48k_Drive_End_OR007@6_0_135.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/48k_Drive_End_OR007@6_0_135.mat -------------------------------------------------------------------------------- /real_time_data/0HP/48k_Drive_End_OR014@6_0_201.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/48k_Drive_End_OR014@6_0_201.mat -------------------------------------------------------------------------------- /real_time_data/0HP/48k_Drive_End_OR021@6_0_238.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/48k_Drive_End_OR021@6_0_238.mat -------------------------------------------------------------------------------- /real_time_data/0HP/normal_0_97.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/real_time_data/0HP/normal_0_97.mat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/requirements.txt -------------------------------------------------------------------------------- /standard_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/standard_scaler.py -------------------------------------------------------------------------------- /training_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/training_model.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hua-ops/bearingPlatform_hua/HEAD/utils.py --------------------------------------------------------------------------------