- Install virtualenv
sudo apt install -y python3-venv
- Clone the Repo
git clone https://github.com/ankursikarwar/RBVMS.git
- Navigate to the sub-folder
cd RBVMS
- Initialize virtual environment
python3 -m venv my_env
- Activate the virtual environment
source my_env/bin/activate
- Upgrade pip
(my_env) pip install --upgrade pip
- Install the dependencies
(my_env) pip install -r requirements.txt
-
(Optional) Users may need to change the camera device index based on their webcam configuration. The default camera index is 0. Check line 43 in demo.py and line 42 in demo_visualization.py
-
(Optional) Users can also switch 'on' image enhancement to use the application in low-lighting conditions. See line 44, 45 in demo.py and line 43, 44 in demo_visualization.py
-
Starting the Application
Without Visualization:
(my_env) python demo.py
With Visualization:
(my_env) python demo_visualization.py
-
Zhang, K., Zhang, Z., Li, Z., and Qiao, Y. (2016). Joint face detection and alignment using multitask cascaded convolutional networks. IEEE Signal Processing Letters, 23(10):1499–1503.
-
Q. Cao, L. Shen, W. Xie, O. M. Parkhi, A. Zisserman (2018). VGGFace2: A dataset for recognising face across pose and age. International Conference on Automatic Face and Gesture Recognition, 2018.
-
Florian Schroff, Dmitry Kalenichenko, James Philbin (2015). FaceNet: A Unified Embedding for Face Recognition and Clustering. IEEE Computer Society Conference on Computer Vision and Pattern Recognition, 2015.
-
Christian Szegedy, Sergey Ioffe, Vincent Vanhoucke and Alex Alemi (2016). Inception-v4, Inception-ResNet and the Impact of Residual Connections on Learning. Computer Vision and Pattern Recognition.
-
Guo, Chunle Guo and Li, Chongyi and Guo, Jichang and Loy, Chen Change and Hou, Junhui and Kwong, Sam and Cong, Runmin (2020). Zero-reference deep curve estimation for low-light image enhancement. Proceedings of the IEEE conference on computer vision and pattern recognition (CVPR).
Credits for image enhancement code go to https://github.com/Li-Chongyi/Zero-DCE