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 sys | |
import os | |
import errno | |
import time | |
import json | |
import glob | |
from base64 import b64decode | |
from watchdog.observers import Observer | |
from watchdog.events import FileSystemEventHandler |
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
//ImageJ macro making a movie (stack) of zooming on selected rectangle (ROI) | |
//v2 Eugene Katrukha katpyxa at gmail.com | |
//v2a Andrey Aristov: aaristov at pasteur.fr | |
requires("1.48h"); | |
//check if there is rectangular selection | |
if(selectionType() ==0) | |
{ | |
sTitle=getTitle(); | |
sMovieTitle=sTitle+"_zoom_movie"; |
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": "ITK-VTK-Viewer", | |
"type": "web-worker", | |
"tags": [], | |
"ui": "", | |
"version": "0.1.2", | |
"cover": "", | |
"description": "This Plugin uses itk-vtk-viewer to visualize images in ImageJ.JS", | |
"icon": "extension", |
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
from imjoy import api | |
import pyclesperanto_prototype as cle | |
from skimage.io import imread, imsave, imshow | |
import matplotlib | |
import numpy as np | |
class ImJoyPlugin(): | |
async def setup(self): |
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": "OpenCVSegmentation", | |
"type": "window", | |
"tags": [], | |
"ui": "", | |
"version": "0.1.0", | |
"cover": "", | |
"description": "This is a demo plugin for segmenting images with OpenCV.js", | |
"icon": "extension", |
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": "SimpleIVVewer", | |
"type": "window", | |
"tags": [], | |
"ui": "", |
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": "MicroManagerControl", | |
"type": "native-python", | |
"version": "0.1.0", | |
"description": "Microscope control with MicroManager(pymmcore)", | |
"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
<docs> | |
[TODO: write documentation for this plugin.] | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "WebPythonWorker", | |
"type": "web-worker", | |
"tags": [], | |
"ui": "", |
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": "ImJoyGridDemo", | |
"type": "native-python", | |
"editor_height": "400px", | |
"lang": "python", | |
"api_version": "0.1.8", | |
"description": "A demo plugin to show case ImJoy Grid with vizarr, folder tree and schema form.", | |
"tags": [], | |
"version": "0.1.1", |
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 js | |
import asyncio | |
from webloop import WebLoop | |
# set the event loop explicitly | |
loop = WebLoop() | |
asyncio.set_event_loop(loop) | |
# or get the event loop directly | |
# loop = asyncio.get_event_loop() |