A Medical Image Analysis Package
Project description
BioImage Suite Web -- Python Package
This is package exports much of functionality in BioImage Suite Web as a python package. This requires Python v3.5 or later.
You can invoke all modules from the commandline using the globally installed
executable biswebpy
. For example to run the image smoothing algorithm type
biswebpy smoothImage -h
The modules are also available for inclusion in your own code under the
namespace biswebpython
. The same smoothing filter, for example, can be
imported as:
from biswebpython.core.bis_objects import *
from biswebpython.modules.smoothImage import *
# Create and load an image
input=bisImage();
input.load(_SOME_INPUT_FILENAME_);
print('Input=',input.getDescription());
# Create and execute the smoothing module
smooth=smoothImage();
smooth.execute( { 'input' : input }, { 'sigma' : 4.0, 'debug' : True });
# Get and save the output
output=smooth.getOutputObject('output');
print('Output=',output.getDescription());
out.save(_SOME_OUTPUT_FILENAME_);
For more information on bisweb see:
- The source repository -- https://github.com/bioimagesuiteweb/bisweb
- The actual web application -- https://bioimagesuiteweb.github.io/webapp/
You may also take a look at the examples repository https://github.com/bioimagesuiteweb/examples.
BioImage Suite Web (bisweb) is a web-based medical image analysis suite primarily geared towards Neuroimaging Analysis. We gratefully acknowledge support from the NIH Brain Initiative under grant R24 MH114805 (Papademetris X. and Scheinost D. PIs).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file biswebpython-1.1.0b7-py3-none-any.whl
.
File metadata
- Download URL: biswebpython-1.1.0b7-py3-none-any.whl
- Upload date:
- Size: 771.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.36.0 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a9b14c8fc201cbce53239dc3fe461946cb4e271c0db72416a07e62e36a8682d |
|
MD5 | 5436e5f895890efbb1c590c4415a468e |
|
BLAKE2b-256 | c16b412e164ddb3774f53a3b99ed5163dd009e3ce4abd556ab7f496e796fa4f3 |