Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.09 KB

File metadata and controls

37 lines (26 loc) · 1.09 KB

RobotX Workshops: Python Image Processing Template

A reusable template for RobotX Workshops image processing projects using Python and OpenCV.

Getting Started

Setting Up Your Environment

  1. Create a virtual environment:

    python -m venv venv
  2. Activate the virtual environment:

    • On Windows:
      venv\Scripts\activate
    • On macOS/Linux:
      source venv/bin/activate
  3. Install dependencies:

    pip install -r requirements.txt

Project Structure

The template is organized into the following directories:

  • data/: Store your input images and datasets here. This is where you should place sample images for processing and experimentation.

  • notebooks/: Contains Jupyter notebooks for interactive learning and experimentation. Start with the introductory notebooks to learn the basics of image processing with OpenCV.

  • scripts/: Contains standalone Python scripts for image processing tasks. These scripts can be run from the command line and are useful for batch processing or automation.