Skip to content

Commit

Permalink
ADD: First version of InVesalius 3 code by Tati, Paulo & Thiago.
Browse files Browse the repository at this point in the history
  • Loading branch information
tatiana committed Jun 10, 2009
0 parents commit 8da812b
Show file tree
Hide file tree
Showing 63 changed files with 12,389 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
* text=auto !eol
/AUTHORS.txt -text
/HEADER.txt -text
/INSTALL.txt -text
/LICENSE-pt.txt -text
/LICENSE.txt -text
/NEWS.txt -text
/README.txt -text
/TODO.txt -text
docs/devel/example_closure.py -text
docs/devel/example_pubsub.py -text
docs/devel/example_singleton.py -text
docs/devel/example_singleton_pubsub.py -text
docs/devel/sendmessages.txt -text
docs/devel/subscribes.txt -text
icons/brush_circle.jpg -text
icons/brush_square.jpg -text
icons/invesalius.ico -text
icons/object_colour.jpg -text
icons/object_invisible.jpg -text
icons/object_visible.jpg -text
invesalius/constants.py -text
invesalius/control.py -text
invesalius/data/__init__.py -text
invesalius/data/editor.py -text
invesalius/data/imagedata_utils.py -text
invesalius/data/mask.py -text
invesalius/data/orientation.py -text
invesalius/data/polydata_utils.py -text
invesalius/data/slice_.py -text
invesalius/data/styles.py -text
invesalius/data/surface.py -text
invesalius/data/viewer.py -text
invesalius/data/viewer_slice.py -text
invesalius/data/viewer_volume.py -text
invesalius/data/volume.py -text
invesalius/data/volume_widgets.py -text
invesalius/data/vtk_utils.py -text
invesalius/gui/__init__.py -text
invesalius/gui/data_notebook.py -text
invesalius/gui/default_tasks.py -text
invesalius/gui/default_viewers.py -text
invesalius/gui/frame.py -text
invesalius/gui/import_data_wizard.py -text
invesalius/gui/task_exporter.py -text
invesalius/gui/task_generic.py -text
invesalius/gui/task_importer.py -text
invesalius/gui/task_slice.py -text
invesalius/gui/task_surface.py -text
invesalius/gui/task_tools.py -text
invesalius/gui/widgets/__init__.py -text
invesalius/gui/widgets/foldpanelbar.py -text
invesalius/gui/widgets/gradient.py -text
invesalius/gui/widgets/listctrl.py -text
invesalius/invesalius.py -text
invesalius/presets.py -text
invesalius/project.py -text
invesalius/reader/__init__.py -text
invesalius/reader/analyze_reader.py -text
invesalius/reader/dicom.py -text
invesalius/reader/dicom_grouper.py -text
invesalius/reader/dicom_reader.py -text
invesalius/utils.py -text
28 changes: 28 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
InVesalius was originally created in late 2002 at CenPRA,the Renato Archer
Research Centre, of the Ministry of Science and Technology in Campinas, Brazil. Since November 2008, InVesalius 3 has been written from 0. This list represents only people involved with this development on.

The PRIMARY AUTHORS of InVesalius 3 are (and/or have been):

* Tatiana Al-Chueyr Pereira Martins
* Paulo Henrique Junqueira Amorim
* Thiago Franco de Moraes

More information on the main contributors to InVesalius can be found in
docs/internals/committers.txt.

And here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS:
people who have submitted patches, reported bugs, added translations, helped
answer newbie questions, and generally made InVesalius that much better:

Mathieu Malaterre <[email protected]>

A big THANK YOU goes to:

CTI Renato Archer directors for letting us open-source InVesalius.

Glauber Costa de Oliveira and Corinto Meffe for free software advices.

Robin Dunn for the marriage of the Python programming language and the
wxWindows, in the form of wxPython

Guido van Rossum for creating Python.
32 changes: 32 additions & 0 deletions HEADER.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#--------------------------------------------------------------------------
# Software: InVesalius - Software de Reconstrucao 3D de Imagens Medicas
# Copyright: (C) 2001 Centro de Pesquisas Renato Archer
# Homepage: http://www.softwarepublico.gov.br
# Contact: [email protected]
# License: GNU - GPL 2 (LICENSE.txt/LICENCA.txt)
#--------------------------------------------------------------------------
# Este programa e software livre; voce pode redistribui-lo e/ou
# modifica-lo sob os termos da Licenca Publica Geral GNU, conforme
# publicada pela Free Software Foundation; de acordo com a versao 2
# da Licenca.
#
# Este programa eh distribuido na expectativa de ser util, mas SEM
# QUALQUER GARANTIA; sem mesmo a garantia implicita de
# COMERCIALIZACAO ou de ADEQUACAO A QUALQUER PROPOSITO EM
# PARTICULAR. Consulte a Licenca Publica Geral GNU para obter mais
# detalhes.
#--------------------------------------------------------------------------


esta sendo discutida a possibilidade de insercao do cabecalho em ingles tambem... por enquanto nao colocar.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#----------------------------------------------------------------------------

23 changes: 23 additions & 0 deletions INSTALL.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# TODO: FUTURE!!!

Thanks for downloading InVesalius.

To install it, make sure you have Python 2.5 or greater installed. Then run
this command from the command prompt:

python setup.py install

Note this requires a working Internet connection if you don't already have the
Python utility "setuptools" installed.

AS AN ALTERNATIVE, you can just copy the entire "invesalius" directory to Python's
site-packages directory, which is located wherever your Python installation
lives. Some places you might check are:

/usr/lib/python2.5/site-packages (Unix, Python 2.5)
C:\\PYTHON\site-packages (Windows)

This second solution does not require a working Internet connection; it
bypasses "setuptools" entirely.

For more detailed instructions, see docs/intro/install.txt.
Loading

0 comments on commit 8da812b

Please sign in to comment.