Quickstart#

Caution

This website is still a work in progress

To use the Industrial_Vision library please follow the installation steps outlined below.

Installation#

1. Prerequisites

Ensure that you have Python 3.9 installed on your system. If you don’t have Python installed, you can download it from the official Python website (https://www.python.org).

2. Create a Virtual Environment (Optional)

It is recommended to create a virtual environment to keep the project dependencies isolated. Open a terminal or command prompt and run the following commands:

python3 -m venv myenv
source myenv/bin/activate
python -m venv myenv
myenv\Scripts\activate
3. Install Required Packages

In the activated virtual environment or your global Python environment, run the following command to install the necessary packages:

pip install -r requirements.txt
4. Download Industrial_Vision Library

Download the Industrial_Vision library from the project repository or source. You can either clone the repository or download the source code as a ZIP file.

  • If you are using Git, clone the repository by running the following command

    in your terminal or command prompt:

git clone https://github.com/username/project-name.git
  • If you downloaded the ZIP file, extract it to a directory of your choice.

5. Importing the Library

Once the library is downloaded, navigate to the project directory and import it into your Python script or interactive session using the following import statement:

import Industrial_Vision

Tip

Now that you have all the necessary prerequisites and dependencies installed, and don’t forget to consult the library’s documentation for further guidance on usage and the different algorithms.