Skip to content

V-prajit/MotionCaptureSuite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MotionCaptureSuite

Key Parts

  • 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.

How To Install

Windows

To download all files and install Python, choose one of the following methods:

Install Script

  1. 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
  2. Enter your Windows login password into the terminal when prompted.
  3. Press the Enter key when prompted.
  4. To run your first app, open PowerShell in the downloaded folder and execute:
    python record_video.py 

Manual Installation

  1. Download the GitHub repository as shown in the tutorial video below.
  2. Install Python from https://www.python.org/downloads/ See Tutorial Video.
  3. Install all the dependencies by copy-pasting this code into PowerShell:
    pip install opencv-python mediapipe Pillow numpy
  4. To run your first app, open PowerShell in the downloaded folder and execute:
    python record_video.py

MacOS

To download all files and install Python, choose one of the following methods:

Install Script

  1. 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)
  2. Enter your macOS login password into the terminal when prompted.
  3. Press the Enter key when prompted.
  4. To run your first app, open the terminal in the downloaded folder and execute:
    python3 record_video.py 

Manual Installation

  1. Download the GitHub repository as shown in the tutorial video below.
  2. Install Python from https://www.python.org/downloads/ See Tutorial Video.
  3. Install all the dependencies by copy-pasting this code into the terminal:
    pip3 install opencv-python mediapipe Pillow numpy
  4. To run your first app, open the terminal in the downloaded folder and execute:
    python3 record_video.py

Ubuntu

To download all files and install Python, choose one of the following methods:

Install Script

  1. 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
  2. Enter your Ubuntu login password into the terminal when prompted.
  3. Press the Enter key when prompted.
  4. To run your first app, open the terminal in the downloaded folder and execute:
    python3 record_video.py 

Manual Installation

  1. Download the GitHub repository as shown in the tutorial video below.
  2. Install Python by running these lines in the terminal:
    sudo apt-get install python3 && sudo apt-get install python3-pip
    See Tutorial Video.
  3. Install all the dependencies by copy-pasting this code into the terminal:
    pip3 install opencv-python mediapipe Pillow numpy
  4. To run your first app, open the terminal in the downloaded folder and execute:
    python3 record_video.py

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages