Minkyu Song/송민규

Results 12 comments of Minkyu Song/송민규

To correctly use @sisobus's answer, you need to understand that activeSegmentIndex refers to your brush colormap, and activeLabelmapIndex refers to your target labelmap. The codeline above assigns each labelmap a...

There is currently no tool like EraserBrush. Instead, pressing Ctrl button when brushing would do the job. Please check [HERE](https://github.com/cornerstonejs/cornerstoneTools/blob/3925399f72e69f69a4b108be10bfce115eda3247/src/tools/base/BaseBrushTool.js#L130-L132) To let brushTool always behave as eraser by configuration, the...

@huonghuong9296 Even If you have already set alwaysEraseOnClick to be true, doing this before the brush starts painting might not work for your purpose. Check these lines in BaseBrushTool that...

Below code snippet would work. The colorList variable is your custom colormap array of which member represents RGBA. ```javascript const segmentationModule = cornerstoneTools.getModule("segmentation") const { toggleSegmentVisibility, colorLUT: setColorLUT, activeSegmentIndex: setActiveSegmentIndex,...

Do you mean hounsfield unit by 'CT value'? Mostly a HU follows this rule ``` hu = pixel_value * slope + intercept ``` And cornerstoneTools DragProbeTool directly shows this value...

@ayamgorengtelur you might want to check the examples and their codelines on cornerstonetools [HERE](https://tools.cornerstonejs.org/examples/)

Maybe I should maintain my own repository and plugin-ize this SyncBrush in the near future. Thanks for compliment, @jpinxten

I finished plugin-izing this tool. Refer to [this issue](https://github.com/cornerstonejs/cornerstoneTools/issues/1372) #1372

Hello The lines you described are being maintained in vanilla cornerstoneTools library, namely **ReferenceLinesTool**. Check out this sample official implementation [HERE](https://tools.cornerstonejs.org/examples/tools/reference-lines.html). Don't forget to set synchronizer for this tool.

Hello, thank you for compliment. Could you elaborate more about 'rotation and MIP' ??