BrainTissueExtension problem with installation

The problem I have is that when I try to install the BrainTissueExtension in Extension Wizard, it only recognizes one of the three modules it contains. The problem is that to make use of some of these modules depends on the rest, so, if you want to use it, it does not work because it does not find the rest of modules.
I have noticed, that the only module it recognizes is the one containing a .py file, while the rest of modules do not, because they have .cxx and .h files and I do not know if this could be the problem.

Anyway, I would like to see if someone can help me to be able to install the extension completely.

The gitHub repository: GitHub - CSIM-Toolkits/BrainTissuesExtension: 3D Slicer extension to segment different brain structures and tissues in MRI structural images.

I leave some captures attached:
cap11

Thanks!

The extension contains a module implemented in C++, which must be compiled before Slicer can load it. You have a couple of options:

  • build the extension on your computer: you need to build Slicer first
  • submit it to the extension manager so that Slicer build machines create the extension package that you can install from the extension manager; probably the best if you ask the authors of the extension to do this
  • port the C++ module to Python: if all ITK filters that the module uses are available in SimpleITK, then this should be quite straightforward