Reusable PyQt6 dialog for browsing and retrieving images from OMERO servers.
from PyQt6.QtWidgets import QApplication
from omero_browser_qt import OmeroGateway, OmeroBrowserDialog
app = QApplication([])
gw = OmeroGateway()
for img in OmeroBrowserDialog.select_images(gateway=gw):
print(img.getName(), img.getId())
gw.disconnect()
pip install omero-browser-qt
!!! note “ZeroC ICE required”
omero-py depends on ZeroC ICE, which must be installed separately.
See Getting Started for detailed instructions.
| Section | Description |
|---|---|
| Getting Started | Prerequisites, install, first workflow |
| User Guide | In-depth usage of every component |
| API Reference | Auto-generated from docstrings |
| Examples | Recipes and the OMERO Viewer |