This Python project is an image scanner that performs sensitive keyword scanning on visual files and reports the detected data.
- If Python is not installed, download and install Python.
- Install the required libraries by running the following command in your terminal/cmd:
pip3 install -r requirements.txt # Install the dependencies
-
To process visual files in the
dataset
directory:python main.py
-
To check the results using sensitive keywords from the
input/sensitive_keywords.txt
file:python main.py
dataset/
: Directory containing image files.input/sensitive_keywords.txt
: File containing sensitive keywords.output/detected_sensitive_keywords.txt
: File reporting detected sensitive keywords.process.py
: Python module performing image processing operations.detection.py
: Python module performing sensitive keyword scanning operations.main.py
: Main execution file of the project.
- While working on the project, you can modify the image processing and sensitive keyword scanning algorithms by editing the
process.py
anddetection.py
files. - If needed, you can expand the project by adding new features.
This project is licensed under the MIT License - see the LICENSE.md file for details.