- Record a Video: Enables recording with a real-time camera view and a custom filename.
- Open a Video: Allows checking the specific RGB values of a single pixel in a video.
- Control Video Playback: Move the video playback forward or backward by a single frame.
- Motion Tracking: Track the maximum and minimum angles to determine the range of motion of an arm in a recorded video.
To download all files and install Python, choose one of the following methods:
- Open Windows PowerShell and copy-paste the following code:
Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/V-prajit/camera_app/install_scripts/windows_install_script.ps1" -UseBasicParsing).Content - Enter your Windows login password into the terminal when prompted.
- Press the Enter key when prompted.
- To run your first app, open PowerShell in the downloaded folder and execute:
python record_video.py
- Download the GitHub repository as shown in the tutorial video below.
- Install Python from https://www.python.org/downloads/ See Tutorial Video.
- Install all the dependencies by copy-pasting this code into PowerShell:
pip install opencv-python mediapipe Pillow numpy
- To run your first app, open PowerShell in the downloaded folder and execute:
python record_video.py
To download all files and install Python, choose one of the following methods:
- Open the macOS terminal and copy-paste the following code:
bash <(curl -sL https://raw.githubusercontent.com/V-prajit/camera_app/install_scripts/mac_os_install_script.sh) - Enter your macOS login password into the terminal when prompted.
- Press the Enter key when prompted.
- To run your first app, open the terminal in the downloaded folder and execute:
python3 record_video.py
- Download the GitHub repository as shown in the tutorial video below.
- Install Python from https://www.python.org/downloads/ See Tutorial Video.
- Install all the dependencies by copy-pasting this code into the terminal:
pip3 install opencv-python mediapipe Pillow numpy
- To run your first app, open the terminal in the downloaded folder and execute:
python3 record_video.py
To download all files and install Python, choose one of the following methods:
- Open the Ubuntu terminal and copy-paste the following code:
wget -O - https://raw.githubusercontent.com/V-prajit/camera_app/install_scripts/ubuntu_install.sh | sudo bash - Enter your Ubuntu login password into the terminal when prompted.
- Press the Enter key when prompted.
- To run your first app, open the terminal in the downloaded folder and execute:
python3 record_video.py
- Download the GitHub repository as shown in the tutorial video below.
- Install Python by running these lines in the terminal:
See Tutorial Video.
sudo apt-get install python3 && sudo apt-get install python3-pip - Install all the dependencies by copy-pasting this code into the terminal:
pip3 install opencv-python mediapipe Pillow numpy
- To run your first app, open the terminal in the downloaded folder and execute:
python3 record_video.py