1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735
|
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <math.h>
#define CDL_LIBRARY_SOURCE
#define CDL_NEED_COLORMAPS
#include "cdl.h"
/*
* CDL -- Client Display Library. This package provides a general interface
* for client applications to do IRAF-like image display and interaction.
* It is layered upon other interfaces for handling basic display, cursor
* and frame buffer operations, and low-level server communications.
*
* cdl = cdl_open (imtdev)
* cdl_displayPix (cdl, pix, nx, ny, bitpix, frame, fbconfig, zscale)
* cdl_readCursor (cdl, sample, &x, &y, &wcs, &key)
* cdl_setCursor (cdl, x, y, wcs)
* cdl_clearFrame (cdl)
* cdl_close (cdl)
*
* cdl_displayIRAF (cdl, fname, band, frame, fbconfig, zscale)
* cdl_isIRAF (fname)
* cdl_readIRAF (fname, band, &pix, &nx, &ny, &bitpix, title);
*
* cdl_displayFITS (cdl, fname, frame, fbconfig, zscale)
* cdl_isFITS (fname)
* cdl_readFITS (fname, &pix, &nx, &ny, &bitpix, title);
*
* cdl_computeZscale (cdl, pix, nx, ny, bitpix, &z1, &z2)
* cdl_zscaleImage (cdl, &pix, nx, ny, bitpix, z1, z2)
*
* cdl_printPix (cdl, cmd, pix, nx, ny, annotate)
* cdl_printPixToFile (cdl, fname, pix, nx, ny, annotate)
*
* cdl_readImage (cdl, &pix, &nx, &ny)
* cdl_readFrameBuffer (cdl, &pix, &nx, &ny)
* cdl_readSubRaster (cdl, lx, ly, nx, ny, &pix)
* cdl_writeSubRaster (cdl, lx, ly, nx, ny, pix)
*
* cdl_selectFB (cdl, nx, ny, &fb, &fb_w, &fb_h, &nframes, reset)
* cdl_setFBConfig (cdl, configno)
* cdl_getFBConfig (cdl, &configno, &w, &h, &nframes)
* cdl_lookupFBSize (cdl, configno, &w, &h, &nframes)
*
* cdl_[set|get]WCS (cdl, name, title, a, b, c, d, tx, ty, z1, z2, zt)
* cdl_[set|get]Frame (cdl, frame)
* cdl_[set|get]ZTrans (cdl, ztrans)
* cdl_[set|get]ZScale (cdl, z1, z2)
* cdl_[set|get]Sample (cdl, nsample)
* cdl_[set|get]SampleLines (cdl, nlines)
* cdl_[set|get]Contrast (cdl, contrast)
* cdl_[set|get]Name (cdl, imname)
* cdl_[set|get]Title (cdl, imtitle)
*
*
* GRAPHICS OVERLAY ROUTINES:
* --------------------------
* cdl_mapFrame (cdl, frame)
* cdl_markPoint (cdl, x, y, number, size, type, color)
* cdl_markLine (cdl, xs, ys, xe, ye, color)
* cdl_markBox (cdl, lx, ly, ux, uy, fill, color)
* cdl_markPolyline (cdl, xpts, ypts, npts, color)
* cdl_markPolygon (cdl, xpts, ypts, npts, fill, color)
* cdl_markCircle (cdl, x, y, radius, fill, color)
* cdl_markCircAnnuli (cdl, x, y, radius, nannuli, sep, color)
* cdl_markEllipse (cdl, x, y, xrad, yrad, ang, fill, color)
* cdl_markEllipAnnuli (cdl, x, y, xrad, yrad, ang, nannuli, sep, color)
* cdl_markText (cdl, x, y, str, size, angle, color)
*
* cdl_setFont (cdl, type)
*
* cdl_deleteMark (cdl, x, y)
* cdl_clearOverlay (cdl)
* cdl_redrawOverlay (cdl)
*
*
* Client applications begin with a cdl_open() call to initialize the
* interface. The "imtdev" argument is used to specify a connection at device
* open time, or if NULL the procedure will attempt to first connect on a unix
* socket or fifo pipe if that fails. The syntax for the imtdev argument is
* as follows:
* <domain> : <address>
*
* where <domain> is one of "inet" (internet tcp/ip socket), "unix" (unix
* domain socket) or "fifo" (named pipe). The form of the address depends
* upon the domain, see the IMD interface code comments or documentation
* for examples.
*
* The library assumes a logical coordinate system that has the image or
* raster origin in the lower-left corner. All I/O routines should be passed
* or will return a pixel pointer set to the LL corner of the raster, all
* cursor positions will similarly use this coordinate system. Initially the
* [0,0] origin is defined as the LL of the frame buffer, this will remain
* the case until the WCS is redefined either explicitly through a cdl_setWCS()
* call or by using one of the high level cdl_display*() procedures to display
* an image smaller that the current frame buffer. Applications wishing to
* retain this initial origin or those wanting to explicitly place the image
* in the frame buffer should use the cdl_writeSubRaster() for display. This
* is to allow cursor and subraster positions to be specified in image coord-
* inates more easily. Negative positions are allowed and will either refer
* to empty pixels if the frame buffer is larger than the image, or pixels
* outside the frame buffer boundaries. Raster I/O requests will be clipped
* to the frame buffer endpoints, a request completely outside the frame buffer
* is an error.
*
* The high-level display routines cdl_displayIRAF() and cdl_displayFITS()
* can be used to display images directly by name. A WCS will automatically
* be defined for each image after the optional zscaling hass been computed.
* Applications wishing to define their own WCS need to call cdl_setWCS()
* after the display call to redefine the default WCS.
*/
/* Function prototypes */
#ifdef __STDC__
#include <stddef.h>
#endif
#ifdef ANSI_FUNC
void cdl_zscale(uchar *im, int nx, int ny, int bitpix, float *z1, float *z2, float contrast, int opt_size, int len_stdline);
int cdl_freeDisplayList(CDLPtr cdl, MarkerPtr head);
extern char *mktemp(char *template);
extern int system(const char *cmd);
extern void bcopy(char *b1, char *b2, int length);
#endif
/* Display list declarations. We keep a separate list for each frame that
* is freed whenever a new image is displayed. The list is maintained as
* a doubly-linked list of Marker structs.
*/
extern MarkerPtr DLHead[MAX_FRAMES]; /* diplay list head */
extern MarkerPtr DLTail[MAX_FRAMES]; /* diplay list tail */
int cdl_debug = 0;
static void cdl_applyZscale(), cdl_flip();
/* CDL_OPEN -- Open and initialize the CDL package.
*/
#ifdef ANSI_FUNC
CDLPtr
cdl_open (
char *imtdev /* connection device */
)
#else
CDLPtr
cdl_open (imtdev)
char *imtdev; /* connection device */
#endif
{
register int i;
CDLPtr cdl;
IMDPtr imd_open();
/* If the debug flag isn't set in the code, see if it's set in the
* runtime environment.
*/
if (cdl_debug == 0) {
if (getenv("CDL_DEBUG") != NULL)
cdl_debug = atoi(getenv("CDL_DEBUG"));
else
cdl_debug = 0;
cdl_setDebug (cdl_debug);
}
if (cdl_debug)
printf ("%s\n[cdl_open] imtdev='%s'\n", CDL_VERSION,
(imtdev ? imtdev : ""));
/* Allocate the cdl structure. */
cdl = (struct CDL *) calloc (1, sizeof (struct CDL));
/* Open the connection to the server. */
cdl->imd = imd_open ((imtdev == NULL) ? getenv("IMTDEV") : imtdev);
if (cdl->imd == (IMDPtr) NULL) {
free ((char *)cdl);
return (NULL);
}
/* Initialize the CDL structure. */
cdl->frame = 1; /* imd_setFrame (cdl->imd, 1); */
cdl->fbconfig = 1; /* imd_setFBConfig (cdl->imd, 1); */
cdl->fbwidth = 512;
cdl->fbheight = 512;
cdl->fbnf = 2;
cdl->im_nx = 512;
cdl->im_ny = 512;
cdl->contrast = DEF_CONTRAST;
cdl->nsample = DEF_NSAMPLE;
cdl->nsamplines = DEF_NSAMPLINES;
cdl->font = F_ROMAN;
cdl->textwidth = 1;
cdl->linewidth = 1;
cdl->linestyle = L_SOLID;
/* Initialize a WCS. */
cdl->a = 1.0;
cdl->b = 0.0;
cdl->c = 0.0;
cdl->d = -1.0;
cdl->tx = 1.0; /* default for 512x512 fb */
cdl->ty = 512.0; /* default for 512x512 fb */
cdl->z1 = 0.0;
cdl->z2 = 255.0;
cdl->ztrans = CDL_LINEAR;
/* imd_setWCS (cdl->imd, "", "", cdl->a, cdl->b, cdl->c, cdl->d,
* cdl->tx, cdl->ty, cdl->z1, cdl->z2, cdl->ztrans);
*/
cdl->imname = (char *) calloc (SZ_NAME, sizeof(char));
cdl->imtitle = (char *) calloc (SZ_NAME, sizeof(char));
/* Initialize the display list. */
for (i=0; i < MAX_FRAMES; i++)
DLHead[i] = DLTail[i] = (MarkerPtr) NULL;
return (cdl);
}
/* CDL_DISPLAYPIX -- Display a raw pixel array to the server. Pixels may
* be larger than 8-bits; they will be scaled for display either through
* a simple minmax scaling to 8-bits if zscale=0, or an optimal Z-transform
* will be computed and used if zscale=1.
*/
#ifdef ANSI_FUNC
int
cdl_displayPix (
CDLPtr cdl, /* package ptr */
uchar *pix, /* pixels to display */
int nx,
int ny, /* image dimensions */
int bitpix, /* pixel size */
int frame, /* display frame */
int fbconfig, /* frame bvuffer config */
int zscale /* do zscale of image? */
)
#else
int
cdl_displayPix (cdl, pix, nx, ny, bitpix, frame, fbconfig, zscale)
CDLPtr cdl; /* package ptr */
uchar *pix; /* pixels to display */
int nx, ny; /* image dimensions */
int bitpix; /* pixel size */
int frame; /* display frame */
int fbconfig; /* frame bvuffer config */
int zscale; /* do zscale of image? */
#endif
{
float z1 = 0.0, z2 = 0.0;
int fb = fbconfig, w, h, nframes;
if (cdl_debug)
printf ("[cdl_displayPix] %dx%d-%d frame=%d fb=%d zscale=%d\n",
nx, ny, bitpix, frame, fbconfig, zscale);
/* Sanity check. */
if (frame < 1 || frame > MAX_FRAMES) {
perror ("cdl_displayPix: invalid frame number");
return (ERR);
}
if (zscale) {
/* Compute the optimal zscale values. */
cdl_computeZscale (cdl, pix, nx, ny, bitpix, &z1, &z2);
cdl_zscaleImage (cdl, &pix, nx, ny, bitpix, z1, z2);
cdl_setZScale (cdl, z1, z2);
cdl->imd->z1 = z1;
cdl->imd->z2 = z2;
}
/* See if we need to free the display list for the frame. */
if (DLHead[frame-1] != (MarkerPtr) NULL)
(void) cdl_freeDisplayList (cdl, DLHead[frame-1]);
/* Do the frame buffer configuration if needed. */
if (fbconfig == FB_AUTO) {
cdl_selectFB (cdl, nx, ny, &fb, &w, &h, &nframes, True);
} else if (fbconfig != cdl->fbconfig) {
cdl_setFBConfig (cdl, fbconfig);
fb = max (1, fbconfig);
}
cdl->frame = frame;
cdl->im_nx = nx;
cdl->im_ny = ny;
return (imd_displayImage (cdl->imd, pix, nx, ny, frame, fb, 1));
}
/* CDL_READCURSOR -- Read the current cursor position. If sample is defined
* logical cursor position will be sampled and returned immediately, otherwise
* the server will block until a key is hit and we return that value as well.
*/
#ifdef ANSI_FUNC
char
cdl_readCursor (
CDLPtr cdl, /* package ptr */
int sample, /* wait for keystroke? */
float *x,
float *y, /* position (output) */
int *wcs, /* WCS */
char *key /* keystroke (output) */
)
#else
char
cdl_readCursor (cdl, sample, x, y, wcs, key)
CDLPtr cdl; /* package ptr */
int sample; /* wait for keystroke? */
float *x, *y; /* position (output) */
int *wcs; /* WCS */
char *key; /* keystroke (output) */
#endif
{
int status;
if (cdl_debug)
printf ("[cdl_readCursor]\n");
status = imd_readCursor (cdl->imd, sample, x, y, wcs, key);
return (*key);
}
/* CDL_SETCURSOR -- Set the current logical cursor position. If 'wcs' is
* non-zero the cursor position is assumed to be defined in terms of the
* current image WCS, otherwise it is in frame buffer coordinates.
*/
#ifdef ANSI_FUNC
int
cdl_setCursor (
CDLPtr cdl, /* package ptr */
int x,
int y, /* position */
int wcs /* cursor wcs */
)
#else
int
cdl_setCursor (cdl, x, y, wcs)
CDLPtr cdl; /* package ptr */
int x, y; /* position */
int wcs; /* cursor wcs */
#endif
{
if (cdl_debug)
printf ("[cdl_setCursor] x=%d y=%d wcs=%d\n", x, y, wcs);
return (imd_setCursor (cdl->imd, x, y, wcs));
}
/* CDL_SETWCS -- Set the WCS of the screen. The WCS is passed in a string
* defined as:
* Image_Name_String\n a b c d tx ty z1 z2 zt
* where:
* X' = a*X + c*Y + tx
* Y' = b*X + d*Y + ty
*
* z1 is the minimum pixel value, z2 is the maximum pixel value, zt
* defines the type of transformation to use.
*/
#ifdef ANSI_FUNC
int cdl_setWCS (
CDLPtr cdl, /* package ptr */
char *imname, /* name string */
char *imtitle, /* title string */
float a,
float b,
float c,
float d, /* WCS values */
float tx,
float ty, /* translation */
float z1,
float z2, /* zscale values */
int zt /* transformation type */
)
#else
int
cdl_setWCS (cdl, imname, imtitle, a, b, c, d, tx, ty, z1, z2, zt)
CDLPtr cdl; /* package ptr */
char *imname; /* name string */
char *imtitle; /* title string */
float a, b, c, d; /* WCS values */
float tx, ty; /* translation */
float z1, z2; /* zscale values */
int zt; /* transformation type */
#endif
{
if (cdl_debug) {
printf ("[cdl_setWCS] name='%s' title='%s'\n", (imname?imname:""),
(imtitle?imtitle:""));
printf ("\ta=%g b=%g c=%g d=%g tx=%g ty=%g z1=%g z2=%g zt=%d\n",
a, b, c, d, tx, ty, z1, z2, zt);
}
strcpy (cdl->imname, (imname ? imname : ""));
strcpy (cdl->imtitle, (imtitle ? imtitle : ""));
cdl->a = a;
cdl->b = b;
cdl->c = c;
cdl->d = d;
cdl->tx = tx;
cdl->ty = ty;
cdl->z1 = z1;
cdl->z2 = z2;
cdl->ztrans = zt;
return (imd_setWCS (cdl->imd, imname, imtitle, a, b, c, d, tx, ty,
z1, z2, zt));
}
/* CDL_GETWCS -- Get the current display frame WCS information.
*/
#ifdef ANSI_FUNC
int
cdl_getWCS (
CDLPtr cdl, /* package ptr */
char *name, /* name string */
char *title, /* title string */
float *a,
float *b,
float *c,
float *d, /* WCS values */
float *tx,
float *ty, /* translation */
float *z1,
float *z2, /* zscale values */
int *zt /* transformation type */
)
#else
int
cdl_getWCS (cdl, name, title, a, b, c, d, tx, ty, z1, z2, zt)
CDLPtr cdl; /* package ptr */
char *name; /* name string */
char *title; /* title string */
float *a, *b, *c, *d; /* WCS values */
float *tx, *ty; /* translation */
float *z1, *z2; /* zscale values */
int *zt; /* transformation type */
#endif
{
int status = imd_getWCS (cdl->imd, name, title, a, b, c, d,
tx, ty, z1, z2, zt);
if (cdl_debug) {
printf ("[cdl_getWCS] name='%s' title='%s'\n", (name ? name : ""),
(title ? title : ""));
printf ("\ta=%g b=%g c=%g d=%g tx=%g ty=%g z1=%g z2=%g zt=%d\n",
*a, *b, *c, *d, *tx, *ty, *z1, *z2, *zt);
}
return (status);
}
/* CDL_CLEARFRAME -- Erase the current display frame.
*/
#ifdef ANSI_FUNC
int
cdl_clearFrame (
CDLPtr cdl /* package ptr */
)
#else
int
cdl_clearFrame (cdl)
CDLPtr cdl; /* package ptr */
#endif
{
if (cdl_debug)
printf ("[cdl_clearFrame]\n");
return (imd_clearFrame (cdl->imd));
}
/* CDL_SELECTFB -- Select a frame buffer large enough to contain an image
* of the given size. Instead of finding jsut the first buffer large
* enough to hold the image look for one with minimal edge space.
*/
#ifdef ANSI_FUNC
void
cdl_selectFB (
CDLPtr cdl, /* package ptr */
int nx,
int ny, /* image size */
int *fb, /* frame buffer */
int *w,
int *h, /* frame size */
int *nf, /* number of frames */
int reset /* reset after select */
)
#else
void
cdl_selectFB (cdl, nx, ny, fb, w, h, nf, reset)
CDLPtr cdl; /* package ptr */
int nx, ny; /* image size */
int *fb; /* frame buffer */
int *w, *h; /* frame size */
int *nf; /* number of frames */
int reset; /* reset after select */
#endif
{
register int i, edges, mintab = -1, tmin = 100000;
FBTab tab;
if (cdl_debug)
printf ("[cdl_selectFb] nx=%d ny=%d ", nx, ny);
for (i=0; i < MAX_FBCONFIG; i++) {
tab = *cdl->imd->fbtab[i];
if (tab.width == nx && tab.height == ny) {
/* Get an exact match first. */
tab = *cdl->imd->fbtab[i];
goto found;
} else if (tab.width >= nx && tab.height >= ny) {
/* Look for match with smallest padding. */
edges = tab.width - nx + tab.height - ny;
if (edges < tmin) {
tmin = edges;
mintab = i;
}
}
}
if (mintab >= 0) {
tab = *cdl->imd->fbtab[mintab];
goto found;
}
/* Couldn't find one, punt and use the default. */
fprintf (stderr,
"Warning: cannot find adequate frame buffer, using default.\n");
tab = *cdl->imd->fbtab[0];
found:
*fb = tab.config;
*w = tab.width;
*h = tab.height;
*nf = tab.nframes;
if (reset && cdl->fbconfig != *fb)
cdl_setFBConfig (cdl, *fb);
if (cdl_debug)
printf ("-> fb=%d w=%d h=%d nf=%d\n", *fb, *w, *h, *nf);
}
/* CDL_CLOSE -- Close the CDL package descriptor.
*/
#ifdef ANSI_FUNC
void
cdl_close (
CDLPtr cdl /* package ptr */
)
#else
void
cdl_close (cdl)
CDLPtr cdl; /* package ptr */
#endif
{
register int i;
if (cdl_debug)
printf ("[cdl_close]\n");
for (i=0; i < MAX_FRAMES; i++)
if (DLHead[i] != (MarkerPtr) NULL)
cdl_freeDisplayList (cdl, DLHead[i]);
free ((char *) cdl->imname);
free ((char *) cdl->imtitle);
imd_close (cdl->imd);
free ((CDLPtr) cdl);
}
/* CDL_READIMAGE -- Read the currently displayed image and return a pointer to
* the array and it's dimensions. Since we know where the image was written
* in the frame buffer this is really just a large subregion read.
*/
#ifdef ANSI_FUNC
int
cdl_readImage (
CDLPtr cdl, /* package ptr */
uchar **pix, /* image pixels (output)*/
int *nx,
int *ny /* dimensions (output) */
)
#else
int
cdl_readImage (cdl, pix, nx, ny)
CDLPtr cdl; /* package ptr */
uchar **pix; /* image pixels (output)*/
int *nx, *ny; /* dimensions (output) */
#endif
{
int status;
if (*pix == NULL)
*pix = (uchar *) malloc (cdl->im_nx * cdl->im_ny);
status = imd_readImage (cdl->imd, *pix, nx, ny);
if (cdl_debug)
printf ("[cdl_readImage] %dx%d pixels\n", *nx, *ny);
return (status);
}
/* CDL_READFRAMEBUFFER -- Read the contents of the entire frame buffer and
* return a pointer to the array and it's dimensions.
*/
#ifdef ANSI_FUNC
int
cdl_readFrameBuffer (
CDLPtr cdl, /* package ptr */
uchar **pix, /* image pixels (output)*/
int *nx,
int *ny /* dimensions (output) */
)
#else
int
cdl_readFrameBuffer (cdl, pix, nx, ny)
CDLPtr cdl; /* package ptr */
uchar **pix; /* image pixels (output)*/
int *nx, *ny; /* dimensions (output) */
#endif
{
int status;
if (*pix == NULL)
*pix = (uchar *) malloc (cdl->fbwidth * cdl->fbheight);
status = imd_readFrameBuffer (cdl->imd, *pix, nx, ny);
if (cdl_debug)
printf ("[cdl_readFrameBuffer] %dx%d pixels\n", *nx, *ny);
return (status);
}
/* CDL_COMPUTEZSCALE -- Compute the optimal z1/z2 values for an array. We
* don't transform the pixels, just compute the values.
*/
#ifdef ANSI_FUNC
void
cdl_computeZscale (
CDLPtr cdl, /* package ptr */
uchar *pix, /* data to be sampled */
int nx,
int ny, /* image dimensions */
int bitpix, /* bits per pixel */
float *z1,
float *z2 /* min/max zscale values*/
)
#else
void
cdl_computeZscale (cdl, pix, nx, ny, bitpix, z1, z2)
CDLPtr cdl; /* package ptr */
uchar *pix; /* data to be sampled */
int nx, ny; /* image dimensions */
int bitpix; /* bits per pixel */
float *z1, *z2; /* min/max zscale values*/
#endif
{
register float np = nx * ny;
cdl_zscale ((uchar *)pix,
nx, ny,
bitpix,
z1, z2,
cdl->contrast,
cdl->nsample,
MAX(2,
(int)(cdl->nsample / (cdl->nsamplines > 0 ?
cdl->nsamplines :
(int)((float)ny / sqrt(np / (float)cdl->nsample))) )));
if (cdl_debug)
printf ("[cdl_computeZscale] %dx%d-%d --> z1=%g z2=%g zt=%d\n",
nx, ny, bitpix, *z1, *z2, cdl->ztrans);
}
/* CDL_ZSCALEIMAGE -- Compute the optimal z1/z2 values for an array and then
* scale the pixels. We only compute the scale values if they're not input,
* otherwise we used the values passed in.
*/
#ifdef ANSI_FUNC
void
cdl_zscaleImage (
CDLPtr cdl, /* package ptr */
uchar **pix, /* data to be sampled */
int nx,
int ny, /* image dimensions */
int bitpix, /* bits per pixel */
float z1,
float z2 /* min/max zscale values*/
)
#else
void
cdl_zscaleImage (cdl, pix, nx, ny, bitpix, z1, z2)
CDLPtr cdl; /* package ptr */
uchar **pix; /* data to be sampled */
int nx, ny; /* image dimensions */
int bitpix; /* bits per pixel */
float z1, z2; /* min/max zscale values*/
#endif
{
if (cdl_debug)
printf ("[cdl_zscaleImage]\n");
cdl_setZScale (cdl, z1, z2);
cdl_applyZscale (cdl, pix, nx, ny, bitpix);
}
/* CDL_PRINTPIX -- Print the given pixels as EPS to the named command.
* We assume that the 'cmd' argument is a unix command string that takes
* input from the stdin.
*/
#ifdef ANSI_FUNC
int
cdl_printPix (
CDLPtr cdl, /* package ptr */
char *cmd, /* command string */
uchar *pix, /* pixel array */
int nx,
int ny, /* image dimensions */
int annotate /* annotate output? */
)
#else
int
cdl_printPix (cdl, cmd, pix, nx, ny, annotate)
CDLPtr cdl; /* package ptr */
char *cmd; /* command string */
uchar *pix; /* pixel array */
int nx, ny; /* image dimensions */
int annotate; /* annotate output? */
#endif
{
FILE *fp;
PSImagePtr psim, eps_init();
char tmpfile[SZ_NAME], text[SZ_NAME];
extern char *mktemp();
extern int system();
if (cdl_debug)
printf ("[cdl_printPix] cmd='%s' %dx%d annotate=%d\n",
cmd, nx, ny, annotate);
/* Open the image pointer each time since we assume it's not going to
* happen too often.
*/
psim = eps_init();
/* Print to a printer device. */
strcpy (tmpfile, "/tmp/cdlXXXXXX");
if (mktemp(tmpfile) == (char *)NULL) {
eps_close (psim);
return (ERR);
}
if (!(fp = fopen (tmpfile, "w"))) {
eps_close (psim);
return (ERR);
}
psim->annotate = annotate;
cdl_flip (pix, nx, ny);
eps_setLabel (psim, cdl->imname);
eps_setCorners (psim, 0, 0, nx, ny);
eps_setColorType (psim, EPS_PSEUDOCOLOR);
eps_setCmap (psim, cmap_r, cmap_g, cmap_b, 256);
eps_print (psim, fp, pix, nx, ny, 8, 0);
sprintf (text, "cat %s | %s", tmpfile, (cmd ? cmd : "lpr"));
(void)system (text); /* dispose to printer */
unlink (tmpfile); /* delete tmp file */
/* Clean up. */
fclose (fp);
eps_close (psim);
return (OK);
}
/* CDL_PRINTPIXTOFILE -- Print the given pixels as EPS to the named file.
*/
#ifdef ANSI_FUNC
int
cdl_printPixToFile (
CDLPtr cdl, /* package ptr */
char *fname, /* filename */
uchar *pix, /* pixel array */
int nx,
int ny, /* image dimensions */
int annotate /* annotate output? */
)
#else
int
cdl_printPixToFile (cdl, fname, pix, nx, ny, annotate)
CDLPtr cdl; /* package ptr */
char *fname; /* filename */
uchar *pix; /* pixel array */
int nx, ny; /* image dimensions */
int annotate; /* annotate output? */
#endif
{
FILE *fp;
PSImagePtr psim, eps_init();
if (cdl_debug)
printf ("[cdl_printPixToFile] fname='%s' %dx%d annotate=%d\n",
fname, nx, ny, annotate);
/* Open the image pointer each time since we assume it's not going to
* happen too often.
*/
psim = eps_init();
/* Dump the EPS to the file. */
if (access (fname, F_OK) < 0) {
if ((fp = fopen (fname, "w"))) {
eps_setLabel (psim, cdl->imname);
psim->annotate = annotate;
cdl_flip (pix, nx, ny);
eps_setColorType (psim, EPS_PSEUDOCOLOR);
eps_setCmap (psim, cmap_r, cmap_g, cmap_b, 256);
eps_setCorners (psim, 0, 0, nx, ny);
eps_print (psim, fp, pix, nx, nx, 8, 0);
fclose (fp);
} else {
fprintf (stderr, "Could not open file %s", fname);
eps_close (psim);
return (ERR);
}
}
eps_close (psim);
return (OK);
}
/* CDL_READSUBRASTER -- Read a rectangular region of the frame buffer.
*/
#ifdef ANSI_FUNC
int
cdl_readSubRaster (
CDLPtr cdl, /* package ptr */
int lx,
int ly, /* region corner */
int nx,
int ny, /* dimensions */
uchar **pix /* image pixels (output)*/
)
#else
int
cdl_readSubRaster (cdl, lx, ly, nx, ny, pix)
CDLPtr cdl; /* package ptr */
int lx, ly; /* region corner */
int nx, ny; /* dimensions */
uchar **pix; /* image pixels (output)*/
#endif
{
register int llx, lly;
if (*pix == NULL)
*pix = (uchar *) malloc (nx * ny);
llx = lx + (cdl->fbwidth / 2) - (cdl->im_nx / 2);
lly = ly + cdl->fbheight - ((cdl->fbheight / 2) + (cdl->im_ny / 2));
if (cdl_debug)
printf ("[cdl_readSubRaster] %dx%d at [%d,%d] offset [%d,%d]\n",
nx, ny, lx, ly, llx, lly);
return (imd_readSubRaster (cdl->imd, lx, ly, nx, ny, *pix));
}
/* CDL_WRITESUBRASTER -- Write a rectangular region of the frame buffer.
*/
#ifdef ANSI_FUNC
int
cdl_writeSubRaster (
CDLPtr cdl, /* package ptr */
int lx,
int ly, /* region corner */
int nx,
int ny, /* dimensions */
uchar *pix /* subraster pixels */
)
#else
int
cdl_writeSubRaster (cdl, lx, ly, nx, ny, pix)
CDLPtr cdl; /* package ptr */
int lx, ly; /* region corner */
int nx, ny; /* dimensions */
uchar *pix; /* subraster pixels */
#endif
{
if (cdl_debug)
printf ("[cdl_writeSubRaster] %dx%d at [%d,%d]\n",
nx, ny, lx, ly);
return (imd_writeSubRaster (cdl->imd, lx, ly, nx, ny, pix));
}
/* CDL_SETFBCONFIG -- Set the frame buffer configuration number.
*/
#ifdef ANSI_FUNC
void
cdl_setFBConfig (
CDLPtr cdl, /* package ptr */
int configno /* fb config number */
)
#else
void
cdl_setFBConfig (cdl, configno)
CDLPtr cdl; /* package ptr */
int configno; /* fb config number */
#endif
{
int cfg = max (1, configno);
if (cdl_debug)
printf ("[cdl_setFBConfig] configno=%d\n", configno);
cdl->fbconfig = cfg;
cdl->fbwidth = cdl->imd->fbtab[cfg-1]->width;
cdl->fbheight = cdl->imd->fbtab[cfg-1]->height;
cdl->fbnf = cdl->imd->fbtab[cfg-1]->nframes;
(void) imd_setFBConfig (cdl->imd, cdl->fbconfig);
}
/* CDL_GETFBCONFIG -- Get the frame buffer configuration number.
*/
#ifdef ANSI_FUNC
void
cdl_getFBConfig (
CDLPtr cdl, /* package ptr */
int *configno, /* fb config number */
int *w,
int *h, /* fb frame size */
int *nframes /* number of frames */
)
#else
void
cdl_getFBConfig (cdl, configno, w, h, nframes)
CDLPtr cdl; /* package ptr */
int *configno; /* fb config number */
int *w, *h; /* fb frame size */
int *nframes; /* number of frames */
#endif
{
*configno = cdl->fbconfig;
*w = cdl->fbwidth;
*h = cdl->fbheight;
*nframes = cdl->fbnf;
if (cdl_debug)
printf ("[cdl_getFBConfig] configno=%d\n", *configno);
}
/* CDL_LOOKUPFBSIZE -- Get the frame buffer dimensions given a config number.
*/
#ifdef ANSI_FUNC
void
cdl_lookupFBSize (
CDLPtr cdl, /* package ptr */
int configno, /* fb config number */
int *w,
int *h, /* fb frame size */
int *nf /* number of frames */
)
#else
void
cdl_lookupFBSize (cdl, configno, w, h, nf)
CDLPtr cdl; /* package ptr */
int configno; /* fb config number */
int *w, *h; /* fb frame size */
int *nf; /* number of frames */
#endif
{
*w = cdl->imd->fbtab[configno-1]->width;
*h = cdl->imd->fbtab[configno-1]->height;
*nf = cdl->imd->fbtab[configno-1]->nframes;
if (cdl_debug) {
printf ("[cdl_lookupFBSize] configno=%d size=%dx%d\n", configno,
*w, *h);
}
}
/* CDL_SETFRAME -- Set the current display frame.
*/
#ifdef ANSI_FUNC
void
cdl_setFrame (
CDLPtr cdl, /* package ptr */
int frame /* frame number */
)
#else
void
cdl_setFrame (cdl, frame)
CDLPtr cdl; /* package ptr */
int frame; /* frame number */
#endif
{
if (cdl_debug)
printf ("[cdl_setFrame] frame=%d\n", frame);
/* Sanity check. */
if (frame < 1 || frame > MAX_FRAMES) {
perror ("cdl_setFrame: invalid frame number - resetting.");
}
cdl->frame = max(1,min(MAX_FRAMES,frame));
(void) imd_setFrame (cdl->imd, cdl->frame);
}
/* CDL_SETZTRANS -- Set the current zscale transform parameters.
*/
#ifdef ANSI_FUNC
void
cdl_setZTrans (
CDLPtr cdl, /* package ptr */
int ztrans /* z-transform type */
)
#else
void
cdl_setZTrans (cdl, ztrans)
CDLPtr cdl; /* package ptr */
int ztrans; /* z-transform type */
#endif
{
if (cdl_debug)
printf ("[cdl_setZTrans] zt=%d\n", ztrans);
cdl->ztrans = ztrans;
}
/* CDL_SETZSCLAE -- Set the current zscale transform parameters.
*/
#ifdef ANSI_FUNC
void
cdl_setZScale (
CDLPtr cdl, /* package ptr */
float z1,
float z2 /* zscale values */
)
#else
void
cdl_setZScale (cdl, z1, z2)
CDLPtr cdl; /* package ptr */
float z1, z2; /* zscale values */
#endif
{
if (cdl_debug)
printf ("[cdl_setZScale] z1=%g z2=%g\n", z1, z2);
cdl->z1 = z1;
cdl->z2 = z2;
cdl->imd->z1 = z1;
cdl->imd->z2 = z2;
}
/* CDL_SETSAMPLE -- Set the number of zscale sample points to use.
*/
#define cdl_setNSamples (cdl, ns) cdl_setSample(cdl,ns)
#define cdl_setSamples (cdl, ns) cdl_setSample(cdl,ns)
#ifdef ANSI_FUNC
void
cdl_setSample (
CDLPtr cdl, /* package ptr */
int nsample /* no. of sample pts */
)
#else
void
cdl_setSample (cdl, nsample)
CDLPtr cdl; /* package ptr */
int nsample; /* no. of sample pts */
#endif
{
if (cdl_debug)
printf ("[cdl_setSample] nsample=%d\n", nsample);
cdl->nsample = MAX(5,nsample);
}
/* CDL_SETSAMPLELINES -- Set the number of zscale sample lines to use.
*/
#ifdef ANSI_FUNC
void
cdl_setSampleLines (
CDLPtr cdl, /* package ptr */
int nlines /* no. of sample lines */
)
#else
void
cdl_setSampleLines (cdl, nlines)
CDLPtr cdl; /* package ptr */
int nlines; /* no. of sample lines */
#endif
{
if (cdl_debug)
printf ("[cdl_setSampleLines] nlines=%d\n", nlines);
cdl->nsamplines = MAX(1,nlines);
}
/* CDL_SETCONTRAST -- Set the zscale contrast value.
*/
#ifdef ANSI_FUNC
void
cdl_setContrast (
CDLPtr cdl, /* package ptr */
float contrast /* contrast value */
)
#else
void
cdl_setContrast (cdl, contrast)
CDLPtr cdl; /* package ptr */
float contrast; /* contrast value */
#endif
{
if (cdl_debug)
printf ("[cdl_setContrast] contrast=%g\n", contrast);
cdl->contrast = contrast;
}
/* CDL_SETNAME -- Set the image name for the WCS string.
*/
#ifdef ANSI_FUNC
void
cdl_setName (
CDLPtr cdl, /* package ptr */
char *imname /* image name */
)
#else
void
cdl_setName (cdl, imname)
CDLPtr cdl; /* package ptr */
char *imname; /* image name */
#endif
{
if (cdl_debug)
printf ("[cdl_setName] name='%s'\n", (imname?imname:""));
(void) imd_setName(cdl->imd, imname);
}
/* CDL_SETTITLE -- Set the image title for the WCS string.
*/
#ifdef ANSI_FUNC
void
cdl_setTitle (
CDLPtr cdl, /* package ptr */
char *imtitle /* image title */
)
#else
void
cdl_setTitle (cdl, imtitle)
CDLPtr cdl; /* package ptr */
char *imtitle; /* image title */
#endif
{
if (cdl_debug)
printf ("[cdl_setTitle] title='%s'\n", (imtitle?imtitle:""));
(void) imd_setTitle(cdl->imd, imtitle);
}
/* CDL_GETFRAME -- Get the current display frame.
*/
#ifdef ANSI_FUNC
void
cdl_getFrame (
CDLPtr cdl, /* package ptr */
int *frame /* frame number */
)
#else
void
cdl_getFrame (cdl, frame)
CDLPtr cdl; /* package ptr */
int *frame; /* frame number */
#endif
{
float x, y;
int wcs;
char key;
(void) imd_readCursor (cdl->imd, 1, &x, &y, &wcs, &key);
*frame = (int) (wcs / 100);
if (*frame == 0)
*frame = cdl->frame;
if (cdl_debug)
printf ("[cdl_getFrame] frame=%d\n", *frame);
}
/* CDL_GETZTRANS -- Get the current zscale transform parameters.
*/
#ifdef ANSI_FUNC
void
cdl_getZTrans (
CDLPtr cdl, /* package ptr */
int *ztrans /* z-transform type */
)
#else
void
cdl_getZTrans (cdl, ztrans)
CDLPtr cdl; /* package ptr */
int *ztrans; /* z-transform type */
#endif
{
*ztrans = cdl->ztrans;
if (cdl_debug)
printf ("[cdl_getZTrans] zt=%d\n", *ztrans);
}
/* CDL_GETZTRANS -- Get the current zscale transform parameters.
*/
#ifdef ANSI_FUNC
void
cdl_getZScale (
CDLPtr cdl, /* package ptr */
float *z1,
float *z2 /* zscale values */
)
#else
void
cdl_getZScale (cdl, z1, z2)
CDLPtr cdl; /* package ptr */
float *z1, *z2; /* zscale values */
#endif
{
*z1 = cdl->z1;
*z2 = cdl->z2;
if (cdl_debug)
printf ("[cdl_getZScale] z1=%g z2=%g\n", *z1, *z2);
}
/* CDL_GETSAMPLE -- Get the number of zscale sample points to use.
*/
#ifdef ANSI_FUNC
void
cdl_getSample (
CDLPtr cdl, /* package ptr */
int *nsample /* no. of sample pts */
)
#else
void
cdl_getSample (cdl, nsample)
CDLPtr cdl; /* package ptr */
int *nsample; /* no. of sample pts */
#endif
{
*nsample = cdl->nsample;
if (cdl_debug)
printf ("[cdl_getSample] nsample=%d\n", *nsample);
}
/* CDL_GETSAMPLELINES -- Get the number of zscale sample lines to use.
*/
#ifdef ANSI_FUNC
void
cdl_getSampleLines (
CDLPtr cdl, /* package ptr */
int *nlines /* no. of sample lines */
)
#else
void
cdl_getSampleLines (cdl, nlines)
CDLPtr cdl; /* package ptr */
int *nlines; /* no. of sample lines */
#endif
{
*nlines = cdl->nsamplines;
if (cdl_debug)
printf ("[cdl_getSampleLines] nlines=%d\n", *nlines);
}
/* CDL_GETCONTRAST -- Get the zscale contrast value.
*/
#ifdef ANSI_FUNC
void
cdl_getContrast (
CDLPtr cdl, /* package ptr */
float *contrast /* contrast value */
)
#else
void
cdl_getContrast (cdl, contrast)
CDLPtr cdl; /* package ptr */
float *contrast; /* contrast value */
#endif
{
*contrast = cdl->contrast;
if (cdl_debug)
printf ("[cdl_getContrast] contrast=%g\n", *contrast);
}
/* CDL_GETNAME -- Get the image name for the WCS string.
*/
#ifdef ANSI_FUNC
void
cdl_getName (
CDLPtr cdl, /* package ptr */
char *imname /* image name */
)
#else
void
cdl_getName (cdl, imname)
CDLPtr cdl; /* package ptr */
char *imname; /* image name */
#endif
{
if (imname)
strcpy (imname, cdl->imname);
if (cdl_debug)
printf ("[cdl_setName] name='%s'\n", (imname?imname:""));
}
/* CDL_GETTITLE -- Get the image title for the WCS string.
*/
#ifdef ANSI_FUNC
void
cdl_getTitle (
CDLPtr cdl, /* package ptr */
char *imtitle /* image title */
)
#else
void
cdl_getTitle (cdl, imtitle)
CDLPtr cdl; /* package ptr */
char *imtitle; /* image title */
#endif
{
if (imtitle)
strcpy (imtitle, cdl->imtitle);
if (cdl_debug)
printf ("[cdl_setTitle] title='%s'\n", (imtitle?imtitle:""));
}
/* --------------------
* PRIVATE PROCEDURES
* ------------------ */
/* CDL_SETDEBUG -- Set the state of the debug flag.
*/
#ifdef ANSI_FUNC
void
cdl_setDebug (int state)
#else
void
cdl_setDebug (state)
int state;
#endif
{
cdl_debug = state;
if (state >= 1)
imd_setDebug (state);
if (state >= 2)
com_setDebug (state);
}
/* CDL_APPLYZSCALE -- Compute the Zscale transform image given an array of
* raw pixels and image size. We use the z1/z2/ztrans values assumed to be
* previously stored.
*/
#ifdef ANSI_FUNC
static void
cdl_applyZscale (
CDLPtr cdl, /* package ptr */
uchar **pix, /* input image pixels */
int nx,
int ny, /* image dimensions */
int bitpix /* pixel type */
)
#else
static void
cdl_applyZscale (cdl, pix, nx, ny, bitpix)
CDLPtr cdl; /* package ptr */
uchar **pix; /* input image pixels */
int nx, ny; /* image dimensions */
int bitpix; /* pixel type */
#endif
{
register int i, n = nx * ny, pmin = 1, pmax = 200;
register int smax, smin;
float pval, scale = 0.0, dscale = (200.0 / 3.0);
uchar *outpix ;
float z1, z2; /* zscale values */
int zt;
extern void bcopy();
if (cdl_debug)
printf ("[cdl_applyZscale] nx=%d by=%d bitpix=%d\n", nx,ny,bitpix);
/* Move the input array to the output array before zscaling. */
outpix = (uchar *) malloc (nx * ny);
bcopy ((char *)*pix, (char *)outpix, nx * ny);
/* Get the zscale transform values. */
cdl_getZTrans (cdl, &zt);
cdl_getZScale (cdl, &z1, &z2);
smin = (int) z1;
smax = (int) z2;
if (bitpix < 0)
scale = (z2 == z1) ? 0. : 200. / (z2 - z1);
else
scale = (smax == smin) ? 0. : 200. / (z2 - z1);
/* Now scale the pixels. */
if (bitpix == 16) {
register short int *buffer = (short *)(*pix);
if (zt == CDL_LINEAR) {
for (i=0; i < n; i++)
outpix[i] = max (pmin, min (pmax,
(int)(scale * (float)((int)buffer[i] - smin)) ));
} else if (zt == CDL_LOG) {
scale = (smax == smin) ? 0. : (1000.0 - 1.0) / (z2 - z1);
for (i=0; i < n; i++) {
/* Scale that to the range 1-1000 and take the log. */
pval = max (1.0,min(1000.0, (scale * (buffer[i] - smin)) ));
pval = log10 (pval);
/* Now scale back to the display range */
outpix[i] = (uchar) max (pmin, min (pmax,
(uchar)(dscale * pval) ));
}
} else if (zt == CDL_UNITARY) {
for (i=0; i < n; i++)
outpix[i] = buffer[i];
}
} else if (bitpix == 32) {
register int *buffer = (int *)(*pix);
if (zt == CDL_LINEAR) {
for (i=0; i < n; i++)
outpix[i] = max (pmin, min (pmax,
(int)(scale * (float)((int)buffer[i] - smin)) ));
} else if (zt == CDL_LOG) {
scale = (smax == smin) ? 0. : (1000.0 - 1.0) / (z2 - z1);
for (i=0; i < n; i++) {
/* Scale that to the range 1-1000 and take the log. */
pval = max (1.0,min(1000.0, (scale * (buffer[i] - smin)) ));
pval = log10 (pval);
/* Now scale back to the display range */
outpix[i] = (uchar) max (pmin, min (pmax,
(uchar)(dscale * pval) ));
}
} else if (zt == CDL_UNITARY) {
for (i=0; i < n; i++)
outpix[i] = buffer[i];
}
} else if (bitpix == 64) {
register long int *buffer = (long *)(*pix);
if (zt == CDL_LINEAR) {
for (i=0; i < n; i++)
outpix[i] = max (pmin, min (pmax,
(int)(scale * (float)((int)buffer[i] - smin)) ));
} else if (zt == CDL_LOG) {
scale = (smax == smin) ? 0. : (1000.0 - 1.0) / (z2 - z1);
for (i=0; i < n; i++) {
/* Scale that to the range 1-1000 and take the log. */
pval = max (1.0,min(1000.0, (scale * (buffer[i] - smin)) ));
pval = log10 (pval);
/* Now scale back to the display range */
outpix[i] = (uchar) max (pmin, min (pmax,
(uchar)(dscale * pval) ));
}
} else if (zt == CDL_UNITARY) {
for (i=0; i < n; i++)
outpix[i] = buffer[i];
}
} else if (bitpix == -32) {
register float *buffer = (float *)(*pix);
if (zt == CDL_LINEAR) {
for (i=0; i < n; i++)
outpix[i] = max (pmin, min (pmax,
(int)(scale * (float)((float)buffer[i] - z1)) ));
} else if (zt == CDL_LOG) {
scale = (smax == smin) ? 0. : (1000.0 - 1.0) / (z2 - z1);
for (i=0; i < n; i++) {
/* Scale that to the range 1-1000 and take the log. */
pval = max (1.0,min(1000.0, (scale * (buffer[i] - z1)) ));
pval = log10 (pval);
/* Now scale back to the display range */
outpix[i] = (uchar) max (pmin, min (pmax,
(uchar)(dscale * pval) ));
}
} else if (zt == CDL_UNITARY) {
for (i=0; i < n; i++)
outpix[i] = buffer[i];
}
} else if (bitpix == -64) {
register double *buffer = (double *)(*pix);
if (zt == CDL_LINEAR) {
for (i=0; i < n; i++)
outpix[i] = max (pmin, min (pmax,
(int)(scale * (float)((double)buffer[i] - z1)) ));
} else if (zt == CDL_LOG) {
scale = (smax == smin) ? 0. : (1000.0 - 1.0) / (z2 - z1);
for (i=0; i < n; i++) {
/* Scale that to the range 1-1000 and take the log. */
pval = max (1.0,min(1000.0, (scale * (buffer[i] - z1)) ));
pval = log10 (pval);
/* Now scale back to the display range */
outpix[i] = (uchar) max (pmin, min (pmax,
(uchar)(dscale * pval) ));
}
} else if (zt == CDL_UNITARY) {
for (i=0; i < n; i++)
outpix[i] = buffer[i];
}
}
/* Copy the scaled pixel array back to the original raster. We don't
* realloc the pointer in case it's some static array.
*/
bcopy ((char *)outpix, (char *)*pix, n);
if (cdl_debug)
printf ("[cdl_zscaleImage] %dx%d-%d --> z1=%g z2=%g zt=%d\n",
nx, ny, bitpix, z1, z2, zt);
free ((char *) outpix);
}
/* CDL_FLIP -- Reverse order of lines in image.
*/
#ifdef ANSI_FUNC
static void
cdl_flip (uchar *buffer, int nx, int ny)
#else
static void
cdl_flip (buffer, nx, ny)
uchar *buffer;
int nx;
int ny;
#endif
{
register int i, j, v;
register uchar *buff1, *buff2;
for (i = 0; i < ny / 2; i++) {
buff1 = &buffer[i*nx];
buff2 = &buffer[(ny-1-i)*nx];
for (j = 0; j < nx; j++) {
v = *buff1;
*(buff1++) = *buff2;
*(buff2++) = v;
}
}
}
|