https://github.com/neurolabusc/mricrogl10_old
DEPRECATED development has moved to https://github.com/rordenlab/MRIcroGL
https://github.com/neurolabusc/mricrogl10_old
archived deprecated dicom nifti-format obselete volume-ray-casting volume-rendering
Last synced: over 1 year ago
JSON representation
DEPRECATED development has moved to https://github.com/rordenlab/MRIcroGL
- Host: GitHub
- URL: https://github.com/neurolabusc/mricrogl10_old
- Owner: neurolabusc
- License: bsd-2-clause
- Created: 2015-09-27T23:10:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-12-15T20:26:04.000Z (over 5 years ago)
- Last Synced: 2025-01-13T09:09:12.817Z (over 1 year ago)
- Topics: archived, deprecated, dicom, nifti-format, obselete, volume-ray-casting, volume-rendering
- Language: Pascal
- Homepage: https://www.nitrc.org/plugins/mwiki/index.php/mricrogl:MainPage
- Size: 89.5 MB
- Stars: 59
- Watchers: 11
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MRIcroGL
##### Warning
 **This repository is for the old MRIcroGL 1.0 (which uses OpenGL 2.1). Development has moved to [MRIcroGL 1.2](https://github.com/rordenlab/MRIcroGL12) (which uses OpenGL 3.3).**
##### About
MRIcroGL is an open source volume ray caster. For details and compiled versions visit the [NITRC wiki](https://www.nitrc.org/plugins/mwiki/index.php/mricrogl:MainPage). You can also visit the [MRIcroGL home pages](http://www.mccauslandcenter.sc.edu/mricrogl/) which include [videos](http://www.mccauslandcenter.sc.edu/mricrogl/tutorials), [notes](http://www.mccauslandcenter.sc.edu/mricrogl/notese) and [troubleshooting advice](https://www.mccauslandcenter.sc.edu/mricrogl/troubleshooting).

##### Installation
You can download the latest release for Windows, MacOS or Linux from either of these sites:
- [Available from NITRC](https://www.nitrc.org/projects/mricrogl/).
- [Available from Github](https://github.com/neurolabusc/MRIcroGL/releases).
##### Compiling
Most users will want to use the pre-compiled executable (see the previous section). However, you can compile this yourself. Lazarus 2.0 or later is recommended.
```
lazbuild --verbose-pkgsearch lazopenglcontext --verbose-pkgsearch pascalscript
if [ $? -eq 0 ]
then
echo "required packages already installed"
else
echo "installing packages"
lazbuild --add-package lazopenglcontext --add-package pascalscript --build-ide=
fi
if [[ "$OSTYPE" == "darwin"* ]]; then
echo "macOS compiling for Cocoa, instead of default Carbon widgetset"
lazbuild -B --ws=cocoa ./simplelaz.lpr
else
lazbuild -B ./simplelaz.lpi
fi
```
##### License
This software includes a [BSD license](https://opensource.org/licenses/BSD-2-Clause).