Script to assess MTP bottom uniformity.

Discuss macros to control the hardware functions of your ZEISS microscope
Post Reply
User avatar
Michael Stebler
Posts: 1
Joined: Tue May 24, 2022 2:16 pm
Location: ETH Zurich

Script to assess MTP bottom uniformity.

Post by Michael Stebler »

Hi

I'm looking for a way to use the definite focus to measure the flatness and the thickness of the plate bottom over a whole plate.

Did someone already develop a script for this?

Thanks
Ollie Only
Posts: 1
Joined: Wed Jul 19, 2023 3:41 pm

Re: Script to assess MTP bottom uniformity.

Post by Ollie Only »

import numpy as np
import cv2 # If you need image processing
import pandas as pd # If you need to store data

def capture_images():
# Function to capture images from the MTP bottom using your imaging equipment
# You might need to use a camera library or an external API to capture images

def process_images(images):
# Function to process the captured images (if required)
# You might need to apply image processing techniques like filtering or thresholding

def calculate_uniformity(images):
# Function to calculate the bottom uniformity for each well in the MTP
# You might use various image analysis techniques, such as edge detection or contouring
# Calculate a uniformity score for each well (e.g., based on pixel intensities)

def save_results(results):
# Function to save the uniformity results to a file or a database
# You can store the results as a CSV or any other format depending on your needs

if __name__ == "__main__":
num_wells = 96 # Change this based on the MTP size
captured_images = capture_images()
processed_images = process_images(captured_images)
uniformity_results = calculate_uniformity(processed_images)
save_results(uniformity_results)
Duncan Jones
Posts: 1
Joined: Tue Aug 15, 2023 3:44 pm

Re: Script to assess MTP bottom uniformity.

Post by Duncan Jones »

# Function to calculate the bottom uniformity for each well in the MTP
# You might use various image analysis techniques, such as edge detection or contouring
# Calculate a uniformity score for each well (e.g., based on pixel intensities)
Super Mario
Post Reply