11 lines
295 B
Python
11 lines
295 B
Python
import logging
|
|
|
|
from openflexure_microscope.microscope import Microscope
|
|
|
|
default_microscope = Microscope()
|
|
|
|
# Restore loaded capture array to camera object
|
|
logging.debug("Restoring captures...")
|
|
default_microscope.captures.rebuild_captures()
|
|
|
|
logging.debug("Microscope successfully attached!")
|