GIBIS-UNIFESP / BIAL

Biomedical Image Analysis Library

Home Page:https://gibis-unifesp.github.io/BIAL

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Biomedical Image Analysis Library

Travis-build-status

The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on. With a intuitive user interface, a physician can make semi-automated diagnostics, segmentations, and apply sophisticated image processing filters using drag and drop features.

BIAL-GUI

Since it is an Open Source Library, its tools and functions can be used by developers, researchers and engineers to make their own applications.

Compiling BIAL

First, you will need Qt ( >= 5.6 ), an opensource C++ framework, that can be found in http://download.qt.io/.

The easiest way to install the library is opening the file "master.pro" on QtCreator, and selecting the "Build", according to the desired build mode (release or debug). Then, the library will be generated at BIAL/build/<linux/windows>/<release/debug>/lib, and the BIAL GUI will be found at BIAL/build/<linux/windows>/<release/debug>/bialgui.

Warning: As libbial.so is a shared library, you will need to add its path to LD_LIBRARY_PATH (or DYLD_LIBRARY_PATH os MAC OS), with the following command:

        export LD_LIBRARY_PATH=<BIAL_PATH>/build/<linux|windows>/<release|debug>/lib

Example: In a machine running ubuntu 16.04, you could download Qt 5.9, and compile the whole library and run a test example with the following commands:

    # In ubuntu Xenial Xerus 16.04 you could use the following commands to install Qt 5.9
    sudo add-apt-repository ppa:beineri/opt-qt591-xenial -y && sudo apt-get update;
    sudo apt update
    sudo apt install -y qt59base 
    
    

    #Downloading BIAL library from github
    git clone https://github.com/GIBIS-UNIFESP/BIAL

    cd BIAL
    # Generating the makefile with qmake
    qmake -r . 

    # Building the whole project
    make

    # Building a test binary
    cd tst
    make Image-Copy
    export LD_LIBRARY_PATH=../build/linux/release/lib
    ./bin/Image-Copy res/macaw.ppm dat/macaw.ppm

About

Biomedical Image Analysis Library

https://gibis-unifesp.github.io/BIAL

License:Other


Languages

Language:C++ 75.3%Language:C 14.5%Language:Makefile 3.1%Language:Assembly 1.9%Language:Ada 1.2%Language:Pascal 0.9%Language:C# 0.7%Language:Shell 0.5%Language:HTML 0.4%Language:DIGITAL Command Language 0.4%Language:QMake 0.3%Language:Objective-C 0.3%Language:NSIS 0.2%Language:CMake 0.1%Language:Roff 0.1%Language:CLIPS 0.1%Language:Perl 0.1%Language:SAS 0.0%Language:Module Management System 0.0%Language:M4 0.0%Language:Batchfile 0.0%Language:Dockerfile 0.0%