ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/depthcodec.h
Revision: 2.3
Committed: Fri Jul 26 18:52:32 2019 UTC (4 years, 9 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.2: +12 -1 lines
Log Message:
Made macro for code2depth() and made both it and depth2code() macros optional

File Contents

# Content
1 /* RCSid $Id: depthcodec.h,v 2.2 2019/07/26 17:04:12 greg Exp $ */
2 /*
3 * Definitions and declarations for 16-bit depth encode/decode
4 *
5 * Include after stdio.h and fvect.h
6 * Includes view.h
7 */
8
9 #ifndef _RAD_DEPTHCODEC_H_
10 #define _RAD_DEPTHCODEC_H_
11
12 #include "view.h"
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 #define DEPTHSTR "REFDEPTH="
19 #define LDEPTHSTR 9
20 #define DEPTH16FMT "16-bit_encoded_depth"
21
22 #define HF_HEADIN 0x1 /* expect input header */
23 #define HF_HEADOUT 0x2 /* write header to stdout */
24 #define HF_RESIN 0x4 /* expect resolution string */
25 #define HF_RESOUT 0x8 /* write resolution to stdout */
26 #define HF_STDERR 0x10 /* report errors to stderr */
27 #define HF_ALL 0x1f /* all flags above */
28 #define HF_ENCODE 0x20 /* we are encoding */
29
30 /* Structure for encoding/decoding depths and world points */
31 typedef struct {
32 FILE *finp; /* input stream */
33 const char *inpname; /* input name */
34 int format; /* decoded format */
35 long dstart; /* start of data */
36 long curpos; /* current input position */
37 double refdepth; /* reference depth */
38 char depth_unit[32]; /* string including units */
39 int hdrflags; /* header i/o flags */
40 char inpfmt[MAXFMTLEN]; /* format from header */
41 VIEW vw; /* input view parameters */
42 int gotview; /* got input view? */
43 RESOLU res; /* input resolution */
44 } DEPTHCODEC;
45
46 /* Encode depth as 16-bit signed integer */
47 #if 1
48 #define depth2code(d, dref) \
49 ( (d) > (dref) ? (int)(32768.001 - 32768.*(dref)/(d))-1 : \
50 (d) > .0 ? (int)(32767.*(d)/(dref) - 32768.) : -32768 )
51 #else
52 extern int depth2code(double d, double dref);
53 #endif
54
55 /* Decode depth from 16-bit signed integer */
56 #if 1
57 #define code2depth(c, dref) \
58 ( (c) <= -32768 ? .0 : (c) >= 32767 ? FHUGE : \
59 (c) < 0 ? (dref)*(32767.5 + (c))*(1./32767.) : \
60 (dref)*32768./(32766.5 - (c)) )
61 #else
62 extern double code2depth(int c, double dref);
63 #endif
64
65 /* Set codec defaults */
66 extern void set_dc_defaults(DEPTHCODEC *dcp);
67
68 /* Load/copy header */
69 extern int process_dc_header(DEPTHCODEC *dcp, int ac, char *av[]);
70
71 /* Check that we have what we need to decode depths */
72 extern int check_decode_depths(DEPTHCODEC *dcp);
73
74 /* Decode next depth pixel from input */
75 extern double decode_depth_next(DEPTHCODEC *dcp);
76
77 /* Seek to the indicated pixel position */
78 extern int seek_dc_pix(DEPTHCODEC *dcp, int x, int y);
79
80 /* Read and decode depth for the given pixel */
81 extern double decode_depth_pix(DEPTHCODEC *dcp, int x, int y);
82
83 /* Check that we have what we need to decode world positions */
84 extern int check_decode_worldpos(DEPTHCODEC *dcp);
85
86 /* Compute world position from pixel position and depth */
87 extern int compute_worldpos(FVECT wpos, DEPTHCODEC *dcp,
88 int x, int y, double d);
89
90 /* Decode the next world position from input */
91 int decode_worldpos_next(FVECT wpos, DEPTHCODEC *dcp);
92
93 /* Decode depth and compute world position for the given pixel */
94 extern int get_worldpos_pix(FVECT wpos, DEPTHCODEC *dcp, int x, int y);
95
96 extern char *progname; /* global argv[0] (set by main) */
97
98 #ifdef __cplusplus
99 }
100 #endif
101 #endif /* _RAD_DEPTHCODEC_H_ */