Kerim
Kerim
Box in 3D view is an actor controlled by vtkMRMLViewDisplayableManager. This manager also controls the renderer background color as well. Thus it was pretty easy to introduce this feature in...
Slicer (and SlicerCAT) comes with Python and Designer launchers. Thus they have `.ini` settings files that aimed to preliminary set environment variables and do other preparation before launching real executable....
There were issues with ABI of HDF5. The discussions about inclusion HDF5 as external project were discussed on [Discourse](https://discourse.slicer.org/t/slicercat-error-with-hdf5/23408/18). Also ITK's Eigen vars were exposed to allow SlicerCAT use the...
Before that it was impossible to bundle SlicerJupyter xeus error: "OpenSSL::Crypto" includes non-existent path "C:/C/r/OpenSSL-install/$(Configuration)/include" Now it is possible to pass CMAKE_BUILD_TYPE to overcome this
Before that line thickness of markups curve could only be fixed. Now it is possible to use scalars values as a variant radius. In this case we control: - minimal...
`ctkCheckableHeaderView` used to be missing in python #793. I modified CTK such that class constructor: `ctkCheckableHeaderView(Qt::Orientation, QWidget *parent)` is now accessible from python. Also I moved two overloaded methods `ctkCheckableHeaderView::checkState(...)`...
Hi, I'm a little newbie in C++. My configuration: Qt 5.14.1 on WIndows 10, MSVC 2017 x64 As I understood from [here ](http://commontk.org/index.php/Documentation/ctkTransferFunctionWidget) and [here](https://blog.kitware.com/give-your-cute-qt-gui-some-pop/) CTK also provides widgets for...
Hi, To use OpenMP I do the following: In `kernel.json`: ```json { "display_name": "C++14 OpenMP", "argv": [ "/home/axel/miniconda3/envs/cling/bin/xeus-cling", "-f", "{connection_file}", "-std=c++14", "-fopenmp" ], "language": "C++14" } ``` In jupyter notebook:...
Hi, I added SlicerJupyter to SlicerCAT and I was able to build it but when I run CPack I get an error: ``` ... CPack: - Run preinstall target for:...
Hi, I have simple class: ```cpp #ifndef __qColadaTreeTEST_h #define __qColadaTreeTEST_h // Qt includes #include // Colada includes #include "qColadaAppExport.h" // h5gt includes #include // has python bindings using pybind11 class...