All Projects → EPfaehler → RaCat

EPfaehler / RaCat

Licence: other
No description or website provided.

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to RaCat

Why bump android minsdk
Why you should bump your Android app minsdk?
Stars: ✭ 226 (+1155.56%)
Mutual labels:  features
FeatureSwitch
FeatureSwitch is library that should reduce amount of time and code required to implement feature switching in your projects.
Stars: ✭ 54 (+200%)
Mutual labels:  features
PROSTATEx masks
Lesion and prostate masks for the PROSTATEx training dataset, after a lesion-by-lesion quality check.
Stars: ✭ 42 (+133.33%)
Mutual labels:  radiomics
Quantitative-Big-Imaging-2018
(Latest semester at https://github.com/kmader/Quantitative-Big-Imaging-2019) The material for the Quantitative Big Imaging course at ETHZ for the Spring Semester 2018
Stars: ✭ 50 (+177.78%)
Mutual labels:  radiomics
mastodo
A fork of the GNU Social/AP-compatible microblogging server
Stars: ✭ 29 (+61.11%)
Mutual labels:  features
stylish-hub
🍹 A browser extension that brings new GitHub features and experience.
Stars: ✭ 14 (-22.22%)
Mutual labels:  features
Flipper
🐬 Beautiful, performant feature flags for Ruby.
Stars: ✭ 2,732 (+15077.78%)
Mutual labels:  features
easylearn dev
Easylearn is designed for machine learning mainly in resting-state fMRI, radiomics and other fields (such as EEG). Easylearn is built on top of scikit-learn, pytorch and other packages. Easylearn can assist doctors and researchers who have limited coding experience to easily realize machine learning, e.g., (MR/CT/PET/EEG)imaging-marker- or other…
Stars: ✭ 29 (+61.11%)
Mutual labels:  radiomics
detect-features
Detect and report browser and hardware features.
Stars: ✭ 63 (+250%)
Mutual labels:  features
ITKTextureFeatures
Fast, Texture Feature Maps from N-Dimensional Images
Stars: ✭ 16 (-11.11%)
Mutual labels:  features
pyefd
Python implementation of "Elliptic Fourier Features of a Closed Contour"
Stars: ✭ 71 (+294.44%)
Mutual labels:  features
SlicerRadiomics
A Slicer extension to provide a GUI around pyradiomics
Stars: ✭ 83 (+361.11%)
Mutual labels:  radiomics
state-of-rust
The current state of Rust’s various stable/unstable features.
Stars: ✭ 16 (-11.11%)
Mutual labels:  features
Radiomics-research-by-using-Python
Radiomics (here mainly means hand-crafted based radiomics) contains data acquire, ROI segmentation, feature extraction, feature selection, machine learning modeling, and stastical analysis.
Stars: ✭ 27 (+50%)
Mutual labels:  radiomics
simple-features-geojson-java
Simple Features GeoJSON Java Library
Stars: ✭ 24 (+33.33%)
Mutual labels:  features
Renderman
Command line C++ and Python VSTi Host library with MFCC, FFT, RMS and audio extraction and .wav writing.
Stars: ✭ 225 (+1150%)
Mutual labels:  features
magisk-pixel2-features
A magisk module that provides Pixel 2 Features like Google Lens, Google Camera w/ Motion Pictures and Ambient Sense w/ Music Matching
Stars: ✭ 27 (+50%)
Mutual labels:  features
tsfeatures
Calculates various features from time series data. Python implementation of the R package tsfeatures.
Stars: ✭ 87 (+383.33%)
Mutual labels:  features
HALO-SCRIPT-PROJECTS
✅ Halo PC|CE - Add-ons for Phasor V2+ and SAPP 🇳🇿
Stars: ✭ 25 (+38.89%)
Mutual labels:  features
featurehub
FeatureHub - cloud native feature flags, A/B testing and remote configuration service. Real-time streaming feature updates. Provided with Java, JavaScript, Go, .Net, Android and Flutter SDKs.
Stars: ✭ 136 (+655.56%)
Mutual labels:  features

A detailed documentation about how to use RaCaT and how to run it from source can be found in the documentation folder. However, here a short overview:

In order to make the RaCaT run from source, follow the following steps:

  1. Clone Radiomics repository

Download the files of this repository.

  1. Get CMake CMake can be downloaded here: https://cmake.org/install/

  2. Get ITK Windows Here we only describe the installation using Microsoft Visual Studio. For all other compilers, check: https://itk.org/Wiki/ITK/Getting_Started/Build/Windows

    • Launch CMake GUI
    • Go to field "Where is the source code:", click "Browse Source..." and navigate to where you cloned the repository with Git.
    • Go to "Where to build the binaries:", select "Browse Build..." and select a place to build the ITK library. It should NOT be the same directory as the one where you cloned the repository.
    • Click "Configure", and then specify "Visual Studio x" as the generator for this project.
    • Choose your build options
    • Click "Generate".
    • Open Visual Studio x and open the ALL_BUILD project that is in the folder where you built the ITK project
    • Click F5 (run solution) 3.2 Linux
    • Download the ITK source code: https://itk.org/ITK/resources/software.html
    • unpack tarball: sudo tar xvzf InsightToolkit-3.14.0.tar.gz
    • Create a directory, where ITK should be built, e.g: sudo mkdir /usr/local/itk/InsightToolkit-3.14.0/ITK-build
    • Go to this directory and run ccmake: sudo ccmake -DITK_USE_REVIEW=ON
    • Press "c" to configure and "g" to generate
    • Then you can run ITK: sudo make
    • Then you can install ITK: sudo make install
  3. Get boost version 1_70_0 (thats important as the newer version have some problems with ITK!) The Radiomics Toolbox needs also the boost library. Download the source code from here: http://www.boost.org/users/history/version_1_61_0.html and unpack the folder. We have to install some boost libraries:

    • Go to the folder, where you unpacked the boost libraries
    • Go to the directory tools\build.
    • Run bootstrap.bat
    • Run b2 install --prefix=PREFIX where PREFIX is the directory where you want Boost.Build to be installed
    • Add PREFIX\bin to your PATH environment variable.

    Boost is installed.

  4. Use CMakeList to configure, generate and compile Radiomics.exe In order to run the radiomics code with the libraries, the following CMakeLists.txt file is required: The /PATH/TO elements have to be replaced by the corresponding paths on your computer.

    cmake_minimum_required(VERSION 2.8)

    project(Radiomics)

    SET (BOOST_ROOT /PATH/TO/BOOST)

    SET (BOOST_LIBRARYDIR "/PATH/TO/BOOST/stage/lib")

    SET (BOOST_MIN_VERSION "1.55.0")

    set (Boost_NO_BOOST_CMAKE ON)

    FIND_PACKAGE(Boost ${BOOST_MIN_VERSION} REQUIRED)

    if (NOT Boost_FOUND)

    message(FATAL_ERROR "Fatal error: Boost (version >= 1.55) required.")

    else()

    message(STATUS "Setting up BOOST")

    message(STATUS " Library - ${Boost_LIBRARY_DIRS}")

    include_directories(${Boost_INCLUDE_DIRS})

    link_directories(${Boost_LIBRARY_DIRS})

    endif (NOT Boost_FOUND)

    find_package(ITK REQUIRED)

    include(${ITK_USE_FILE})

    add_executable(Radiomics MACOSX_BUNDLE /PATH/TO/radiomics-master/main.cpp)

    target_link_libraries(Radiomics

    ${Boost_LIBRARIES} ${Glue} ${VTK_LIBRARIES} ${ITK_LIBRARIES})

    Open the CMAKE GUI.

  5. Run Radiomics.exe

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].