Skip to main content

Class: BrushTool

Extends

Constructors

new BrushTool()

new BrushTool(toolProps, defaultToolProps): BrushTool

Parameters

toolProps: PublicToolProps = {}

defaultToolProps: SharedToolProp = ...

Returns

BrushTool

Overrides

BaseTool.constructor

Defined in

tools/src/tools/segmentation/BrushTool.ts:109

Properties

configuration

configuration: Record<string, any>

Inherited from

BaseTool.configuration

Defined in

tools/src/tools/base/BaseTool.ts:19


memo

protected memo: Memo

A memo recording the starting state of a tool. This will be updated as changes are made, and reflects the fact that a memo has been created.

Inherited from

BaseTool.memo

Defined in

tools/src/tools/base/BaseTool.ts:28


mode

mode: ToolModes

Tool Mode - Active/Passive/Enabled/Disabled/

Inherited from

BaseTool.mode

Defined in

tools/src/tools/base/BaseTool.ts:23


supportedInteractionTypes

supportedInteractionTypes: InteractionTypes[]

Supported Interaction Types - currently only Mouse

Inherited from

BaseTool.supportedInteractionTypes

Defined in

tools/src/tools/base/BaseTool.ts:17


toolGroupId

toolGroupId: string

ToolGroup ID the tool instance belongs to

Inherited from

BaseTool.toolGroupId

Defined in

tools/src/tools/base/BaseTool.ts:21


toolName

static toolName: any

Overrides

BaseTool.toolName

Defined in

tools/src/tools/segmentation/BrushTool.ts:77

Methods

acceptPreview()

acceptPreview(element): void

Accepts a preview, marking it as the active segment.

Parameters

element: HTMLDivElement = ...

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:733


applyActiveStrategy()

applyActiveStrategy(enabledElement, operationData): any

Applies the active strategy function to the enabled element with the specified operation data.

Parameters

enabledElement: IEnabledElement

The element that is being operated on.

operationData: unknown

The data that needs to be passed to the strategy.

Returns

any

The result of the strategy.

Inherited from

BaseTool.applyActiveStrategy

Defined in

tools/src/tools/base/BaseTool.ts:69


applyActiveStrategyCallback()

applyActiveStrategyCallback(enabledElement, operationData, callbackType, ...extraArgs): any

Applies the active strategy, with a given event type being applied. The event type function is found by indexing it on the active strategy function.

Parameters

enabledElement: IEnabledElement

The element that is being operated on.

operationData: unknown

The data that needs to be passed to the strategy.

callbackType: string

the type of the callback

• ...extraArgs: any[]

Returns

any

The result of the strategy.

Inherited from

BaseTool.applyActiveStrategyCallback

Defined in

tools/src/tools/base/BaseTool.ts:93


createEditData()

createEditData(element): object | object | object

Parameters

element: any

Returns

object | object | object

Defined in

tools/src/tools/segmentation/BrushTool.ts:201


getOperationData()

protected getOperationData(element?): object | object | object | object

Parameters

element?: any

Returns

object | object | object | object

Defined in

tools/src/tools/segmentation/BrushTool.ts:563


getStatistics()

getStatistics(element, segmentIndices?): any

Parameters

element: any

segmentIndices?: any

Returns

any

Defined in

tools/src/tools/segmentation/BrushTool.ts:698


getTargetId()

protected getTargetId(viewport): string

Get the target Id for the viewport which will be used to store the cached statistics scoped to that target in the annotations. For StackViewport, targetId is the viewportId, but for the volume viewport, the targetId will be grabbed from the volumeId if particularly specified in the tool configuration, or if not, the first actorUID in the viewport.

Parameters

viewport: Viewport

viewport to get the targetId for

Returns

string

targetId

Inherited from

BaseTool.getTargetId

Defined in

tools/src/tools/base/BaseTool.ts:205


getTargetImageData()

protected getTargetImageData(targetId): IImageData | CPUIImageData

Get the image that is displayed for the targetId in the cachedStats which can be

  • imageId:<imageId>
  • volumeId:<volumeId>
  • videoId:<basePathForVideo>/frames/<frameSpecifier>

Parameters

targetId: string

annotation targetId stored in the cached stats

Returns

IImageData | CPUIImageData

The image data for the target.

Inherited from

BaseTool.getTargetImageData

Defined in

tools/src/tools/base/BaseTool.ts:148


getToolName()

getToolName(): string

Returns the name of the tool

Returns

string

The name of the tool.

Inherited from

BaseTool.getToolName

Defined in

tools/src/tools/base/BaseTool.ts:57


invalidateBrushCursor()

invalidateBrushCursor(): void

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:784


mouseMoveCallback()

mouseMoveCallback(evt): void

This call will be made when the mouse moves and the tool is active, but not actually drawing at the moment. The behavior is:

  1. Update the cursor
  2. Call the active strategy event 'preview' and 'rejectPreview' on the mouse cursor position on a periodic basis to create a preview when configured to do so.

The preview will be shown after the mouse has been stationary for 250 ms. Any preview will be cancelled (immediately) after moving outside the center distance. As well, if the mouse moves but stays inside the center area for 250 ms, then the cancel will happen with a new preview being added.

See mouse up details for how the preview gets accepted.

The preview also needs to be cancelled on changing tools.

Parameters

evt: InteractionEventType

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:389


onSetToolDisabled()

onSetToolDisabled(evt): void

Parameters

evt: any

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:192


onSetToolEnabled()

onSetToolEnabled(): void

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:188


onSetToolPassive()

onSetToolPassive(evt): void

Parameters

evt: any

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:184


preMouseDownCallback()

preMouseDownCallback(evt): boolean

Parameters

evt: MouseDownActivateEventType

Returns

boolean

Defined in

tools/src/tools/segmentation/BrushTool.ts:336


previewCallback()

previewCallback(): void

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:428


redo()

redo(): void

Redo an action (undo the undo)

Returns

void

Inherited from

BaseTool.redo

Defined in

tools/src/tools/base/BaseTool.ts:226


rejectPreview()

rejectPreview(element): void

Cancels any preview view being shown, resetting any segments being shown.

Parameters

element: HTMLDivElement = ...

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:716


renderAnnotation()

renderAnnotation(enabledElement, svgDrawingHelper): void

Parameters

enabledElement: IEnabledElement

svgDrawingHelper: SVGDrawingHelper

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:799


setActiveStrategy()

setActiveStrategy(strategyName): void

Sets the active strategy for a tool. Strategies are multiple implementations of tool behavior that can be switched by tool configuration.

Parameters

strategyName: string

name of the strategy to be set as active

Returns

void

Inherited from

BaseTool.setActiveStrategy

Defined in

tools/src/tools/base/BaseTool.ts:134


setConfiguration()

setConfiguration(newConfiguration): void

merges the new configuration with the tool configuration

Parameters

newConfiguration: Record<string, any>

Returns

void

Inherited from

BaseTool.setConfiguration

Defined in

tools/src/tools/base/BaseTool.ts:120


undo()

undo(): void

Undo an action

Returns

void

Inherited from

BaseTool.undo

Defined in

tools/src/tools/base/BaseTool.ts:218


updateCursor()

protected updateCursor(evt): void

Updates the cursor position and whether it is showing or not. Can be over-ridden to add more cursor details or a preview.

Parameters

evt: InteractionEventType

Returns

void

Defined in

tools/src/tools/segmentation/BrushTool.ts:508


createZoomPanMemo()

static createZoomPanMemo(viewport): object

Parameters

viewport: any

Returns

object

restoreMemo()

restoreMemo: () => void

Returns

void

Inherited from

BaseTool.createZoomPanMemo

Defined in

tools/src/tools/base/BaseTool.ts:230