Skip to content

Commit

Permalink
Merge branch 'release-0.1.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
mcvaneede committed Apr 22, 2015
2 parents 8a5ffdd + fc97865 commit 42a5ad7
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "minc-scripts-jscholz"]
path = minc-scripts-jscholz
url = https://github.com/jan-scholz/minc-scripts.git
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
New in Version 0.1.7
====================
* added vtk_meshconvert.py a program that can be used to convert between BIC obj, stl and vtk meshes
* added bayes_intensity_update a program that updates an image based on prior knowledge coming from a population (and its stdev)

New in Version 0.1.6
====================
* fixes egg-info file issues. The minc-stuffs version information will be produced correctly now
Expand Down
19 changes: 19 additions & 0 deletions README → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@ minc-stuffs is repository that houses scripts and bits of code that are useful f
This code is licensed under the 3-clause BSD License.
http://opensource.org/licenses/BSD-3-Clause

Prerequisites:
--------------
In order to run vtk_meshconvert.py you need to have VTK installed. This can be done using (April 2015):
<pre><code>
sudo apt-get install libvtk5-dev python-vtk
</pre></code>

Installing from github:
-----------------------
<pre><code>
git clone --recursive https://github.com/Mouse-Imaging-Centre/minc-stuffs.git
</pre></code>
or
<pre><code>
git clone https://github.com/Mouse-Imaging-Centre/minc-stuffs.git
cd minc-stuffs
git submodule update --init --recursive
</pre></code>

To build and install the perl and src code:
------------------------------------------
./autogen.sh
Expand Down
1 change: 1 addition & 0 deletions minc-scripts-jscholz
Submodule minc-scripts-jscholz added at 8a87e1
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
m.Extension.__dict__ = m._Extension.__dict__

setup(name="python-stuffs",
version='0.1.6',
version='0.1.7',
scripts=["python/TFCE",
"python/smooth_vector",
"python/measure_xcorr",
Expand All @@ -23,7 +23,8 @@
"python/volumes_from_labels_only",
"python/voxel_vote",
"python/replace_label_with_nearest_valid_label",
"python/rotational_minctracc.py"],
"python/rotational_minctracc.py",
"minc-scripts-jscholz/vtk_meshconvert.py"],
cmdclass = {'build_ext': build_ext},
ext_modules = [Extension("cython_functions", ["python/cython_functions.pyx"], include_dirs=[numpy.get_include()])]
)

0 comments on commit 42a5ad7

Please sign in to comment.