Skip to main content

A Computer Vision System for Dynamic Monitoring of Chemical Experiments

Project description

PyPI - Version Dataset DOI YouTube Hugging Face

HeinSight4.0 – A Computer Vision System for Dynamic Monitoring of Chemical Experiments

HeinSight4.0 is a computer vision system designed for real-time monitoring of chemical behavior. It detects and classifies chemical phases (air, liquid, solid) within vessels, enabling automated observation of common experimental behaviors such as dissolution, melting, suspension, mixing, settling, and more. It also extracts additional visual cues like turbidity and color through image analysis.

This model was tested on chemistry within vials and EasyMax reactor.

💡 Installation is now available with
pip install heinsight

👉 Try it out with the HeinSight Demo app.

Table of Contents

How It Works?

HeinSight4.0 employs a hierarchical detection approach by training two separate models (Figure 1):

  • Vessel Detection Model: Identifies transparent laboratory equipment (e.g., reactors and vessels) and marks them as "vessels."
  • Chemical Detection Model: Detects chemical artifacts and phases within the identified vessels. The model classifies chemical phases into five categories, as outlined in Table 1.

The output of the vessel detection model serves as input for the chemical detection model, enabling phase-specific analysis. Both models were fine-tuned from YOLOv8 pretrained on the COCO dataset and adapted to our customized datasets. Details on models training can be found here: https://zenodo.org/records/15605098.

Figure 1. hierarchical detection approach of HeinSight4.0.

Table 1. Classes names for chemical detection model.

Datasets

Vessel Dataset

Composed of 6493 images from the HeinSight3.0 dataset combined with additional images of reactors and vessels to expand detection capabilities across various laboratory setups. 

Chemical Dataset

Includes 3801 images captured from video footage of dynamic chemical experiments. Features diverse scenarios:

  • Varied background lighting
  • A range of colored liquids and compounds
  • Different solid forms and behaviors in liquid environments This dataset enables monitoring of key experimental behaviors, including dissolution, melting, mixing, settling, and others, to address complex experimental conditions. A representative set of images is shown in Figure 2.

Dataset can be accessed at https://zenodo.org/records/14630321

Figure 2. Overview of diverse images in the training dataset used for the chemical detection model

Installation

The script was developed on Windows and tested on a Raspberry Pi 5. Python versions should be flexible and align with the requirements of Ultralytics (Python>=3.8 environment with PyTorch>=1.8).

For Users

You can install heinsight directly from PyPI:

pip install heinsight

For Developers

If you want to contribute to the project, you can clone the repository and install the dependencies from requirements.txt:

git clone https://gitlab.com/heingroup/heinsight4.0.git
cd heinsight4.0
pip install -r requirements.txt
cd heinsight

Enable CUDA

Note that PyTorch installation can be different when using a Nvidia GPU, check the PyTorch page for more detail.

pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118

Installation on a Raspberry Pi

Depending on the model sizes, and Pi model (pi 4 or 5), it might need to use headless openCV to avoid GUI conflict. Check out the Stream section for real time monitoring on a Pi device.

pip uninstall opencv-python
pip install opencv-python-headless

Note that picamera2 installation uses apt. Check formal installation guide for more details

sudo apt install -y python3-picamera2

Usage

Quickstart

Once installed, you can start the server with the heinsight-server command:

heinsight-server

and use --help for arguments doc

heinsight-server --help

Image mode usage with demo image

from heinsight.heinsight import HeinSight
heinsight = HeinSight(vial_model_path=r"models/best_vessel.pt",
                      contents_model_path=r"models/best_content.pt", )
heinsight.run("path/to/img.png")

Output: heinsigh_output/output.png

Video analysis

Output:

  • heinsigh_output/output.mkv: analysis output
  • heinsigh_output/output_per_phase.csv: turbidity and color (overall and per phase) over time
  • heinsigh_output/output_raw.csv: turbidity per row over time
heinsight.run("path/to/video.mp4")

Realtime monitoring with a webcam

Output: Video analysis output + raw video capture

# realtime analysis example
heinsight.run(0)

Other arguments

heinsight.run("path/to/video.mp4", 
              save_directory="new_folder",  # save to other path
              output_name="filename",       # save with other base filename
              fps=5,                        # capture frame rate, only available with webcam
              res=(1920, 1080))             # capture resolution, only available with webcam

Stream

Stream with a FastAPI app, in stream.py

pip install "fastapi[standard]"
cd heinsight
fastapi run stream.py

API Endpoints

  • GET /docs: View the interactive API documentation (Swagger UI).

  • POST /start: Start the monitoring.

    • Body:
    {
      "video_source": 0,
      "frame_rate": 30,
      "res": [1920, 1080]
    }
    
  • GET /stop: Stop the monitoring.

  • GET /frame: Get the latest processed video frame for streaming.

  • GET /data: Get the collected data.

  • GET /current_status: Get the most recent status and data point.

Integration

For integration usage, we recommend to use heinsight_api

from heinsight.heinsight_api import HeinsightAPI

heinsight = HeinsightAPI("http://localhost:8000", source=0, res=(1920, 1080))

# check is the sample homogeneous
heinsight.homo()

# check the volume
heinsight.volume_1()

Example GUI

A sample HTML dashboard is provided in examples/sample_gui.html to demonstrate how to interact with the API.

Acknowledgements

Rama El-khawaldeh, Ivory Zhang, Ryan Corkery

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

heinsight-0.4.6.tar.gz (68.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

heinsight-0.4.6-py3-none-any.whl (68.8 MB view details)

Uploaded Python 3

File details

Details for the file heinsight-0.4.6.tar.gz.

File metadata

  • Download URL: heinsight-0.4.6.tar.gz
  • Upload date:
  • Size: 68.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for heinsight-0.4.6.tar.gz
Algorithm Hash digest
SHA256 fe8669d1700962b8cd9e6e2d6445b9eb87e2bf4862b1aef2ad3733d0b3908805
MD5 ef0fdff86cb3c2b136d8835869372460
BLAKE2b-256 e93a81f95d3794a48e56ed3117175885a07fde17fe5ca327fb9a18d6debab43d

See more details on using hashes here.

File details

Details for the file heinsight-0.4.6-py3-none-any.whl.

File metadata

  • Download URL: heinsight-0.4.6-py3-none-any.whl
  • Upload date:
  • Size: 68.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for heinsight-0.4.6-py3-none-any.whl
Algorithm Hash digest
SHA256 ffbbae12f2a57195334f639745f82f6c0f3992422e20c2c2a17adceb8736c48f
MD5 3a27dd59a3045bf36a1affca9511f323
BLAKE2b-256 ac50d802dc85c049425ca668a94f3afd3523defba78c1fbf5b343eac3173523b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page