3D Rendering

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

3D Rendering

Dave Allen
Good Morning all,
As part of my PhD work I have used the 3D rendering tools in ImageJ to
create 3D renderings of x-ray topographic images.

In particular I use 3D project in the stack plugin suite and 3D viewer.

I am in the process now of writing my thesis and was wondering if anyone
could direct me to where I can find out exactly how these plugins work and
what algorithms they use.

If possible, and I know that this might not be, I would also like to get a
sample piece of the coding.

Thanks in advance

--
David Allen
Nanomaterials Processing Laboratory
Research Institute for Networks & Communications Engineering (RINCE)
School of Electronic Engineering
Dublin City University
Dublin 9

Ph: +353 1 700 5871;
Email: [hidden email]; [hidden email]
Reply | Threaded
Open this post in threaded view
|

Re: 3D Rendering

David M Gauntt
If these are not 3rd party plugins, but plugins that are part of the
ImageJ standard release, then the source code is available online at
http://rsbweb.nih.gov/ij/developer/index.html.

--
David M. Gauntt, Ph.D.
Associate Professor,
Division of Medical Physics and Engineering
UAB Department of Radiology

mailto:[hidden email]
205-975-3777







On 2/7/12 4:07 AM, "Dave Allen" <[hidden email]> wrote:

>Good Morning all,
>As part of my PhD work I have used the 3D rendering tools in ImageJ to
>create 3D renderings of x-ray topographic images.
>
>In particular I use 3D project in the stack plugin suite and 3D viewer.
>
>I am in the process now of writing my thesis and was wondering if anyone
>could direct me to where I can find out exactly how these plugins work and
>what algorithms they use.
>
>If possible, and I know that this might not be, I would also like to get a
>sample piece of the coding.
>
>Thanks in advance
>
>--
>David Allen
>Nanomaterials Processing Laboratory
>Research Institute for Networks & Communications Engineering (RINCE)
>School of Electronic Engineering
>Dublin City University
>Dublin 9
>
>Ph: +353 1 700 5871;
>Email: [hidden email]; [hidden email]
Reply | Threaded
Open this post in threaded view
|

Re: 3D Rendering

Kota Miura
In reply to this post by Dave Allen
On Tue, Feb 7, 2012 at 11:07 AM, Dave Allen <[hidden email]> wrote:

> Good Morning all,
> As part of my PhD work I have used the 3D rendering tools in ImageJ to
> create 3D renderings of x-ray topographic images.
>
> In particular I use 3D project in the stack plugin suite and 3D viewer.
>
> I am in the process now of writing my thesis and was wondering if anyone
> could direct me to where I can find out exactly how these plugins work and
> what algorithms they use.
>
> If possible, and I know that this might not be, I would also like to get a
> sample piece of the coding.
>
> Thanks in advance
>
> --
> David Allen
> Nanomaterials Processing Laboratory
> Research Institute for Networks & Communications Engineering (RINCE)
> School of Electronic Engineering
> Dublin City University
> Dublin 9
>
> Ph: +353 1 700 5871;
> Email: [hidden email]; [hidden email]

Hi David,

the website is

http://3dviewer.neurofly.de/

and there is a paper about the plugin written by Bene (he is the
author of this excellent plugin) in BMC Bioinformatics.

http://www.biomedcentral.com/qc/1471-2105/11/274

Javadoc is available at
http://132.187.25.13/ij3d/download/docs/index.html

HTH
Kota


--
-------------------------------------------------------------
Dr. Kota Miura

Scientist & IT Engineer
Centre for Molecular and Cellular Imaging,
European Molecular Biology Laboratory
Meyerhofstr. 1
69117 Heidelberg
GERMANY

Tel +49 6221 387 404

Mobile +49 160 95001177

Fax +49 6221 387 512

http://cmci.embl.de
-------------------------------------------------------------
Reply | Threaded
Open this post in threaded view
|

Re: 3D Rendering

Rasband, Wayne (NIH/NIMH) [E]
In reply to this post by Dave Allen
On Feb 7, 2012, at 5:07 AM, Dave Allen wrote:

> Good Morning all,
> As part of my PhD work I have used the 3D rendering tools in ImageJ to
> create 3D renderings of x-ray topographic images.
>
> In particular I use 3D project in the stack plugin suite and 3D viewer.
>
> I am in the process now of writing my thesis and was wondering if anyone
> could direct me to where I can find out exactly how these plugins work and
> what algorithms they use.
>
> If possible, and I know that this might not be, I would also like to get a
> sample piece of the coding.

The source code for the Image>Stacks>3D Project command is at

    http://imagej.nih.gov/ij/developer/source/ij/plugin/Projector.java.html

and documentation is at

    http://imagej.nih.gov/ij/docs/menus/image.html#project

The source code for the 3D Viewer is in the JAR file at

    ImageJ/plugins/3D/ImageJ_3D_Viewer.jar

or on the Fiji Git repository at

   http://fiji.sc/cgi-bin/gitweb.cgi?p=fiji.git;a=tree;f=src-plugins/3D_Viewer;hb=master

and documentation can be found at

    http://rsbweb.nih.gov/ij/plugins/3d-viewer/
    http://3dviewer.neurofly.de/
    http://fiji.sc/wiki/index.php/3D_Viewer

-wayne