Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cornerstonetools-thresholdbrush

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cornerstonetools-thresholdbrush

A brush tool that allows you to set a low and high threshold range in HU units while drawing segmentations.

  • 1.0.25
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

cornerstonetools-thresholdbrush

A threshold brush that draws pixels only within the specified threshold low and high range.

ezgif com-gif-maker

Notice how it only draws on the bone which is in a threshold range of 200 to 1000. and If I attempt to draw on other pixels outside of that range, nothing gets drawn.

Dependencies

  • cornerstone-core
  • cornerstone-tools

Demo

Below is a live demo of the threshold brush tool, in the demo the threshold range is set to [200, 1000]

LIVE DEMONSTRATION

Installation

$ npm i cornerstonetools-thresholdbrush

Example

import ThresholdBrush from "cornerstonetools-thresholdbrush";

cornerstoneTools.addToolForElement(element, ThresholdBrush, {configuration: {thresholdLow: 200 , thresholdHigh: 1000}});
cornerstoneTools.setToolActive("ThresholdBrush", { mouseButtonMask: 1 });

You can modify the threshold low an threshold high configuration on the fly like the following


let brushThreshold = cornerstoneTools.store.state.tools.filter(tool => tool.name == 'ThresholdBrush')[0].configuration
brushThreshold.thresholdLow = -29
brushThreshold.thresholdHigh = 150

Common thresholds to get you started

Left Psoas : [-29, 150]
Right Psoas : [-29, 150]
Muscle : [-29, 150]
Sub Fat : [-190, -30]
Vis Fat : [-190, -30]
Bone : [200, 1000]

LICENSE

MIT

Keywords

FAQs

Package last updated on 05 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc