ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/ra_tiff.c
(Generate patch)

Comparing ray/src/px/ra_tiff.c (file contents):
Revision 2.20 by greg, Sat Feb 22 02:07:28 2003 UTC vs.
Revision 2.23 by greg, Mon Jul 14 04:56:54 2003 UTC

# Line 9 | Line 9 | static const char      RCSid[] = "$Id$";
9  
10   #include  <stdio.h>
11   #include  <math.h>
12 < #include  <time.h>
12 > #include  <ctype.h>
13   #include  "tiffio.h"
14   #include  "color.h"
15   #include  "resolu.h"
# Line 29 | Line 29 | static const char      RCSid[] = "$Id$";
29  
30   struct {
31          uint16  flags;          /* conversion flags (defined above) */
32 +        char    capdate[20];    /* capture date/time */
33 +        char    owner[256];     /* content owner */
34          uint16  comp;           /* TIFF compression type */
35          uint16  phot;           /* TIFF photometric type */
36          uint16  pconf;          /* TIFF planar configuration */
# Line 53 | Line 55 | struct {
55                  float   *fp;            /* float pointer */
56                  char    *p;             /* generic pointer */
57          } t;                    /* TIFF scanline */
58 <        int     (*tf)();        /* translation procedure */
58 >        void    (*tf)();        /* translation procedure */
59   }       cvts = {        /* conversion structure */
60 <        0, COMPRESSION_NONE, PHOTOMETRIC_RGB,
60 >        0, "", "", COMPRESSION_NONE, PHOTOMETRIC_RGB,
61          PLANARCONFIG_CONTIG, GAMCOR, 0, 1, 1., 1.,
62   };
63  
# Line 64 | Line 66 | struct {
66   #define CLR(f)          (cvts.flags &= ~(f))
67   #define TGL(f)          (cvts.flags ^= (f))
68  
69 < int     Luv2Color(), L2Color(), RGB2Colr(), Gry2Colr();
70 < int     Color2Luv(), Color2L(), Colr2RGB(), Colr2Gry();
71 < int     RRGGBB2Color(), GGry2Color();
69 > void    Luv2Color(), L2Color(), RGB2Colr(), Gry2Colr();
70 > void    Color2Luv(), Color2L(), Colr2RGB(), Colr2Gry();
71 > void    RRGGBB2Color(), GGry2Color(), Color2RRGGBB(), Color2GGry();
72  
73 + #define RfGfBf2Color    Luv2Color
74 + #define Gryf2Color      L2Color
75 + #define Color2Gryf      Color2L
76 + #define Color2RfGfBf    Color2Luv
77 +
78   short   ortab[8] = {            /* orientation conversion table */
79          YMAJOR|YDECR,
80          YMAJOR|YDECR|XDECR,
# Line 81 | Line 88 | short  ortab[8] = {            /* orientation conversion table */
88  
89   #define pixorder()      ortab[cvts.orient-1]
90  
91 + extern char     TMSTR[];        /* "CAPDATE=" from header.c */
92 + char            OWNSTR[] = "OWNER=";
93 +
94   char  *progname;
95  
96  
# Line 113 | Line 123 | char  *argv[];
123                                  cvts.comp = COMPRESSION_SGILOG24;
124                                  cvts.phot = PHOTOMETRIC_LOGLUV;
125                                  break;
126 +                        case 'w':               /* 16-bit/primary output? */
127 +                                TGL(C_TWRD);
128 +                                break;
129 +                        case 'f':               /* IEEE float output? */
130 +                                TGL(C_TFLT);
131 +                                break;
132                          case 'b':               /* greyscale output? */
133                                  TGL(C_GRY);
134                                  break;
# Line 143 | Line 159 | doneopts:
159  
160                  if (i != argc-2)
161                          goto userr;
162 <
163 <                if (CHK(C_GRY))         /* consistency corrections */
162 >                                                /* consistency checks */
163 >                if (CHK(C_GRY))
164                          if (cvts.phot == PHOTOMETRIC_RGB)
165                                  cvts.phot = PHOTOMETRIC_MINISBLACK;
166                          else {
167                                  cvts.phot = PHOTOMETRIC_LOGL;
168                                  cvts.comp = COMPRESSION_SGILOG;
169                          }
170 +                if (CHK(C_TWRD|C_TFLT) == (C_TWRD|C_TFLT))
171 +                        goto userr;
172  
173                  ra2tiff(i, argv);
174          }
# Line 158 | Line 176 | doneopts:
176          exit(0);
177   userr:
178          fprintf(stderr,
179 <        "Usage: %s [-z|-L|-l][-b][-e +/-stops][-g gamma] {in.pic|-} out.tif\n",
179 >        "Usage: %s [-z|-L|-l|-f|-w][-b][-e +/-stops][-g gamma] {in.pic|-} out.tif\n",
180                          progname);
181          fprintf(stderr,
182          "   Or: %s -r [-x][-e +/-stops][-g gamma] in.tif [out.pic|-]\n",
# Line 196 | Line 214 | allocbufs()                    /* allocate scanline buffers */
214   initfromtif()           /* initialize conversion from TIFF input */
215   {
216          uint16  hi;
217 +        char    *cp;
218          float   *fa, f1, f2;
219  
220 <        CLR(C_GRY|C_GAMMA|C_PRIM|C_RFLT|C_TFLT|C_CXFM);
220 >        CLR(C_GRY|C_GAMMA|C_PRIM|C_RFLT|C_TFLT|C_TWRD|C_CXFM);
221  
222          TIFFGetFieldDefaulted(cvts.tif, TIFFTAG_PLANARCONFIG, &cvts.pconf);
223  
# Line 271 | Line 290 | initfromtif()          /* initialize conversion from TIFF inpu
290                  if (!TIFFGetField(cvts.tif, TIFFTAG_SAMPLESPERPIXEL, &hi) ||
291                                  hi != 3)
292                          quiterr("unsupported samples per pixel for RGB");
293 <                if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi) ||
294 <                                hi != 8 & hi != 16)
295 <                        quiterr("unsupported bits per sample for RGB");
296 <                if (hi == 8)
293 >                if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi))
294 >                        hi = -1;
295 >                switch (hi) {
296 >                case 8:
297                          cvts.tf = RGB2Colr;
298 <                else {
298 >                        break;
299 >                case 16:
300                          cvts.tf = RRGGBB2Color;
301                          SET(C_RFLT|C_TWRD);
302 +                        break;
303 +                case 32:
304 +                        cvts.tf = RfGfBf2Color;
305 +                        SET(C_RFLT|C_TFLT);
306 +                        break;
307 +                default:
308 +                        quiterr("unsupported bits per sample for RGB");
309                  }
310                  break;
311          case PHOTOMETRIC_MINISBLACK:
# Line 288 | Line 315 | initfromtif()          /* initialize conversion from TIFF inpu
315                  if (!TIFFGetField(cvts.tif, TIFFTAG_SAMPLESPERPIXEL, &hi) ||
316                                  hi != 1)
317                          quiterr("unsupported samples per pixel for greyscale");
318 <                if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi) ||
319 <                                hi != 8 & hi != 16)
320 <                        quiterr("unsupported bits per sample for greyscale");
321 <                if (hi == 8)
318 >                if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi))
319 >                        hi = -1;
320 >                switch (hi) {
321 >                case 8:
322                          cvts.tf = Gry2Colr;
323 <                else {
323 >                        break;
324 >                case 16:
325                          cvts.tf = GGry2Color;
326                          SET(C_RFLT|C_TWRD);
327 +                        break;
328 +                case 32:
329 +                        cvts.tf = Gryf2Color;
330 +                        SET(C_RFLT|C_TFLT);
331 +                        break;
332 +                default:
333 +                        quiterr("unsupported bits per sample for Gray");
334                  }
335                  break;
336          default:
# Line 309 | Line 344 | initfromtif()          /* initialize conversion from TIFF inpu
344  
345          if (!TIFFGetField(cvts.tif, TIFFTAG_STONITS, &cvts.stonits))
346                  cvts.stonits = 1.;
347 +
348 +        if (!TIFFGetField(cvts.tif, TIFFTAG_DATETIME, &cp))
349 +                cvts.capdate[0] = '\0';
350 +        else {
351 +                strncpy(cvts.capdate, cp, 19);
352 +                cvts.capdate[19] = '\0';
353 +        }
354 +        if (!TIFFGetField(cvts.tif, TIFFTAG_ARTIST, &cp))
355 +                cvts.owner[0] = '\0';
356 +        else {
357 +                strncpy(cvts.owner, cp, sizeof(cvts.owner));
358 +                cvts.owner[sizeof(cvts.owner)-1] = '\0';
359 +        }
360                                          /* add to Radiance header */
361          if (cvts.pixrat < .99 || cvts.pixrat > 1.01)
362                  fputaspect(cvts.pixrat, cvts.rfp);
# Line 322 | Line 370 | initfromtif()          /* initialize conversion from TIFF inpu
370                                  cvts.rfp);
371                  fputformat(COLRFMT, cvts.rfp);
372          }
373 +        if (cvts.capdate[0])
374 +                fprintf(cvts.rfp, "%s %s\n", TMSTR, cvts.capdate);
375 +        if (cvts.owner[0])
376 +                fprintf(cvts.rfp, "%s %s\n", OWNSTR, cvts.owner);
377  
378          allocbufs();                    /* allocate scanline buffers */
379   }
# Line 361 | Line 413 | int
413   headline(s)                     /* process Radiance input header line */
414   char    *s;
415   {
416 +        static int      tmstrlen = 0;
417 +        static int      ownstrlen = 0;
418          char    fmt[32];
419  
420 +        if (!tmstrlen)
421 +                tmstrlen = strlen(TMSTR);
422 +        if (!ownstrlen)
423 +                ownstrlen = strlen(OWNSTR);
424          if (formatval(fmt, s)) {
425                  if (!strcmp(fmt, COLRFMT))
426                          CLR(C_XYZE);
# Line 385 | Line 443 | char   *s;
443                  SET(C_PRIM);
444                  return(1);
445          }
446 +        if (isdate(s)) {
447 +                if (s[tmstrlen] == ' ')
448 +                        strncpy(cvts.capdate, s+tmstrlen+1, 19);
449 +                else
450 +                        strncpy(cvts.capdate, s+tmstrlen, 19);
451 +                cvts.capdate[19] = '\0';
452 +                return(1);
453 +        }
454 +        if (!strncmp(s, OWNSTR, ownstrlen)) {
455 +                register char   *cp = s + ownstrlen;
456 +
457 +                while (isspace(*cp))
458 +                        ++cp;
459 +                strncpy(cvts.owner, cp, sizeof(cvts.owner));
460 +                cvts.owner[sizeof(cvts.owner)-1] = '\0';
461 +                for (cp = cvts.owner; *cp; cp++)
462 +                        ;
463 +                while (cp > cvts.owner && isspace(cp[-1]))
464 +                        *--cp = '\0';
465 +                return(1);
466 +        }
467          return(0);
468   }
469  
# Line 393 | Line 472 | initfromrad()                  /* initialize input from a Radiance pi
472   {
473          int     i1, i2, po;
474                                                  /* read Radiance header */
475 <        CLR(C_RFLT|C_TFLT|C_XYZE|C_PRIM|C_GAMMA|C_CXFM);
475 >        CLR(C_RFLT|C_XYZE|C_PRIM|C_GAMMA|C_CXFM);
476 >        cvts.capdate[0] = '\0';
477 >        cvts.owner[0] = '\0';
478          cvts.stonits = 1.;
479          cvts.pixrat = 1.;
480          cvts.pconf = PLANARCONFIG_CONTIG;
# Line 419 | Line 500 | initfromrad()                  /* initialize input from a Radiance pi
500          switch (cvts.phot) {
501          case PHOTOMETRIC_LOGLUV:
502                  SET(C_RFLT|C_TFLT);
503 <                CLR(C_GRY);
503 >                CLR(C_GRY|C_TWRD);
504                  if (!CHK(C_XYZE)) {
505                          comprgb2xyzWBmat(cvts.cmat,
506                                          CHK(C_PRIM) ? cvts.prims : stdprims);
# Line 434 | Line 515 | initfromrad()                  /* initialize input from a Radiance pi
515                  break;
516          case PHOTOMETRIC_LOGL:
517                  SET(C_GRY|C_RFLT|C_TFLT);
518 +                CLR(C_TWRD);
519                  if (cvts.comp != COMPRESSION_SGILOG)    
520                          quiterr("internal error 3 in initfromrad");
521                  TIFFSetField(cvts.tif, TIFFTAG_SGILOGDATAFMT,
# Line 455 | Line 537 | initfromrad()                  /* initialize input from a Radiance pi
537                          TIFFSetField(cvts.tif, TIFFTAG_WHITEPOINT,
538                                          (float *)cvts.prims[WHT]);
539                  }
540 <                cvts.tf = Colr2RGB;
540 >                if (CHK(C_TWRD)) {
541 >                        cvts.tf = Color2RRGGBB;
542 >                        SET(C_RFLT);
543 >                } else if (CHK(C_TFLT)) {
544 >                        TIFFSetField(cvts.tif, TIFFTAG_SAMPLEFORMAT,
545 >                                        SAMPLEFORMAT_IEEEFP);
546 >                        cvts.tf = Color2RfGfBf;
547 >                        SET(C_RFLT);
548 >                } else
549 >                        cvts.tf = Colr2RGB;
550                  break;
551          case PHOTOMETRIC_MINISBLACK:
552                  SET(C_GRY|C_GAMMA|C_GAMUT);
553                  setcolrgam(cvts.gamcor);
554 <                cvts.tf = Colr2Gry;
554 >                if (CHK(C_TWRD)) {
555 >                        cvts.tf = Color2GGry;
556 >                        SET(C_RFLT);
557 >                } else if (CHK(C_TFLT)) {
558 >                        TIFFSetField(cvts.tif, TIFFTAG_SAMPLEFORMAT,
559 >                                        SAMPLEFORMAT_IEEEFP);
560 >                        cvts.tf = Color2Gryf;
561 >                        SET(C_RFLT);
562 >                } else
563 >                        cvts.tf = Colr2Gry;
564                  break;
565          default:
566                  quiterr("internal error 4 in initfromrad");
# Line 470 | Line 570 | initfromrad()                  /* initialize input from a Radiance pi
570          TIFFSetField(cvts.tif, TIFFTAG_IMAGEWIDTH, cvts.xmax);
571          TIFFSetField(cvts.tif, TIFFTAG_IMAGELENGTH, cvts.ymax);
572          TIFFSetField(cvts.tif, TIFFTAG_SAMPLESPERPIXEL, CHK(C_GRY) ? 1 : 3);
573 <        TIFFSetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, CHK(C_TFLT) ? 32 : 8);
573 >        TIFFSetField(cvts.tif, TIFFTAG_BITSPERSAMPLE,
574 >                        CHK(C_TFLT) ? 32 : CHK(C_TWRD) ? 16 : 8);
575          TIFFSetField(cvts.tif, TIFFTAG_XRESOLUTION, 72.);
576          TIFFSetField(cvts.tif, TIFFTAG_YRESOLUTION, 72./cvts.pixrat);
577          TIFFSetField(cvts.tif, TIFFTAG_ORIENTATION, cvts.orient);
# Line 478 | Line 579 | initfromrad()                  /* initialize input from a Radiance pi
579          TIFFSetField(cvts.tif, TIFFTAG_PLANARCONFIG, cvts.pconf);
580          TIFFSetField(cvts.tif, TIFFTAG_STONITS,
581                          cvts.stonits/pow(2.,(double)cvts.bradj));
582 +        if (cvts.capdate[0])
583 +                TIFFSetField(cvts.tif, TIFFTAG_DATETIME, cvts.capdate);
584 +        if (cvts.owner[0])
585 +                TIFFSetField(cvts.tif, TIFFTAG_ARTIST, cvts.owner);
586          if (cvts.comp == COMPRESSION_NONE)
587                  i1 = TIFFScanlineSize(cvts.tif);
588          else
# Line 514 | Line 619 | char  *av[];
619   }
620  
621  
622 < int
622 > void
623   Luv2Color(y)                    /* read/convert/write Luv->COLOR scanline */
624   uint32  y;
625   {
# Line 525 | Line 630 | uint32 y;
630  
631          if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
632                  quiterr("error reading TIFF input");
633 <        
633 >                                        /* also works for float RGB */
634          for (x = cvts.xmax; x--; ) {
635 <                colval(cvts.r.colors[x],CIEX) = cvts.t.fp[3*x];
636 <                colval(cvts.r.colors[x],CIEY) = cvts.t.fp[3*x + 1];
637 <                colval(cvts.r.colors[x],CIEZ) = cvts.t.fp[3*x + 2];
635 >                setcolor(cvts.r.colors[x],
636 >                                cvts.t.fp[3*x],
637 >                                cvts.t.fp[3*x + 1],
638 >                                cvts.t.fp[3*x + 2]);
639                  if (CHK(C_CXFM))
640                          colortrans(cvts.r.colors[x], cvts.cmat,
641                                          cvts.r.colors[x]);
# Line 548 | Line 654 | uint32 y;
654   }
655  
656  
657 < int
657 > void
658   RRGGBB2Color(y)                 /* read/convert/write RGB16->COLOR scanline */
659   uint32  y;
660   {
# Line 590 | Line 696 | uint32 y;
696   }
697  
698  
699 < int
700 < L2Color(y)                      /* read/convert/write L16->COLOR scanline */
699 > void
700 > L2Color(y)                      /* read/convert/write Lfloat->COLOR scanline */
701   uint32  y;
702   {
703 +        float   m = pow(2., (double)cvts.bradj);
704          register int    x;
705  
706          if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_RFLT|C_TFLT|C_GRY))
# Line 601 | Line 708 | uint32 y;
708  
709          if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
710                  quiterr("error reading TIFF input");
711 <        
712 <        for (x = cvts.xmax; x--; )
713 <                colval(cvts.r.colors[x],RED) =
714 <                colval(cvts.r.colors[x],GRN) =
715 <                colval(cvts.r.colors[x],BLU) =
716 <                                cvts.t.fp[x] > 0. ? cvts.t.fp[x] : 0.;
610 <
711 >                                        /* also works for float greyscale */
712 >        for (x = cvts.xmax; x--; ) {
713 >                register float  f = cvts.t.fp[x];
714 >                if (cvts.bradj) f *= m;
715 >                setcolor(cvts.r.colors[x], f, f, f);
716 >        }
717          if (fwritescan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
718                  quiterr("error writing Radiance picture");
719   }
720  
721  
722 < int
722 > void
723   RGB2Colr(y)                     /* read/convert/write RGB->COLR scanline */
724   uint32  y;
725   {
# Line 669 | Line 775 | readerr:
775   }
776  
777  
778 < int
778 > void
779   Gry2Colr(y)                     /* read/convert/write G8->COLR scanline */
780   uint32  y;
781   {
# Line 695 | Line 801 | uint32 y;
801   }
802  
803  
804 < int
804 > void
805   GGry2Color(y)                   /* read/convert/write G16->COLOR scanline */
806   uint32  y;
807   {
# Line 725 | Line 831 | uint32 y;
831   }
832  
833  
834 < int
835 < Color2L(y)                      /* read/convert/write COLOR->L16 scanline */
834 > void
835 > Color2GGry(y)                   /* read/convert/write COLOR->G16 scanline */
836   uint32  y;
837   {
838 <        double  m = pow(2.,(double)cvts.bradj);
838 >        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
839 >        float   m = pow(2.,(double)cvts.bradj);
840          register int    x;
841  
842 +        if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY) != (C_RFLT|C_TWRD|C_GRY))
843 +                quiterr("internal error 1 in Color2GGry");
844 +
845 +        if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
846 +                quiterr("error reading Radiance picture");
847 +
848 +        for (x = cvts.xmax; x--; ) {
849 +                register float  f = m*( CHK(C_XYZE) ?
850 +                                                colval(cvts.r.colors[x],CIEY)
851 +                                                : bright(cvts.r.colors[x]) );
852 +                if (f <= 0)
853 +                        cvts.t.wp[x] = 0;
854 +                else if (f >= 1)
855 +                        cvts.t.wp[x] = 0xffff;
856 +                else if (dogamma)
857 +                        cvts.t.wp[x] = (int)((float)(1L<<16) *
858 +                                                pow(f, 1./cvts.gamcor));
859 +                else
860 +                        cvts.t.wp[x] = (int)((float)(1L<<16) * f);
861 +        }
862 +
863 +        if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
864 +                quiterr("error writing TIFF output");
865 + }
866 +
867 +
868 + void
869 + Color2L(y)                      /* read/convert/write COLOR->Lfloat scanline */
870 + uint32  y;
871 + {
872 +        float   m = pow(2.,(double)cvts.bradj);
873 +        register int    x;
874 +
875          if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY) != (C_RFLT|C_TFLT|C_GRY))
876                  quiterr("internal error 1 in Color2L");
877  
# Line 747 | Line 887 | uint32 y;
887   }
888  
889  
890 < int
890 > void
891   Color2Luv(y)                    /* read/convert/write COLOR->Luv scanline */
892   uint32  y;
893   {
# Line 768 | Line 908 | uint32 y;
908                  for (x = cvts.xmax; x--; )
909                          scalecolor(cvts.r.colors[x], m);
910          }
911 <
911 >                                        /* also works for float RGB */
912          for (x = cvts.xmax; x--; ) {
913                  cvts.t.fp[3*x] = colval(cvts.r.colors[x],CIEX);
914                  cvts.t.fp[3*x+1] = colval(cvts.r.colors[x],CIEY);
# Line 780 | Line 920 | uint32 y;
920   }
921  
922  
923 < int
923 > void
924 > Color2RRGGBB(y)                 /* read/convert/write COLOR->RGB16 scanline */
925 > uint32  y;
926 > {
927 >        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
928 >        float   m = pow(2.,(double)cvts.bradj);
929 >        register int    x, i;
930 >
931 >        if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY) != (C_RFLT|C_TWRD))
932 >                quiterr("internal error 1 in Color2RRGGBB");
933 >
934 >        if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
935 >                quiterr("error reading Radiance picture");
936 >
937 >        for (x = cvts.xmax; x--; )
938 >            for (i = 3; i--; ) {
939 >                register float  f = m*colval(cvts.r.colors[x],i);
940 >                if (f <= 0)
941 >                        cvts.t.wp[3*x + i] = 0;
942 >                else if (f >= 1)
943 >                        cvts.t.wp[3*x + i] = 0xffff;
944 >                else if (dogamma)
945 >                        cvts.t.wp[3*x + i] = (int)((float)(1L<<16) *
946 >                                                pow(f, 1./cvts.gamcor));
947 >                else
948 >                        cvts.t.wp[3*x + i] = (int)((float)(1L<<16)*f);
949 >            }
950 >
951 >        if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
952 >                quiterr("error writing TIFF output");
953 > }
954 >
955 >
956 > void
957   Colr2Gry(y)                     /* read/convert/write COLR->RGB scanline */
958   uint32  y;
959   {
# Line 806 | Line 979 | uint32 y;
979   }
980  
981  
982 < int
982 > void
983   Colr2RGB(y)                     /* read/convert/write COLR->RGB scanline */
984   uint32  y;
985   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines