├── Interface.py ├── LICENSE ├── README.md ├── face_detection ├── __init__.py ├── arcsoft │ ├── AFD_FSDKLibrary.py │ ├── AFR_FSDKLibrary.py │ ├── ASVL_COLOR_FORMAT.py │ ├── CLibrary.py │ ├── __init__.py │ └── utils │ │ ├── ImageLoader.py │ │ └── __init__.py ├── facepp_detection.py ├── hrFace.py ├── libarcsoft_fsdk_face_detection.dll └── paddleHub.py ├── images ├── __init__.py ├── bell.jpg ├── cabinet.jpg ├── camera.jpg ├── house.jpg ├── meCROP.png └── memory_pic.py ├── imgs_detection ├── emotion.jpg ├── example1.png └── lena.jpg ├── login.py ├── processing ├── ImgProcessing.py └── __init__.py ├── requirements.txt ├── screenshots ├── Logarithmic_gray_scale_transformation.png ├── Login.png ├── RGB_histogram.png ├── Sobel.png ├── img_add.png ├── median_filtering.png ├── modifications.png ├── n_value.png └── register.png └── usrs_info.pickle /Interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/Interface.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/README.md -------------------------------------------------------------------------------- /face_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/__init__.py -------------------------------------------------------------------------------- /face_detection/arcsoft/AFD_FSDKLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/arcsoft/AFD_FSDKLibrary.py -------------------------------------------------------------------------------- /face_detection/arcsoft/AFR_FSDKLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/arcsoft/AFR_FSDKLibrary.py -------------------------------------------------------------------------------- /face_detection/arcsoft/ASVL_COLOR_FORMAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/arcsoft/ASVL_COLOR_FORMAT.py -------------------------------------------------------------------------------- /face_detection/arcsoft/CLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/arcsoft/CLibrary.py -------------------------------------------------------------------------------- /face_detection/arcsoft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/arcsoft/__init__.py -------------------------------------------------------------------------------- /face_detection/arcsoft/utils/ImageLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/arcsoft/utils/ImageLoader.py -------------------------------------------------------------------------------- /face_detection/arcsoft/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/arcsoft/utils/__init__.py -------------------------------------------------------------------------------- /face_detection/facepp_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/facepp_detection.py -------------------------------------------------------------------------------- /face_detection/hrFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/hrFace.py -------------------------------------------------------------------------------- /face_detection/libarcsoft_fsdk_face_detection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/libarcsoft_fsdk_face_detection.dll -------------------------------------------------------------------------------- /face_detection/paddleHub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/face_detection/paddleHub.py -------------------------------------------------------------------------------- /images/__init__.py: -------------------------------------------------------------------------------- 1 | from images import memory_pic -------------------------------------------------------------------------------- /images/bell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/images/bell.jpg -------------------------------------------------------------------------------- /images/cabinet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/images/cabinet.jpg -------------------------------------------------------------------------------- /images/camera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/images/camera.jpg -------------------------------------------------------------------------------- /images/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/images/house.jpg -------------------------------------------------------------------------------- /images/meCROP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/images/meCROP.png -------------------------------------------------------------------------------- /images/memory_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/images/memory_pic.py -------------------------------------------------------------------------------- /imgs_detection/emotion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/imgs_detection/emotion.jpg -------------------------------------------------------------------------------- /imgs_detection/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/imgs_detection/example1.png -------------------------------------------------------------------------------- /imgs_detection/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/imgs_detection/lena.jpg -------------------------------------------------------------------------------- /login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/login.py -------------------------------------------------------------------------------- /processing/ImgProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/processing/ImgProcessing.py -------------------------------------------------------------------------------- /processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/processing/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/Logarithmic_gray_scale_transformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/screenshots/Logarithmic_gray_scale_transformation.png -------------------------------------------------------------------------------- /screenshots/Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/screenshots/Login.png -------------------------------------------------------------------------------- /screenshots/RGB_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/screenshots/RGB_histogram.png -------------------------------------------------------------------------------- /screenshots/Sobel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/screenshots/Sobel.png -------------------------------------------------------------------------------- /screenshots/img_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/screenshots/img_add.png -------------------------------------------------------------------------------- /screenshots/median_filtering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/screenshots/median_filtering.png -------------------------------------------------------------------------------- /screenshots/modifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/screenshots/modifications.png -------------------------------------------------------------------------------- /screenshots/n_value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/screenshots/n_value.png -------------------------------------------------------------------------------- /screenshots/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/screenshots/register.png -------------------------------------------------------------------------------- /usrs_info.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lujiazho/Digital-Image-Processing/HEAD/usrs_info.pickle --------------------------------------------------------------------------------