All Projects → UCSB-VRL → bisqueUCSB

UCSB-VRL / bisqueUCSB

Licence: other
BisQue is an ML Platform for storing, analyzing, and visualizing your data all in the browser.

Programming Languages

Jupyter Notebook
11667 projects
javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
matlab
3953 projects
C++
36643 projects - #6 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to bisqueUCSB

rocket viewer
This simple and generic viewer allows you to visualize different kinds of data such as medical and biological images, 3D surfaces, electric signals (ECGs) and documents.
Stars: ✭ 22 (-15.38%)
Mutual labels:  threejs, medical-imaging
CS-Net
CS-Net (MICCAI 2019) and CS2-Net (MedIA 2020)
Stars: ✭ 53 (+103.85%)
Mutual labels:  medical-imaging
humke-4d-geometry
A web-based 4D Geometry viewer
Stars: ✭ 51 (+96.15%)
Mutual labels:  threejs
Mixed-Reality-JS
A simple framework for building Hololens applications with Javascript and ThreeJS. Based on HoloJS.
Stars: ✭ 54 (+107.69%)
Mutual labels:  threejs
cgajs
A javascript parser, processor and visualiser for the ESRI CGA Grammar language
Stars: ✭ 20 (-23.08%)
Mutual labels:  threejs
Three-LargeScreen
🎖 模仿图扑的3D风机可视化大屏
Stars: ✭ 117 (+350%)
Mutual labels:  threejs
CNN-DICOM-Segmentation
DICOM Image Segmentation with CNNs in Tensorflow
Stars: ✭ 87 (+234.62%)
Mutual labels:  medical-imaging
iogui
Experimental JavaScript Framework
Stars: ✭ 43 (+65.38%)
Mutual labels:  threejs
angular-three
🧊 THREE.js integration for Angular 🧊
Stars: ✭ 287 (+1003.85%)
Mutual labels:  threejs
lynnlangit
Lynn Langit profile
Stars: ✭ 46 (+76.92%)
Mutual labels:  cloud-computing
ng-three-examples
three.js examples in Angular 2
Stars: ✭ 24 (-7.69%)
Mutual labels:  threejs
honkai-starrail-scene
【崩坏:星穹铁道】预约页场景提取
Stars: ✭ 33 (+26.92%)
Mutual labels:  threejs
monai-deploy
MONAI Deploy aims to become the de-facto standard for developing, packaging, testing, deploying and running medical AI applications in clinical production.
Stars: ✭ 56 (+115.38%)
Mutual labels:  medical-imaging
generative-art
🌈🎨 Generative Art is the idea realized as genetic code of artificial events, as construction of dynamic complex systems able to generate endless variations. This is also a nuxt-module (@luxdamore/nuxt-canvas-sketch) - [three.js, tensorflow.js and gsap are not included].
Stars: ✭ 41 (+57.69%)
Mutual labels:  threejs
exosphere
A user-friendly, extensible OpenStack client. This is a mirror. See GitLab for issues and PRs: https://gitlab.com/exosphere/exosphere
Stars: ✭ 20 (-23.08%)
Mutual labels:  cloud-computing
three-platformize
一个让 THREE 平台化的项目,目前已适配微信,淘宝,头条小程序,微信小游戏
Stars: ✭ 418 (+1507.69%)
Mutual labels:  threejs
source-engine-model-loader
Three.js loader for parsing Valve's Source Engine models
Stars: ✭ 54 (+107.69%)
Mutual labels:  threejs
GateContrib
User-oriented public repository of Gate (macros, examples and user contributions)
Stars: ✭ 57 (+119.23%)
Mutual labels:  medical-imaging
testing-pbr
Various tests of Physically-Based Rendering via Three.js
Stars: ✭ 38 (+46.15%)
Mutual labels:  threejs
awesome-aws-research
A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources for Academic Researchers new to AWS
Stars: ✭ 41 (+57.69%)
Mutual labels:  cloud-computing

workflow

🔭 Overview

BisQue is a web-based platform specifically designed to provide researchers with organizational and quantitative analysis tools for up to 5D image data. Users can extend BisQue by creating their own modules that take advantage of cutting edge machine learning algorithms. BisQue’s extensibility stems from two core concepts: flexible metadata facility and an open web-based architecture. Together these empower researchers to create, develop and share novel multimodal data analyses.

💡 Features

  • Bisque is free and open-source
  • Flexible textual and graphical annotations
  • Cloud scalability: PBs of images, millions of annotations
  • Distributed storage: local, iRODS, S3
  • Integrated image analysis, high-throughput with Condor
  • Analysis in MATLAB, Python, Java+ImageJ
  • 100+ biological image formats
  • Very large 5D images (100+ GB)

Start using BisQue now by Requesting an account!

Getting Started

Docker Installation

asciicast

Download

Ensure you have the latest release by first running the following pull command:

  docker pull amilworks/bisque-module-dev:git

Intro: BisQue Docker Container

Run the BisQue Docker Container

To run the docker version of BisQue locally, start a bisque server on the host port 8080:

docker run --name bisque --rm -p 8080:8080 amilworks/bisque-module-dev:git

and point your browser at http://localhost:8080. You should see a BisQue homepage similar to the one on bisque2.ece.ucsb.edu. If you do not see the homepage, check to make sure that port 8080 is not being used by another container or application and that you have correctly mapped the ports using -p 8080:8080, where -p is short for port.

Registering Modules

To register all the modules to your local server:

  • Login to your BisQue server using admin:admin
  • Find the module manager under the Admin button on the top right hand corner
  • Put http://localhost:8080/engine_service in the right panel where it says Enter Engine URL and hit Load
    • NOTE: Use localhost:8080 here because it's internal to the container.
  • Drag and Drop MetaData to the left panel---or whatever module you would like---and the module will now be registered and available for use. You can make the module Public by hitting Set Public in the left panel, which basically means the module is Published and ready for public use.

Custom Modules, Copying Folders out of the Container

If you would like to build and test your own module locally, using host mounted modules will make life easier to build, test, debug, and deploy locally.

  1. Copy the module directory out of the container and into the folder on your local system named container-modules.

       docker cp bisque:/source/modules container-modules
    
  2. Copy your module into the container-modules folder on your local system.

  3. Restart the container with host mounted modules. Be careful with the command $(pwd)/container-modules that we are using here. If the /container-modules is not in the specified path, you will not see any of the modules during the registration process.

    docker stop bisque
    docker run --name bisque --rm -p 8080:8080 -v $(pwd)/container-modules:/source/modules  amilworks/bisque-module-dev:git
    
  4. Register your module from the above steps in "3. __Registering Modules. __", using the Module Manager.

Pushing your Module to Production. If you feel that your module is ready to be added to the production version of BisQue, please feel free to contact us and we will gladly begin the process.

Data Storage

Use an external data directory so you don't lose data when the service stops - Uploaded image and workdirs are store in /source/data. You can change this to be a host mounted directory with

docker run --name bisque --rm -p 8080:8080 -v $(pwd)/container-data:/source/data  amilworks/bisque-module-dev:git
  • The default sqlite database is stored inside the container at /source/data/bisque.db
  • The uploaded images are stored inside the container at /source/data/imagedir

View Downloaded Images, Running Containers

List all the docker images on your system:

docker images

List all running containers on your system:

docker ps

SSH into the Container

If you would like to see everything inside the container, you can use the following command while the container is running:

docker exec -it amilworks/bisque-module-dev:git bash

The -it flag enables you to run interactively inside the container. There are numerous other flags you can take advantage of as shown here:

--detach ,      -d    Detached mode: run command in the background
--detach-keys         Override the key sequence for detaching a container
--env ,         -e    Set environment variables
--interactive , -i    Keep STDIN open even if not attached
--privileged          Give extended privileges to the command
--tty ,         -t    Allocate a pseudo-TTY
--user ,        -u    Username or UID (format: <name|uid>[:<group|gid>])
--workdir ,     -w    Working directory inside the container

Now, let's say you want to ssh into an image without fully starting BisQue. More precisely, you want to ssh into a non-running container. You can accomplish this by running:

docker run -it amilworks/bisque-module-dev:git bash

If you want to exit, simply type exit and you will be taken back outside of the container.

Stop the Container

Say you are done playing with your container for today, you can stop the container by using the following command:

docker stop amilworks/bisque-module-dev:git 
docker stop {YOUR_CONTAINER_NAME} #  <--- If you named the container

💾 Documentation

BisQue Documentation

The official documentation covers the BisQue cloud service running live at UCSB, module development for the platform, and the BQAPI. If you have any questions, feel free to reach out. We will be continuously updating the documentation so check back often for updates!

Papers using BisQue

  • Jangid, Devendra K., Neal R. Brodnik, Amil Khan, Michael G. Goebel, McLean P. Echlin, Tresa M. Pollock, Samantha H. Daly, and B. S. Manjunath. "3D Grain Shape Generation in Polycrystals Using Generative Adversarial Networks." Integrating Materials and Manufacturing Innovation (2022): 1-14.
  • Zhang, Angela, Amil Khan, Saisidharth Majeti, Judy Pham, Christopher Nguyen, Peter Tran, Vikram Iyer, Ashutosh Shelat, Jefferson Chen, and B S Manjunath. “Automated Segmentation and Connectivity Analysis for Normal Pressure Hydrocephalus.” BME Frontiers 2022 (2022): 1–13.
  • Latypov, Marat I., Amil Khan, Christian A. Lang, Kris Kvilekval, Andrew T. Polonsky, McLean P. Echlin, Irene J. Beyerlein, B. S. Manjunath, and Tresa M. Pollock. "BisQue for 3D materials science in the cloud: microstructure–property linkages." Integrating Materials and Manufacturing Innovation 8, no. 1 (2019): 52-65.
  • Polonsky, Andrew T., Christian A. Lang, Kristian G. Kvilekval, Marat I. Latypov, McLean P. Echlin, B. S. Manjunath, and Tresa M. Pollock. "Three-dimensional analysis and reconstruction of additively manufactured materials in the cloud-based BisQue infrastructure." Integrating Materials and Manufacturing Innovation 8, no. 1 (2019): 37-51.
  • Kvilekval K, Fedorov D, Obara B, Singh A, Manjunath BS. Bisque: a platform for bioimage analysis and management. Bioinformatics. 2010 Feb 15;26(4):544-52. doi: 10.1093/bioinformatics/btp699. Epub 2009 Dec 22. PMID: 20031971.

Team

  • Amil Khan (Project Lead)
  • Satish Kumar
  • Mike Goebel
  • Connor Levenson
  • Chandrakanth Gudavalli
  • Tom Jiang

Acknowledgments

  • NSF SI2-SSI No.1664172, NSF MCB Grant No. 1715544

License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].