Skip to content

Commit

Permalink
deploy: bdb1910
Browse files Browse the repository at this point in the history
  • Loading branch information
scheiblr committed May 29, 2024
1 parent c467708 commit c710d4c
Show file tree
Hide file tree
Showing 22 changed files with 23 additions and 517 deletions.
70 changes: 1 addition & 69 deletions authors/admin/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,72 +63,4 @@ Wedding shooting in 2017. Before I encoutered God, I never wanted to marry or ev
<li id="fn:Mat11-28-30"><a href="https://www.bibleserver.com/KJV/Matthew11%3A28-30" target="_blank">The Bible, Matthew 11:28-13</a>
<a class="footnote-return" href="#fnref:Mat11-28-30"><sup>^</sup></a></li>
</ol>
&lt;/div&gt;</description></item><item><title>Volume Renderer for use with MATLAB®</title><link>https://raphiniert.com/project/volume-renderer/</link><pubDate>Sat, 14 Jul 2012 17:09:58 +0100</pubDate><guid>https://raphiniert.com/project/volume-renderer/</guid><description>
&lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;
&lt;p&gt;&lt;em&gt;Volume Renderer for use with MATLAB®&lt;/em&gt; extends MATLAB® by a GPU-accelerated volume render command that handles 3D volumetric data. The core application is implemented in C/C++. To guarantee fast computations the render process computes on the GPU. This is realized by NVIDIA® CUDA®. Furthermore &lt;em&gt;Volume Renderer &lt;small&gt;for use with MATLAB®&lt;/small&gt;&lt;/em&gt; provides the following features:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Special memory management:&lt;/strong&gt; Due to restricted GPU memory and the requirement to render more than one volume in one scene, we developed a special memory management to enable the rendering of huge data sets in separate rendering passes. Afterward these separately rendered images are combined to one image using MATLAB®.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Generic illumination model:&lt;/strong&gt; We developed a generic illumination model that is easy to extend with other illumination functions. The provided function is the Heneyey-Greenstein phase function.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Stereo rendering:&lt;/strong&gt; In some use cases there is a nice feature to work with stereo images. Thus, the renderer offers the possibility to render off-axis stereo images.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;High usability:&lt;/strong&gt; To enable a high usability a MATLAB® interface consisting of several MATLAB® classes has been developed. Due to this interface it is uncomplicated to generate movies.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;More detailed explanation of the renderer and its background can be found in the documentation in the download section. We provide this software only for 64 bit Linux systems.&lt;br /&gt;
It was developed by Raphael Scheible supervised by Benjamin Ummenhofer and Junior-Prof Dr. Olaf Ronneberger and is maintained by Raphael Scheible.&lt;/p&gt;
&lt;h2 id=&#34;requirements&#34;&gt;Requirements&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;CUDA® capable NVIDIA® graphics device&lt;br /&gt;
&lt;small&gt;(at least Fermi™ architecture)&lt;/small&gt;&lt;/li&gt;
&lt;li&gt;Linux computer (64 bit) with installed NVIDIA® driver and CUDA® 4.2&lt;/li&gt;
&lt;li&gt;MATLAB® (*)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;small&gt;* tested and developed under R2010a; might work from 2009a as the OOP feature was introduced the renderer uses.&lt;/small&gt;&lt;/p&gt;
&lt;h2 id=&#34;example&#34;&gt;Example&lt;/h2&gt;
&lt;p&gt;The following video demonstrates the power of the renderer.&lt;br /&gt;
&lt;small&gt;provided by Benjamin Ummenhofer, data from &lt;a href=&#34;#references&#34;&gt;[1]&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
&lt;div style=&#34;position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;&#34;&gt;
&lt;iframe src=&#34;https://www.youtube.com/embed/HdYV1dY41qw&#34; style=&#34;position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;&#34; allowfullscreen title=&#34;YouTube Video&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;h2 id=&#34;download&#34;&gt;Download&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Documentation: &lt;a href=&#34;https://raphiniert.com/static/volume-renderer/volumerenderer-1.0.pdf&#34;&gt;documentation-1.0.pdf&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;md5sum: 5af53f26fe5965eb7ac9d69a2c0050be&lt;/small&gt;&lt;/li&gt;
&lt;li&gt;Software: &lt;a href=&#34;https://raphiniert.com/static/volume-renderer/vrm-1.0.tar.gz&#34;&gt;vrm-1.0.tar.gz&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;md5sum: f324f09f3b7845876e5caf50a71b2f12&lt;/small&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;installation&#34;&gt;Installation&lt;/h2&gt;
&lt;p&gt;Copy the files of src/matlab/ and bin/ into your current working folder. From this locationyou can now easily call the renderer.&lt;/p&gt;
&lt;p&gt;If you want to compile src/HeneyeyGreenstein.cc by yourself, use themex command in your MATLAB® environment:&lt;br /&gt;
&lt;strong&gt;mex&lt;/strong&gt; &lt;em&gt;inputfile&lt;/em&gt; -output &lt;em&gt;resultname&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;For a more detailed explanation of the mex command visit &lt;a href=&#34;http://www.mathworks.com/help/matlab/ref/mex.html&#34; target=&#34;_blank&#34;&gt;this website&lt;/a&gt; .&lt;/p&gt;
&lt;p&gt;Alternatively, you can use the HG.mexa64. This provides the command to build alookup table for the illumination setup. This is a compiled version of HeneyeyGrennstein.cc.&lt;br /&gt;
If you want to write your own illumination function, you can adaptHeneyeyGrennstein.cc accordingly.&lt;/p&gt;
&lt;h2 id=&#34;licence&#34;&gt;Licence&lt;/h2&gt;
&lt;p&gt;The provided matlab code and C-code for building the Heneyey-Greenstein LUT are released under &lt;a href=&#34;http://opensource.org/licenses/BSD-3-Clause&#34; target=&#34;_blank&#34;&gt;New BSD License&lt;/a&gt; .&lt;br /&gt;
The matlab binary files (render command and binary of Heneyey-Greenstein.h) are relesed under the following license:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;Copyright © 2012, Raphael Scheible All rights reserved.
Redistribution and use of the software, with or without modification, are permitted provided that
the following conditions are met:
1. Redistributions must reproduce the above copyright notice, this list of conditions and
the following disclaimer in the documentation and/or other materials provided with the distribution.
2. No names of contributors may be used to endorse or promote products derivedfrom this
software without specific prior written permission.
3. The project has to be non-commercial in which this softare is used.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &amp;quot;AS IS&amp;quot; AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;contact&#34;&gt;Contact&lt;/h2&gt;
&lt;p&gt;Feel free to contact &lt;a href=&#34;https://raphiniert.com/#contact&#34;&gt;Raphael Scheible&lt;/a&gt; with questions and issues. If you find a bug, please report it.&lt;/p&gt;
&lt;h3 id=&#34;using-volume-renderer-small-for-use-with-matlab-small&#34;&gt;Using &lt;em&gt;Volume Renderer &lt;small&gt;for use with MATLAB®&lt;/small&gt;&lt;/em&gt; ?&lt;/h3&gt;
&lt;p&gt;Please let me know if you are using &lt;em&gt;Volume Renderer &lt;small&gt;for use with MATLAB®&lt;/small&gt;&lt;/em&gt; as I am interested in how it is used in other research works.&lt;/p&gt;
&lt;h2 id=&#34;acknowledgments&#34;&gt;Acknowledgments&lt;/h2&gt;
&lt;p&gt;&lt;em&gt;Volume Renderer &lt;small&gt;for use with MATLAB®&lt;/small&gt;&lt;/em&gt; was developed as a student project by Raphael Scheible at University of Freiburg supervised by &lt;a href=&#34;http://lmb.informatik.uni-freiburg.de/people/ummenhof/&#34; target=&#34;_blank&#34;&gt;Benjamin Ummenhofer&lt;/a&gt; and &lt;a href=&#34;http://lmb.informatik.uni-freiburg.de/people/ronneber/&#34; target=&#34;_blank&#34;&gt;Junior-Prof. Dr. Olaf Ronneberger&lt;/a&gt; .&lt;/p&gt;
&lt;h2 id=&#34;references&#34;&gt;References&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a name=&#34;ref1&#34;&gt;&lt;/a&gt;Ronneberger, O and Liu, K and Rath, M and Ruess, D and Mueller, T and Skibbe, H and Drayer, B and Schmidt, T and Filippi, A and Nitschke, R and Brox, T and Burkhardt, H and Driever, W. &lt;strong&gt;&lt;a href=&#34;http://lmb.informatik.uni-freiburg.de//Publications/2012/RLSDSBB12&#34; target=&#34;_blank&#34;&gt;ViBE-Z: A Framework for 3D Virtual Colocalization Analysis in Zebrafish Larval Brains&lt;/a&gt; .&lt;/strong&gt; 2012. &lt;em&gt;Nature Methods,&lt;/em&gt; 9(7):735&amp;ndash;742.&lt;/li&gt;
&lt;/ol&gt;</description></item></channel></rss>
&lt;/div&gt;</description></item><item><title>Volume Renderer for use with MATLAB®</title><link>https://raphiniert.com/project/volume-renderer/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://raphiniert.com/project/volume-renderer/</guid><description/></item></channel></rss>
Loading

0 comments on commit c710d4c

Please sign in to comment.