Privacy protection based on specific pedestrians
This project can identify specific pedestrians in images or videos, remove them from the images, and restore them. Thus achieving anonymity of specific pedestrians
With the rapid development of machine learning and the expansion of personal data, various intelligent applications continue to emerge, providing significant value to individuals and society. However, sensitive personal information has raised increasingly serious privacy concerns. Ubiquitous surveillance systems capture a large volume of raw pedestrian images and videos. On one hand, this is useful for legitimate users in many scenarios, such as criminal investigations. On the other hand, these images and videos, stored locally or uploaded to cloud servers, are vulnerable to hackers, posing severe privacy risks to individuals and public safety. Raw images or videos contain sensitive information about pedestrians, such as the true identities of specific individuals or communities. Without careful protection, highly sensitive information could be leaked or misused by malicious parties.
This project focuses on a deep learning-based system for privacy protection of specific pedestrians in surveillance videos. The system can identify individuals in the video and detect those who require privacy protection. The specific individuals can either be extracted from the video or uploaded separately. Once identified, the system removes the individuals from the video and seamlessly fills in the missing areas. It also implements a restoration function that can recover the removed individuals to their original positions in the video. The project enables both pedestrian anonymization and the recovery of anonymized individuals.
- yolov7:
- The purpose of using YOLOv7 is to detect pedestrians in complex scenes within images or videos
- Implementation of paper:[2207.02696] YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors
- Download pre-trained model:https://github.com/WongKinYiu/yolov7
- Place it in the yolov7/weights folder
- lama
- The purpose of using lama is to erase pedestrians from images or videos and then restore the images or videos
- Implementation of paper:[2109.07161] Resolution-robust Large Mask Inpainting with Fourier Convolutions
- Download pre-trained model: https://github.com/advimman/lama
- Place it in the lama/big-lama folder
- HiNet
- The purpose of using HiNet is to conceal detected individuals in images, allowing for the removal of individuals while still enabling restoration
- Implementation of paper:ICCV 2021 Open Access Repository
- Download pre-trained model: https://github.com/TomTomTommi/HiNet
- Place it in the HiNet/model folder
- Fast-reid
- The purpose of using Fast-reid is to match detected individuals with specific individuals that need protection, in order to identify those requiring protection in images or videos
- Implementation of paper:[2006.02631] FastReID: A Pytorch Toolbox for General Instance Re-identification
- Download pre-trained model: https://github.com/JDAI-CV/fast-reid/blob/master/MODEL_ZOO.md
- Place it in the yolov7/fast_reid_master/model folder
In the files yolo_fastreid_lama.py、 anony_recory.py and yolov7/yolo_fastreid.py, the.../ replace with one's own actual work path
Run the image_cut.py file, select the pedestrians to be protected from the original video or image, and capture them. The captured images will be saved to the query folder of the pedestrian re identification module. You can select one or more pedestrians from the picture to capture. After selecting the clipping area, press the ENTER key to save. To exit, do not select any area. Press the ENTER key to exit.
python image_cut.py
- Put the pedestrian images to be protected into /yolov7/fast-reid_master/datasets/query
- You can place the image in example/input image and modify the corresponding path in yolo_fastreid_lama.py. Then run yolo_fastreid_lama.py
python yolo_fastreid_lama.py
Encryption_process_Single.person.scene.mp4
Encryption_process_Multiplayer.scene.mp4
Encryption_process_Personnel.intensive.scene.mp4
python anony_recory.py
Decryption_process_Single.person.scene.mp4
The feature is expected to be updated next time.