Francisco Maria Calisto
Francisco Maria Calisto
Did you solve this issue?
As already mentioned here, I suggest the step scaling approach, which involves keeping an original copy of the image and creating scaled copies to work with. This technique is usually...
To clear a specific mark made by a tool, you can use the `removeToolState` function instead of `clearToolState`. The `removeToolState` function will remove a specific tool state from the state...
To solve this issue, you can use the [`clearToolState`](https://tools.cornerstonejs.org/api/#clearToolState) function. You have several [examples](https://snyk.io/advisor/npm-package/cornerstone-tools/functions/cornerstone-tools.clearToolState) and [issues](https://github.com/cornerstonejs/cornerstoneTools/issues/1193) concerning this problem, that you may follow. However, it seems a good option to...
To solve this issue, one approach is to use the `clearToolState` function from the `cornerstoneTools` library, which removes all `toolState` from the `toolStateManager` corresponding to the `toolName` and element. You...
You can also use the `ProbeTool` from CornerstoneTools to get the Hounsfield unit (HU) value of a pixel. The `ProbeTool` allows you to probe a single pixel and get its...
It looks like there is an error when the code is trying to access the third element of a list of parents (inputs) for the convolution operation. This error is...
Hi @pzehle, thanks for opening this issue and providing a detailed explanation of the behavior you're seeing. It was helpful to detect some [concerns in our prototypes](https://github.com/MIMBCD-UI) too. @dannyrb mentioned...
It seems like you're asking how to reset cornerstone before loading a new image stack without reloading the entire page. The suggested method for resetting cornerstone and its tools is...
As a matter of fact, I have already posted an answer on StackOverflow that addresses this issue: https://stackoverflow.com/a/73204850/2371987 In this answer, I explain how to use the `clearToolState` function to...