Header File Format

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

Header File Format

Ye Chen
Hello,
I am trying to understand the source code of TiffDecoder.java. It will be
easy for me to understand why it was coded like that if I know the format
of tiff header file. So is there anyone to know where I can find reference
to describe the format of Tiff header file as well as header file format
for other image types like JPEG, BMP.

Thanks in advance
Reply | Threaded
Open this post in threaded view
|

Re: Header File Format

Gino Canessa
Ye Chen,

Following is a link to a site I came across when I was looking up
something similar; it has information on many different (2D) file
formats.

http://www.dcs.ed.ac.uk/home/mxr/gfx/2d-hi.html

If you need information on 3D formats, the link is similar:

http://www.dcs.ed.ac.uk/home/mxr/gfx/3d-hi.html

Finally, the site itself lists some other helpful information:

http://www.dcs.ed.ac.uk/home/mxr/gfx/


Hope this helps,

        Gino


Gino Canessa
 
Software Engineering Corporation (SENCOR)
7900 International Drive - Suite 305
Bloomington, MN 55425
 
web:      www.sencorsoft.com or www.sencor.com
 
email:    [hidden email]
voice:    952.854.7175 ext. 204
fax:      952.854.7468
support:  [hidden email]
 

CONFIDENTIALITY NOTICE
 
This message and any included attachments are from SENCOR and
are intended only for the addressee. The information
contained in this message is confidential and may constitute
inside or non-public information under international,
federal, or state securities laws.  Unauthorized forwarding,
printing, copying, distribution, or use of such information
is strictly prohibited and may be unlawful.  If you are not
the intended recipient, please promptly delete this message
and notify the sender of the delivery error by e-mail or
may calling SENCOR's corporate offices in Bloomington,
Minnesota, U.S.A. at 952.854.7175.  Thank you.


-----Original Message-----
From: ImageJ Interest Group [mailto:[hidden email]] On Behalf Of Ye
Chen
Sent: Monday, August 01, 2005 1:12 PM
To: [hidden email]
Subject: Header File Format

Hello,
I am trying to understand the source code of TiffDecoder.java. It will
be easy for me to understand why it was coded like that if I know the
format of tiff header file. So is there anyone to know where I can find
reference to describe the format of Tiff header file as well as header
file format for other image types like JPEG, BMP.

Thanks in advance
Reply | Threaded
Open this post in threaded view
|

Re: Header File Format

rock fest
In reply to this post by Ye Chen
HEY THERE -  HERE IS A LINK TO AN ONLINE VERSION OF THE CLASSIC 'ENCYCLOPEDIA OF GRAPHIC FILE FORMATS'. IT EXPLAINS JUST ABOUT EVERY ASPECT OF EVERY FILE TYPE CURRENT IN THE LATE 90'S W/ COMPRESSION ALGORYTHMS, COLOR PALETTES, HEADERS THE WORKS, W/ DETAILED EXPLANATIONS. http://www.fileformat.info/mirror/egff/index.htm
- ALSO, FROM ELSEWHERE ON THIS SITE, AN EXCITING LINK SPECIFIC TO YOUR REQUEST http://www.libtiff.org/
Reply | Threaded
Open this post in threaded view
|

DICOM related Show Info question

Michal Lijowski
What does it mean if a tag from DICOM file in output from Show Info
is marked by >
e.g.

0020,0032  >Image Position (Patient): +0.000000e+000\+0.000000e+000\
+0.000000e+000
0020,0037  >Image Orientation (Patient): +0.000000e+000\+0.000000e+000\
+0.000000e+000\+0.000000e+000\+0.000000e+000\+0.000000e+000
0054,0200  >Start Angle: 180

  Thanks,

  Michal
Reply | Threaded
Open this post in threaded view
|

Re: DICOM related Show Info question

Wayne Rasband
> What does it mean if a tag from DICOM file in output from
> Show Info is marked by >
> e.g.
>
> 0020,0032  >Image Position (Patient): +0.000000e+000\+0.000000e+000\
> +0.000000e+000
> 0020,0037  >Image Orientation (Patient): +0.000000e+000\+0.000000e+000\
> +0.000000e+000\+0.000000e+000\+0.000000e+000\+0.000000e+000
> 0054,0200  >Start Angle: 180

It means that the tags are part of a sequence. In this example

    0054,0220  View Code Sequence:
    0008,0100  >Code Value: R-10242
    0008,0102  >Coding Scheme Designator: SNM3
    0008,0104  >Code Meaning: cranio-caudal

the Code Value, Code Scheme Designator and Code Meaning tags are in the
View Code Sequence.

-wayne