├── .gitignore ├── README.md ├── binary-swap-algorithm-cluster-with-mpi ├── Makefile ├── binswap.cpp ├── binswap.h ├── definicie.h ├── farba.cpp ├── farba.h ├── funkcie.cpp ├── funkcie.h ├── kdtree.cpp ├── kdtree.h ├── main.cpp ├── procesor.cpp ├── procesor.h ├── vektor3.cpp └── vektor3.h ├── binary-swap-algorithm-local ├── Makefile ├── binswap.cpp ├── binswap.h ├── definicie.h ├── farba.cpp ├── farba.h ├── funkcie.cpp ├── funkcie.h ├── kdtree.cpp ├── kdtree.h ├── main.cpp ├── procesor.cpp ├── procesor.h ├── vektor3.cpp └── vektor3.h ├── distance-volume-algorithm ├── DistanceVolume2D │ ├── DistanceVolume.sln │ ├── DistanceVolume.vcxproj │ ├── distanceVolume.cpp │ ├── distanceVolume.h │ └── main.cpp ├── DistanceVolume3D │ ├── DistanceVolume.sln │ ├── DistanceVolume.vcxproj │ ├── distanceVolume.cpp │ ├── distanceVolume.h │ └── main.cpp └── README ├── images ├── biological-data-bezier-curve-for-threshold.jpg ├── biological-data-red.jpg ├── comparison-of-bezier-threshold-biological-data.jpg ├── no-threshold-vs-threshold.jpg └── syntetic-volume-data-cube-in-cube.jpg ├── lsm-reader ├── loadlsm.cpp ├── loadlsm.h └── loadlsm.sln ├── parallel-volume-renderer ├── include │ ├── bezier.h │ ├── binswap.h │ ├── data.h │ ├── definicie.h │ ├── distanceVolume.h │ ├── farba.h │ ├── funkcie.h │ ├── init.h │ ├── kamera.h │ ├── kdtree.h │ ├── kvader.h │ ├── loadlsm.h │ ├── matica.h │ ├── procesor.h │ ├── ray.h │ ├── raycaster.h │ ├── shader.h │ ├── svetlo.h │ ├── timer.h │ └── vektor3.h └── src │ ├── Makefile │ ├── bezier.cpp │ ├── binswap.cpp │ ├── data.cpp │ ├── distanceVolume.cpp │ ├── farba.cpp │ ├── funkcie.cpp │ ├── init.cpp │ ├── kamera.cpp │ ├── kdtree.cpp │ ├── kvader.cpp │ ├── loadlsm.cpp │ ├── main.cpp │ ├── matica.cpp │ ├── procesor.cpp │ ├── ray.cpp │ ├── raycaster.cpp │ ├── shader.cpp │ ├── svetlo.cpp │ ├── timer.cpp │ └── vektor3.cpp ├── raycaster-local-linux-version ├── include │ ├── bezier.h │ ├── data.h │ ├── definicie.h │ ├── distanceVolume.h │ ├── farba.h │ ├── funkcie.h │ ├── kamera.h │ ├── kvader.h │ ├── loadlsm.h │ ├── matica.h │ ├── ray.h │ ├── raycaster.h │ ├── rc_linux.h │ ├── shader.h │ ├── svetlo.h │ ├── timer.h │ └── vektor3.h └── src │ ├── Makefile │ ├── bezier.cpp │ ├── data.cpp │ ├── distanceVolume.cpp │ ├── farba.cpp │ ├── funkcie.cpp │ ├── kamera.cpp │ ├── kvader.cpp │ ├── loadlsm.cpp │ ├── matica.cpp │ ├── ray.cpp │ ├── raycaster.cpp │ ├── rc_linux.cpp │ ├── shader.cpp │ ├── svetlo.cpp │ ├── timer.cpp │ └── vektor3.cpp └── vizualizacia_dat_z_konfokalneho_mikroskopu-slavomir-hudak.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/README.md -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/Makefile -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/binswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/binswap.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/binswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/binswap.h -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/definicie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/definicie.h -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/farba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/farba.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/farba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/farba.h -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/funkcie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/funkcie.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/funkcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/funkcie.h -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/kdtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/kdtree.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/kdtree.h -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/main.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/procesor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/procesor.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/procesor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/procesor.h -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/vektor3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/vektor3.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-cluster-with-mpi/vektor3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-cluster-with-mpi/vektor3.h -------------------------------------------------------------------------------- /binary-swap-algorithm-local/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/Makefile -------------------------------------------------------------------------------- /binary-swap-algorithm-local/binswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/binswap.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-local/binswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/binswap.h -------------------------------------------------------------------------------- /binary-swap-algorithm-local/definicie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/definicie.h -------------------------------------------------------------------------------- /binary-swap-algorithm-local/farba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/farba.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-local/farba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/farba.h -------------------------------------------------------------------------------- /binary-swap-algorithm-local/funkcie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/funkcie.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-local/funkcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/funkcie.h -------------------------------------------------------------------------------- /binary-swap-algorithm-local/kdtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/kdtree.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-local/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/kdtree.h -------------------------------------------------------------------------------- /binary-swap-algorithm-local/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/main.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-local/procesor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/procesor.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-local/procesor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/procesor.h -------------------------------------------------------------------------------- /binary-swap-algorithm-local/vektor3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/vektor3.cpp -------------------------------------------------------------------------------- /binary-swap-algorithm-local/vektor3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/binary-swap-algorithm-local/vektor3.h -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume2D/DistanceVolume.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume2D/DistanceVolume.sln -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume2D/DistanceVolume.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume2D/DistanceVolume.vcxproj -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume2D/distanceVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume2D/distanceVolume.cpp -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume2D/distanceVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume2D/distanceVolume.h -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume2D/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume2D/main.cpp -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume3D/DistanceVolume.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume3D/DistanceVolume.sln -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume3D/DistanceVolume.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume3D/DistanceVolume.vcxproj -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume3D/distanceVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume3D/distanceVolume.cpp -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume3D/distanceVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume3D/distanceVolume.h -------------------------------------------------------------------------------- /distance-volume-algorithm/DistanceVolume3D/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/DistanceVolume3D/main.cpp -------------------------------------------------------------------------------- /distance-volume-algorithm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/distance-volume-algorithm/README -------------------------------------------------------------------------------- /images/biological-data-bezier-curve-for-threshold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/images/biological-data-bezier-curve-for-threshold.jpg -------------------------------------------------------------------------------- /images/biological-data-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/images/biological-data-red.jpg -------------------------------------------------------------------------------- /images/comparison-of-bezier-threshold-biological-data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/images/comparison-of-bezier-threshold-biological-data.jpg -------------------------------------------------------------------------------- /images/no-threshold-vs-threshold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/images/no-threshold-vs-threshold.jpg -------------------------------------------------------------------------------- /images/syntetic-volume-data-cube-in-cube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/images/syntetic-volume-data-cube-in-cube.jpg -------------------------------------------------------------------------------- /lsm-reader/loadlsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/lsm-reader/loadlsm.cpp -------------------------------------------------------------------------------- /lsm-reader/loadlsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/lsm-reader/loadlsm.h -------------------------------------------------------------------------------- /lsm-reader/loadlsm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/lsm-reader/loadlsm.sln -------------------------------------------------------------------------------- /parallel-volume-renderer/include/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/bezier.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/binswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/binswap.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/data.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/definicie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/definicie.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/distanceVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/distanceVolume.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/farba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/farba.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/funkcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/funkcie.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/init.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/kamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/kamera.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/kdtree.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/kvader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/kvader.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/loadlsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/loadlsm.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/matica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/matica.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/procesor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/procesor.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/ray.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/raycaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/raycaster.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/shader.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/svetlo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/svetlo.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/timer.h -------------------------------------------------------------------------------- /parallel-volume-renderer/include/vektor3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/include/vektor3.h -------------------------------------------------------------------------------- /parallel-volume-renderer/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/Makefile -------------------------------------------------------------------------------- /parallel-volume-renderer/src/bezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/bezier.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/binswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/binswap.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/data.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/distanceVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/distanceVolume.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/farba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/farba.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/funkcie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/funkcie.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/init.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/kamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/kamera.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/kdtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/kdtree.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/kvader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/kvader.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/loadlsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/loadlsm.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/main.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/matica.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/matica.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/procesor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/procesor.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/ray.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/raycaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/raycaster.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/shader.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/svetlo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/svetlo.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/timer.cpp -------------------------------------------------------------------------------- /parallel-volume-renderer/src/vektor3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/parallel-volume-renderer/src/vektor3.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/bezier.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/data.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/definicie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/definicie.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/distanceVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/distanceVolume.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/farba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/farba.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/funkcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/funkcie.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/kamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/kamera.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/kvader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/kvader.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/loadlsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/loadlsm.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/matica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/matica.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/ray.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/raycaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/raycaster.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/rc_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/rc_linux.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/shader.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/svetlo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/svetlo.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/timer.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/include/vektor3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/include/vektor3.h -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/Makefile -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/bezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/bezier.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/data.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/distanceVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/distanceVolume.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/farba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/farba.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/funkcie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/funkcie.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/kamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/kamera.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/kvader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/kvader.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/loadlsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/loadlsm.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/matica.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/matica.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/ray.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/raycaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/raycaster.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/rc_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/rc_linux.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/shader.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/svetlo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/svetlo.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/timer.cpp -------------------------------------------------------------------------------- /raycaster-local-linux-version/src/vektor3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/raycaster-local-linux-version/src/vektor3.cpp -------------------------------------------------------------------------------- /vizualizacia_dat_z_konfokalneho_mikroskopu-slavomir-hudak.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/parallel-volume-rendering/HEAD/vizualizacia_dat_z_konfokalneho_mikroskopu-slavomir-hudak.pdf --------------------------------------------------------------------------------