Skip to content

Acan.io, Medical Imaging Viewer, built on top of OHIF Viewer v3

License

Notifications You must be signed in to change notification settings

acanio/acanio-viewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Acan.io, Medical Imaging (DICOM) Viewer

Acan.io is a zero-footprint medical image viewer, built on top of OHIF Viewer v3 provided by the Open Health Imaging Foundation (OHIF). It is a configurable and extensible progressive web application with out-of-the-box support for image archives which support DICOMweb.


Render Status

About

Acan.io, built on top of the OHIF Viewer v3 that is for viewing medical images. It can retrieve and load images from most sources and formats; render sets in 2D, 3D, and reconstructed representations; allows for the manipulation, annotation, and serialization of observations; supports internationalization, OpenID Connect, offline use, hotkeys, and many more features.

Apart from functioning as an individual medical image viewer, the most notable feature is its utilization of Nextcloud, facilitating medical image sharing, collaboration, and security within HIPAA-compliant platform.

Almost everything offers some degree of customization and configuration. If it doesn't support something you need, we accept pull requests and have an ever improving Extension System.

Why Choose Us

Community & Experience

Acan.io is an improved version of the OHIF Viewer v3 that is a collaborative effort that has served as the basis for many active, production, and FDA Cleared medical imaging viewers. It benefits from our extensive community's collective experience, and from the sponsored contributions of individuals, research groups, and commercial organizations.

Built to Adapt

After more than 8-years of integrating with many companies and organizations, The OHIF Viewer has been rebuilt from the ground up to better address the varying workflow and configuration needs of its many users. All of the Viewer's core features are built using it's own extension system. The same extensibility that allows us to offer:

  • 2D and 3D medical image viewing
  • Multiplanar Reconstruction (MPR)
  • Maximum Intensity Project (MIP)
  • Whole slide microscopy viewing
  • PDF and Dicom Structured Report rendering
  • Segmentation rendering as labelmaps and contours
  • User Access Control (UAC)
  • Context specific toolbar and side panel content
  • and many others

Can be leveraged by you to customize the viewer for your workflow, and to add any new functionality you may need (and wish to maintain privately without forking).

Support

For commercial support, academic collaborations, and answers to common questions; please use Get Support to contact us.

Developing

Requirements

  • Yarn 1.17.3+
  • Node 18+
  • Yarn Workspaces should be enabled on your machine:
    • yarn config set workspaces-experimental true

Getting Started

  1. Fork this repository
  2. Clone your forked repository
    • git clone https://github.com/YOUR-USERNAME/Viewers.git
  3. Navigate to the cloned project's directory
  4. Add this repo as a remote named upstream
    • git remote add upstream https://github.com/acanio/acanio-viewer.git
  5. yarn install to restore dependencies and link projects

To Develop

From this repository's root directory:

# Enable Yarn Workspaces
yarn config set workspaces-experimental true

# Restore dependencies
yarn install

Commands

These commands are available from the root directory. Each project directory also supports a number of commands that can be found in their respective README.md and package.json files.

Commands Description
Develop
dev or start Default development experience for Viewer
test:unit Jest multi-project test runner; overall coverage
Deploy
build* Builds production output for our PWA Viewer

* - For more information on our different builds, check out our dependency, OHIF Viewer Deploy Docs

Project

Acan.io is built on the OHIF Medical Image Viewing Platform that is maintained as a monorepo. This means that this repository, instead of containing a single project, contains many projects. If you explore our project structure, you'll see the following:

.
├── extensions                  #
│   ├── _example                # Skeleton of example extension
│   ├── default                 # basic set of useful functionalities (datasources, panels, etc)
│   ├── cornerstone             # image rendering and tools w/ Cornerstone3D
│   ├── cornerstone-dicom-sr    # DICOM Structured Report rendering and export
│   ├── cornerstone-dicom-sr    # DICOM Structured Report rendering and export
│   ├── cornerstone-dicom-seg   # DICOM Segmentation rendering and export
│   ├── cornerstone-dicom-rt    # DICOM RTSTRUCT rendering
│   ├── cornerstone-microscopy  # Whole Slide Microscopy rendering
│   ├── dicom-pdf               # PDF rendering
│   ├── dicom-video             # DICOM RESTful Services
│   ├── measurement-tracking    # Longitudinal measurement tracking
│   └── tmtv                    # Total Metabolic Tumor Volume (TMTV) calculation
│
├── modes                       #
│   ├── _example                # Skeleton of example mode
│   ├── basic-dev-mode          # Basic development mode
│   ├── longitudinal            # Longitudinal mode (measurement tracking)
│   ├── tmtv                    # Total Metabolic Tumor Volume (TMTV) calculation mode
│   └── microscopy              # Whole Slide Microscopy mode
│
├── platform                    #
│   ├── core                    # Business Logic
│   ├── i18n                    # Internationalization Support
│   ├── ui                      # React component library
│   ├── docs                    # Documentation
│   └── viewer                  # Connects platform and extension projects
│
├── ...                         # misc. shared configuration
├── lerna.json                  # MonoRepo (Lerna) settings
├── package.json                # Shared devDependencies and commands
└── README.md                   # This file