The imaging suite repository contains the core functionality sources for and documentation related to MuhRec, KipTool, and nGITool. The project has a public webpage where you get some more information.
Python bindings are implemented to allow the use of the modules in python. The bindings are implemented using PYBIND11 and you need to use cmake to build them.
Create build and install folders in the path
where you want them
mkdir <path>/build
mkdir <path>/install
The cmake file to build the backprojector bindings located located in the folder imagingsuite/framework/tomography
.
Steps to build:
cmake ../imagingsuite -DCMAKE_INSTALL_PREFIX=../install -DDYNAMIC_LIB=ON -DCMAKE_PREFIX_PATH=<path to Qt version>/macos
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../install -DDYNAMIC_LIB=ON
cmake --build . --target install
cd ..
cd install/lib
for f in `ls *.1.0.0.*`; do ln -s $f `basename $f .1.0.0.dylib`.1.dylib; done
cd ../python PYTHONPATH=$PYTHONPATH:../install python3
import imgalg
import muhrectomo