from atomscale import Client
client = Client(api_key="YOUR_API_KEY")
results = client.get(data_ids="d290f1ee-6c54-4b01-90e6-d701748f0851")
optical = results[0] # OpticalResult
print(optical.snapshot_image_data)
{
"video_uuid": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"frames": [
{
"image_uuid": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"processed_file_metadata": {
"file_type": "png",
"width": 1920,
"height": 1080
}
}
]
}
Retrieve individual frames from optical video recordings
from atomscale import Client
client = Client(api_key="YOUR_API_KEY")
results = client.get(data_ids="d290f1ee-6c54-4b01-90e6-d701748f0851")
optical = results[0] # OpticalResult
print(optical.snapshot_image_data)
{
"video_uuid": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"frames": [
{
"image_uuid": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"processed_file_metadata": {
"file_type": "png",
"width": 1920,
"height": 1080
}
}
]
}
from atomscale import Client
client = Client(api_key="YOUR_API_KEY")
results = client.get(data_ids="d290f1ee-6c54-4b01-90e6-d701748f0851")
optical = results[0] # OpticalResult
print(optical.snapshot_image_data)
{
"video_uuid": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"frames": [
{
"image_uuid": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"processed_file_metadata": {
"file_type": "png",
"width": 1920,
"height": 1080
}
}
]
}