├── .gitignore ├── License.md ├── README.markdown ├── addon_config.mk ├── data └── ofxVolumetrics │ └── shaders │ ├── gl2 │ ├── raycast.frag │ └── raycast.vert │ └── gl3 │ ├── raycast.frag │ └── raycast.vert ├── ofxVolumetricsExample ├── addons.make ├── bin │ └── data │ │ ├── background.png │ │ └── volumes │ │ └── head │ │ ├── cthead-8bit001.tif │ │ ├── cthead-8bit002.tif │ │ ├── cthead-8bit003.tif │ │ ├── cthead-8bit004.tif │ │ ├── cthead-8bit005.tif │ │ ├── cthead-8bit006.tif │ │ ├── cthead-8bit007.tif │ │ ├── cthead-8bit008.tif │ │ ├── cthead-8bit009.tif │ │ ├── cthead-8bit010.tif │ │ ├── cthead-8bit011.tif │ │ ├── cthead-8bit012.tif │ │ ├── cthead-8bit013.tif │ │ ├── cthead-8bit014.tif │ │ ├── cthead-8bit015.tif │ │ ├── cthead-8bit016.tif │ │ ├── cthead-8bit017.tif │ │ ├── cthead-8bit018.tif │ │ ├── cthead-8bit019.tif │ │ ├── cthead-8bit020.tif │ │ ├── cthead-8bit021.tif │ │ ├── cthead-8bit022.tif │ │ ├── cthead-8bit023.tif │ │ ├── cthead-8bit024.tif │ │ ├── cthead-8bit025.tif │ │ ├── cthead-8bit026.tif │ │ ├── cthead-8bit027.tif │ │ ├── cthead-8bit028.tif │ │ ├── cthead-8bit029.tif │ │ ├── cthead-8bit030.tif │ │ ├── cthead-8bit031.tif │ │ ├── cthead-8bit032.tif │ │ ├── cthead-8bit033.tif │ │ ├── cthead-8bit034.tif │ │ ├── cthead-8bit035.tif │ │ ├── cthead-8bit036.tif │ │ ├── cthead-8bit037.tif │ │ ├── cthead-8bit038.tif │ │ ├── cthead-8bit039.tif │ │ ├── cthead-8bit040.tif │ │ ├── cthead-8bit041.tif │ │ ├── cthead-8bit042.tif │ │ ├── cthead-8bit043.tif │ │ ├── cthead-8bit044.tif │ │ ├── cthead-8bit045.tif │ │ ├── cthead-8bit046.tif │ │ ├── cthead-8bit047.tif │ │ ├── cthead-8bit048.tif │ │ ├── cthead-8bit049.tif │ │ ├── cthead-8bit050.tif │ │ ├── cthead-8bit051.tif │ │ ├── cthead-8bit052.tif │ │ ├── cthead-8bit053.tif │ │ ├── cthead-8bit054.tif │ │ ├── cthead-8bit055.tif │ │ ├── cthead-8bit056.tif │ │ ├── cthead-8bit057.tif │ │ ├── cthead-8bit058.tif │ │ ├── cthead-8bit059.tif │ │ ├── cthead-8bit060.tif │ │ ├── cthead-8bit061.tif │ │ ├── cthead-8bit062.tif │ │ ├── cthead-8bit063.tif │ │ ├── cthead-8bit064.tif │ │ ├── cthead-8bit065.tif │ │ ├── cthead-8bit066.tif │ │ ├── cthead-8bit067.tif │ │ ├── cthead-8bit068.tif │ │ ├── cthead-8bit069.tif │ │ ├── cthead-8bit070.tif │ │ ├── cthead-8bit071.tif │ │ ├── cthead-8bit072.tif │ │ ├── cthead-8bit073.tif │ │ ├── cthead-8bit074.tif │ │ ├── cthead-8bit075.tif │ │ ├── cthead-8bit076.tif │ │ ├── cthead-8bit077.tif │ │ ├── cthead-8bit078.tif │ │ ├── cthead-8bit079.tif │ │ ├── cthead-8bit080.tif │ │ ├── cthead-8bit081.tif │ │ ├── cthead-8bit082.tif │ │ ├── cthead-8bit083.tif │ │ ├── cthead-8bit084.tif │ │ ├── cthead-8bit085.tif │ │ ├── cthead-8bit086.tif │ │ ├── cthead-8bit087.tif │ │ ├── cthead-8bit088.tif │ │ ├── cthead-8bit089.tif │ │ ├── cthead-8bit090.tif │ │ ├── cthead-8bit091.tif │ │ ├── cthead-8bit092.tif │ │ ├── cthead-8bit093.tif │ │ ├── cthead-8bit094.tif │ │ ├── cthead-8bit095.tif │ │ ├── cthead-8bit096.tif │ │ ├── cthead-8bit097.tif │ │ ├── cthead-8bit098.tif │ │ └── cthead-8bit099.tif └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ofxaddons_thumbnail.png └── src ├── ofxImageSequencePlayer.h ├── ofxTexture3d.cpp ├── ofxTexture3d.h ├── ofxVolumetrics.cpp └── ofxVolumetrics.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/.gitignore -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/License.md -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/README.markdown -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/addon_config.mk -------------------------------------------------------------------------------- /data/ofxVolumetrics/shaders/gl2/raycast.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/data/ofxVolumetrics/shaders/gl2/raycast.frag -------------------------------------------------------------------------------- /data/ofxVolumetrics/shaders/gl2/raycast.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/data/ofxVolumetrics/shaders/gl2/raycast.vert -------------------------------------------------------------------------------- /data/ofxVolumetrics/shaders/gl3/raycast.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/data/ofxVolumetrics/shaders/gl3/raycast.frag -------------------------------------------------------------------------------- /data/ofxVolumetrics/shaders/gl3/raycast.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/data/ofxVolumetrics/shaders/gl3/raycast.vert -------------------------------------------------------------------------------- /ofxVolumetricsExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxVolumetrics 2 | -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/background.png -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit001.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit002.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit003.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit003.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit004.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit004.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit005.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit005.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit006.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit006.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit007.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit007.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit008.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit008.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit009.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit009.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit010.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit010.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit011.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit011.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit012.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit012.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit013.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit013.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit014.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit014.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit015.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit015.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit016.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit016.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit017.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit017.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit018.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit018.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit019.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit019.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit020.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit020.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit021.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit021.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit022.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit022.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit023.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit023.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit024.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit024.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit025.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit025.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit026.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit026.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit027.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit027.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit028.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit028.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit029.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit029.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit030.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit030.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit031.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit031.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit032.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit032.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit033.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit033.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit034.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit034.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit035.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit035.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit036.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit036.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit037.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit037.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit038.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit038.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit039.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit039.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit040.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit040.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit041.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit041.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit042.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit042.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit043.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit043.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit044.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit044.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit045.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit045.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit046.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit046.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit047.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit047.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit048.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit048.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit049.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit049.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit050.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit050.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit051.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit051.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit052.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit052.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit053.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit053.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit054.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit054.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit055.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit055.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit056.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit056.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit057.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit057.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit058.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit058.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit059.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit059.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit060.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit060.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit061.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit061.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit062.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit062.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit063.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit063.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit064.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit064.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit065.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit065.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit066.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit066.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit067.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit067.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit068.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit068.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit069.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit069.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit070.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit070.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit071.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit071.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit072.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit072.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit073.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit073.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit074.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit074.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit075.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit075.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit076.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit076.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit077.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit077.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit078.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit078.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit079.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit079.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit080.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit080.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit081.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit081.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit082.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit082.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit083.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit083.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit084.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit084.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit085.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit085.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit086.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit086.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit087.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit087.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit088.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit088.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit089.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit089.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit090.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit090.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit091.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit091.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit092.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit092.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit093.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit093.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit094.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit094.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit095.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit095.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit096.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit096.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit097.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit097.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit098.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit098.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit099.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/bin/data/volumes/head/cthead-8bit099.tif -------------------------------------------------------------------------------- /ofxVolumetricsExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/src/main.cpp -------------------------------------------------------------------------------- /ofxVolumetricsExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/src/ofApp.cpp -------------------------------------------------------------------------------- /ofxVolumetricsExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxVolumetricsExample/src/ofApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/ofxImageSequencePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/src/ofxImageSequencePlayer.h -------------------------------------------------------------------------------- /src/ofxTexture3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/src/ofxTexture3d.cpp -------------------------------------------------------------------------------- /src/ofxTexture3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/src/ofxTexture3d.h -------------------------------------------------------------------------------- /src/ofxVolumetrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/src/ofxVolumetrics.cpp -------------------------------------------------------------------------------- /src/ofxVolumetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscaffidi/ofxVolumetrics/HEAD/src/ofxVolumetrics.h --------------------------------------------------------------------------------