- Install oneAPI via apt: https://www.intel.com/content/www/us/en/develop/documentation/installation-guide-for-intel-oneapi-toolkits-linux/top/installation/install-using-package-managers/apt.html#apt
- sudo apt install libtbb-dev
- mkdir build && cd build
- cmake ../
- make
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs lang="markdown"> | |
[TODO: write documentation for this plugin.] | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "live-cell-boundary", | |
"type": "web-python", | |
"version": "0.1.0", | |
"description": "[TODO: describe this plugin with one sentence.]", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs lang="markdown"> | |
# VizarrDemo | |
A demo plugin which uses Vizarr to visualize zarr images | |
See https://github.com/hms-dbmi/vizarr for details. | |
</docs> | |
<config lang="json"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<config lang="json"> | |
{ | |
"name": "BIO-RDF-Validator", | |
"type": "web-python", | |
"version": "0.1.0", | |
"description": "A spec validator for bioimage RDF files.", | |
"tags": [], | |
"ui": "", | |
"cover": "", | |
"inputs": null, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import micropip | |
await micropip.install('pyotritonclient') | |
import io | |
from PIL import Image | |
import matplotlib.pyplot as plt | |
import numpy as np | |
from js import fetch | |
from pyotritonclient import get_config, execute_model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs lang="markdown"> | |
[TODO: write documentation for this plugin.] | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "HPASingleCellTriton", | |
"type": "web-python", | |
"version": "0.1.0", | |
"description": "[TODO: describe this plugin with one sentence.]", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {InferenceSession, Tensor} from 'onnxruntime-web'; | |
import Jimp from 'jimp/es'; | |
const COLORS = ["red", "green", "blue", "yellow"] | |
async function handleRun(e) { | |
e.preventDefault(); | |
// create an inference session, using WebGL backend. (default is 'wasm') | |
const baseURL = 'https://images.proteinatlas.org/115/672_E2_1_' | |
const imgTensor = new Float32Array(1024*1024*4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs lang="markdown"> | |
[TODO: write documentation for this plugin.] | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "PythonPlugin", | |
"type": "web-python", | |
"version": "0.1.0", | |
"description": "[TODO: describe this plugin with one sentence.]", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs lang="markdown"> | |
## PyImageJ demo | |
A PyImageJ demo ported from https://github.com/imagej/pyimagej | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "N2V-Fiji-Demo", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs lang="markdown"> | |
[TODO: write documentation for this plugin.] | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "DownloadFileWebPython", | |
"type": "web-python", | |
"version": "0.1.0", | |
"description": "[TODO: describe this plugin with one sentence.]", |