https://github.com/apahl/img_viewer
A plate image viewer for visually analysing Cell Painting results
https://github.com/apahl/img_viewer
cellprofiler golang webview
Last synced: 28 days ago
JSON representation
A plate image viewer for visually analysing Cell Painting results
- Host: GitHub
- URL: https://github.com/apahl/img_viewer
- Owner: apahl
- License: mit
- Created: 2018-08-14T07:03:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-18T10:03:10.000Z (over 6 years ago)
- Last Synced: 2025-03-29T08:07:56.552Z (about 1 month ago)
- Topics: cellprofiler, golang, webview
- Language: Go
- Size: 563 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# img_viewer
A utility to visually analyse and compare the results from Cell Painting runs.
Sample images for each plate have to be created with the `sample_images.sh` script (requires `imagemagick`) before the analysis, these can then be loaded with the tool.
The images can be stepped through for each plate individually using the arrows (if autoload is set, the new image will be automatically loaded) or for all loaded plates (using the arrows on the right ("All: ..." )).
img_viewer uses @zserge 's excellent [webview](https://github.com/zserge/webview) library for the GUI.
## Installation
With `go get`:
go get https://github.com/apahl/img_viewer
Cross-compilation on Linux to Windows, using go1.10.3, has been successful with:
GOOS=windows GOARCH=amd64 CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ go build -ldflags "-H windowsgui" -o ImgViewer.exe
Or download a binary from the [releases](https://github.com/apahl/img_viewer/releases) page.