├── .idea ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── ML.ipynb ├── README.md ├── app.py ├── config.py ├── defect sense ai.png ├── modules ├── main_window.py ├── splash_screen.py └── worker.py ├── requirements.txt ├── results ├── 2023-12-17 09-22-26 │ ├── 0_192.bmp │ ├── 0_193.bmp │ ├── 0_195.bmp │ ├── 0_198.bmp │ ├── 0_199.bmp │ ├── 0_200.bmp │ ├── 0_205.bmp │ ├── 0_208.bmp │ ├── 0_209.bmp │ ├── 0_211.bmp │ └── 0_216.bmp └── 2023-12-17 09-22-27 │ ├── 0_188.bmp │ ├── 0_201.bmp │ ├── 0_202.bmp │ ├── 0_206.bmp │ ├── 0_218.bmp │ └── 0_219.bmp ├── test_dataset ├── 0_192.bmp ├── 0_193.bmp ├── 0_195.bmp ├── 0_198.bmp ├── 0_199.bmp ├── 0_200.bmp ├── 0_205.bmp ├── 0_208.bmp ├── 0_209.bmp ├── 0_211.bmp ├── 0_216.bmp └── testik_6 │ ├── 0_188.bmp │ ├── 0_201.bmp │ ├── 0_202.bmp │ ├── 0_206.bmp │ ├── 0_218.bmp │ └── 0_219.bmp ├── ui ├── convert_mainwindow_ui.bat ├── convert_splashscreen_ui.bat ├── qt_designer │ ├── main_window.ui │ ├── resources.qrc │ ├── resources │ │ ├── check.png │ │ ├── close.png │ │ └── logo.png │ └── splash_screen.ui ├── resources_rc.py ├── ui_mainwindow.py └── ui_splashscreen.py └── weights └── best.pt /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /ML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ML.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/config.py -------------------------------------------------------------------------------- /defect sense ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/defect sense ai.png -------------------------------------------------------------------------------- /modules/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/modules/main_window.py -------------------------------------------------------------------------------- /modules/splash_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/modules/splash_screen.py -------------------------------------------------------------------------------- /modules/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/modules/worker.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_192.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_192.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_193.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_193.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_195.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_195.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_198.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_198.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_199.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_199.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_200.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_205.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_205.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_208.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_208.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_209.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_209.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_211.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_211.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-26/0_216.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-26/0_216.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-27/0_188.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-27/0_188.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-27/0_201.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-27/0_201.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-27/0_202.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-27/0_202.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-27/0_206.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-27/0_206.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-27/0_218.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-27/0_218.bmp -------------------------------------------------------------------------------- /results/2023-12-17 09-22-27/0_219.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/results/2023-12-17 09-22-27/0_219.bmp -------------------------------------------------------------------------------- /test_dataset/0_192.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_192.bmp -------------------------------------------------------------------------------- /test_dataset/0_193.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_193.bmp -------------------------------------------------------------------------------- /test_dataset/0_195.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_195.bmp -------------------------------------------------------------------------------- /test_dataset/0_198.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_198.bmp -------------------------------------------------------------------------------- /test_dataset/0_199.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_199.bmp -------------------------------------------------------------------------------- /test_dataset/0_200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_200.bmp -------------------------------------------------------------------------------- /test_dataset/0_205.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_205.bmp -------------------------------------------------------------------------------- /test_dataset/0_208.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_208.bmp -------------------------------------------------------------------------------- /test_dataset/0_209.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_209.bmp -------------------------------------------------------------------------------- /test_dataset/0_211.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_211.bmp -------------------------------------------------------------------------------- /test_dataset/0_216.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/0_216.bmp -------------------------------------------------------------------------------- /test_dataset/testik_6/0_188.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/testik_6/0_188.bmp -------------------------------------------------------------------------------- /test_dataset/testik_6/0_201.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/testik_6/0_201.bmp -------------------------------------------------------------------------------- /test_dataset/testik_6/0_202.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/testik_6/0_202.bmp -------------------------------------------------------------------------------- /test_dataset/testik_6/0_206.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/testik_6/0_206.bmp -------------------------------------------------------------------------------- /test_dataset/testik_6/0_218.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/testik_6/0_218.bmp -------------------------------------------------------------------------------- /test_dataset/testik_6/0_219.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/test_dataset/testik_6/0_219.bmp -------------------------------------------------------------------------------- /ui/convert_mainwindow_ui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/convert_mainwindow_ui.bat -------------------------------------------------------------------------------- /ui/convert_splashscreen_ui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/convert_splashscreen_ui.bat -------------------------------------------------------------------------------- /ui/qt_designer/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/qt_designer/main_window.ui -------------------------------------------------------------------------------- /ui/qt_designer/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/qt_designer/resources.qrc -------------------------------------------------------------------------------- /ui/qt_designer/resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/qt_designer/resources/check.png -------------------------------------------------------------------------------- /ui/qt_designer/resources/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/qt_designer/resources/close.png -------------------------------------------------------------------------------- /ui/qt_designer/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/qt_designer/resources/logo.png -------------------------------------------------------------------------------- /ui/qt_designer/splash_screen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/qt_designer/splash_screen.ui -------------------------------------------------------------------------------- /ui/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/resources_rc.py -------------------------------------------------------------------------------- /ui/ui_mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/ui_mainwindow.py -------------------------------------------------------------------------------- /ui/ui_splashscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/ui/ui_splashscreen.py -------------------------------------------------------------------------------- /weights/best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K1rsN7/Defect-Detection/HEAD/weights/best.pt --------------------------------------------------------------------------------