-
Notifications
You must be signed in to change notification settings - Fork 4
/
extract_depthmap.c
828 lines (706 loc) · 21.3 KB
/
extract_depthmap.c
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
#include <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/types.h>
#define MIN(a, b) ( (a) < (b) ? (a) : (b) )
typedef enum image_type_t
{
TYPE_NONE,
TYPE_RAW,
TYPE_JPEG
} image_type_t;
// having these as global variables is ugly, but it made writing down the code easier :-P
unsigned char *file_data = NULL;
size_t file_size = 0;
int do_endianess_swap = 0;
// helper functions
// read the file and get its size
unsigned char *read_file(const char *filename, size_t *size)
{
FILE *fd = fopen(filename, "rb");
if(!fd)
{
fprintf(stderr, "error opening file\n");
return NULL;
}
fseek(fd, 0, SEEK_END);
size_t file_size = ftell(fd);
fseek(fd, 0, SEEK_SET);
unsigned char *file_data = (unsigned char *)malloc(file_size);
if(fread(file_data, 1, file_size, fd) != file_size)
{
fprintf(stderr, "error reading file\n");
free(file_data);
return NULL;
}
fclose(fd);
*size = file_size;
return file_data;
}
static void print_offset(const uint32_t offset)
{
printf("%04X:%04X ", (offset >> 16) & 0xffff, offset & 0xffff);
}
static void print_hex_string(const unsigned char *data, const size_t len)
{
fputs(" ", stdout);
for(size_t i = 0; i < MIN(16, len); i++)
{
const unsigned char c = data[i];
putchar(isprint(c) ? c : '.');
}
putchar('\n');
}
static void print_hex(const unsigned char *file_data, const unsigned char *data, const size_t len) __attribute__((unused));
static void print_hex(const unsigned char *file_data, const unsigned char *data, const size_t len)
{
const size_t len_round_up = ((len + 15) / 16) * 16;
for(size_t i = 0; i < len_round_up; i++)
{
if(i % 16 == 0)
print_offset(data + i - file_data);
if(i < len)
printf("%02X", data[i]);
else
fputs(" ", stdout);
if(i % 16 == 15)
print_hex_string(data + i - 15, MIN(16, len - i + 15));
else if(i % 4 == 3)
fputs(" ", stdout);
else
putchar(' ');
}
}
static uint16_t read_ui16(const unsigned char *data)
{
return *(uint16_t *)data;
}
static uint32_t read_ui32(const unsigned char *data)
{
return *(uint32_t *)data;
}
static uint16_t maybe_swap_16(const uint16_t value)
{
if(do_endianess_swap)
return ((value << 8) & 0xff00) | ((value >> 8) & 0xff);
else
return value;
}
static uint32_t maybe_swap_32(const uint32_t value)
{
if(do_endianess_swap)
return ((value << 24) & 0xff000000) | ((value << 8) & 0xff0000) | ((value >> 8) & 0xff00) | ((value >> 24) & 0xff);
else
return value;
}
// incomplete code for parsing JPEG tags. it doesn't support everything there is,
// just enough to read my sample files from a Samsung phone and get the image orientation
static int parse_exif(const unsigned char *data, const size_t size, uint32_t *orientation)
{
int result = 0;
const unsigned char *start = data;
printf("parsing EXIF data\n");
// we need at least 8 bytes of data:
// 2 bytes for byte order -- either "II" or "MM"
// 2 bytes for a fixed 0x002a
// 4 bytes for offset to 0th IFD
if(size < 8)
{
fprintf(stderr, "premature end of Exif data\n");
goto end;
}
// print_hex(data, size);
// FILE *fd = fopen("exif.data", "wb");
// fwrite(data, 1, size, fd);
// fclose(fd);
// technically this is a TIFF file. we are only going to parse enough of it to get the orientation
union
{
unsigned char c[2];
uint16_t s;
} endianess_check = {.c = {0xbe, 0xef}};
if(data[0] == 'I' && data[1] == 'I')
do_endianess_swap = endianess_check.s == 0xbeef; // file is little endian
else if(data[0] == 'M' && data[1] == 'M')
do_endianess_swap = endianess_check.s != 0xbeef; // file is big endian
else
goto end;
data += 2;
if(maybe_swap_16(read_ui16(data)) != 0x002a)
goto end;
data += 2;
// according to Exif specs the IFD0 is the first one and it's the one containing the data we want
const uint32_t ifd_offset = maybe_swap_32(read_ui32(data));
// the IFD takes at least 2 bytes of data for the number of fields
if(ifd_offset + 1 + 2 > size)
{
fprintf(stderr, "premature end of Exif data\n");
goto end;
}
const unsigned char *ifd = start + ifd_offset;
const uint16_t ifd_count = maybe_swap_16(read_ui16(ifd));
// the field array takes 12 bytes per field, and then there are 4 bytes for the pointer to the next IFD
if(ifd_offset + 1 + 2 + 12 * ifd_count + 4 > size)
{
fprintf(stderr, "premature end of Exif data\n");
goto end;
}
const unsigned char *field = ifd + 2;
for(int i = 0; i < ifd_count; i++)
{
const uint16_t tag = maybe_swap_16(read_ui16(field));
const uint16_t type = maybe_swap_16(read_ui16(field + 2));
const uint32_t count = maybe_swap_32(read_ui32(field + 4));
// const uint32_t offset = maybe_swap_32(read_ui32(field + 8));
if(tag == 0x0112)
{
// the orientation. this is all we are interested in
if(type != 3 || count != 1)
{
fprintf(stderr, "malformed Exif data, Orientation tag is not a single short");
goto end;
}
// values of type SHORT are stored in the offset field directly
*orientation = maybe_swap_16(read_ui16(field + 8));
break;
}
field += 12;
}
result = 1;
puts("Exif parsing done");
end:
return result;
}
static char* get_jpeg_tag_name(const unsigned char c)
{
switch(c)
{
case 0xc0: return "SOF0";
case 0xc4: return "DHT";
case 0xd0: return "RST0";
case 0xd1: return "RST1";
case 0xd2: return "RST2";
case 0xd3: return "RST3";
case 0xd4: return "RST4";
case 0xd5: return "RST5";
case 0xd6: return "RST6";
case 0xd7: return "RST7";
case 0xd8: return "SOI";
case 0xd9: return "EOI";
case 0xda: return "SOS";
case 0xdb: return "DQT";
case 0xdd: return "DRI";
case 0xe0: return "APP0";
case 0xe1: return "APP1";
case 0xe2: return "APP2";
case 0xe3: return "APP3";
case 0xe4: return "APP4";
case 0xe5: return "APP5";
case 0xe6: return "APP6";
case 0xe7: return "APP7";
case 0xe8: return "APP8";
case 0xe9: return "APP9";
case 0xea: return "APPa";
case 0xeb: return "APPb";
case 0xec: return "APPc";
case 0xed: return "APPd";
case 0xee: return "APPe";
case 0xef: return "APPf";
default: return "<unknown tag>";
}
}
// variable length tags have the size stored after the tag type
static size_t get_jpeg_tag_size(const unsigned char *data)
{
return (size_t)256 * data[0] + data[1];
}
#define ADD_OFFSET_CHECK_BOUNDS(d, s) { \
if(d + s > file_data + file_size)\
{\
puts(" error: end of tag points behind end of file");\
goto end;\
}\
d += s;\
}
static int parse_jpeg_tag(const unsigned char **_data, uint32_t *orientation)
{
static const char EXIF_START_MARKER[] = {'E', 'x', 'i', 'f', '\0', '\0'};
int result = 0;
const unsigned char *data = *_data;
print_offset(data - file_data);
// we need at least 2 bytes of data
if(data + 2 > file_data + file_size)
{
puts("error: premature end of file");
goto end;
}
// JPEG tags start with 0xFF and then the tag type in the next byte
if(data[0] != 0xff)
{
printf("error: not a JPEG tag: %02X%02X\n", data[0], data[1]);
goto end;
}
const unsigned char tag_type = *++data;
switch(tag_type)
{
case 0xd9:
puts(get_jpeg_tag_name(*data));
data++; // skip tag type
goto end;
case 0xd8:
puts(get_jpeg_tag_name(*data));
data++; // skip tag type
break;
case 0xdd:
puts(get_jpeg_tag_name(*data));
data++; // skip tag type
ADD_OFFSET_CHECK_BOUNDS(data, 4)
break;
case 0xe1:
case 0xe0:
case 0xe2:
case 0xe3:
case 0xe4:
case 0xe5:
case 0xe6:
case 0xe7:
case 0xe8:
case 0xe9:
case 0xea:
case 0xeb:
case 0xec:
case 0xed:
case 0xee:
case 0xef:
case 0xc4:
case 0xdb:
case 0xc0:
{
printf("%s, len: %ld\n", get_jpeg_tag_name(*data), get_jpeg_tag_size(data + 1));
data++; // skip tag type
const uint32_t tag_size = get_jpeg_tag_size(data);
if(tag_type == 0xe1
&& data + 2 + sizeof(EXIF_START_MARKER) < file_data + file_size
&& !memcmp(EXIF_START_MARKER, data + 2, sizeof(EXIF_START_MARKER)))
{
if(!parse_exif(data + 2 + sizeof(EXIF_START_MARKER), tag_size - 2 - sizeof(EXIF_START_MARKER), orientation))
goto end;
}
ADD_OFFSET_CHECK_BOUNDS(data, tag_size)
break;
}
case 0xda:
case 0xd0:
case 0xd1:
case 0xd2:
case 0xd3:
case 0xd4:
case 0xd5:
case 0xd6:
case 0xd7:
{
puts(get_jpeg_tag_name(*data));
int end_tag_found = 0;
while((size_t)(data - file_data) < file_size)
{
if(data[0] == 0xff && data[1] != 0x00)
{
end_tag_found = 1;
break;
}
data++;
}
if(!end_tag_found)
{
puts(" error: premature end of file");
goto end;
}
break;
}
default:
printf("unknown tag FF%02X\n", data[0]);
goto end;
}
result = 1;
end:
*_data = data;
return result;
}
#undef ADD_OFFSET_CHECK_BOUNDS
const unsigned char *parse_jpeg(const unsigned char *data, uint32_t *orientation)
{
while(parse_jpeg_tag(&data, orientation));
return data;
}
// now we have some helper functions for reading the Samsung trailer
static const unsigned char *read_samsung_block_name(const unsigned char *data,
const uint16_t type,
const uint32_t size,
uint32_t *name_len)
{
const uint32_t _dummy = read_ui16(data);
const uint32_t _type = read_ui16(data + 2);
if(_dummy != 0 || _type != type)
return NULL;
*name_len = read_ui32(data + 4);
if(*name_len + 8 > size)
return NULL;
return data + 8;
}
int parse_samsung_trailer(const unsigned char *data, const size_t len,
const unsigned char **cv, size_t *cv_size,
const unsigned char **dm, size_t *dm_size,
size_t *dm_width, size_t *dm_height, image_type_t *dm_type,
uint32_t *orientation)
{
const unsigned char *color_view = NULL, *depth_map = NULL;
uint32_t color_view_size = 0, depth_map_size = 0;
uint32_t depth_map_width = 0, depth_map_height = 0;
const unsigned char *iter = data + len - 4;
if(memcmp(iter, "SEFT", 4))
{
puts("trailer doesn't end with \"SEFT\"");
return 0;
}
iter -= 4;
const uint32_t block_len = read_ui32(iter);
iter -= block_len;
if(memcmp(iter, "SEFH", 4))
{
puts("can't find \"SEFH\"");
return 0;
}
const unsigned char *directory = iter;
iter += 8;
const uint32_t count = read_ui32(iter);
if(12 + 12 * count > block_len)
{
puts("invalid count in trailer data");
return 0;
}
for(uint32_t i = 0; i < count; i++)
{
iter = directory + 12 + 12 * i;
const uint16_t type = read_ui16(iter + 2);
const uint32_t offset = read_ui32(iter + 4);
const uint32_t size = read_ui32(iter + 8);
// we are only interested in certain types
if(type != 0x01 && type != 0x0ab1 && type != 0x0ab3)
continue;
// reading the block name does some sanity check on the block data.
// comparing it to what we expect to see isn't really needed, but it might help with broken files
uint32_t name_len;
const unsigned char *block_name = read_samsung_block_name(directory - offset, type, size, &name_len);
if(!block_name)
{
puts("error reading block name");
return 0;
}
switch(type)
{
case 0x01:
// DualShot_1 or DualShot_2 -- we only want number 1
if(memcmp("DualShot_1", block_name, strlen("DualShot_1")))
continue;
color_view = directory - offset + 8 + name_len;
color_view_size = size - (8 + name_len);
break;
case 0x0ab1:
// DualShot_DepthMap_1
if(memcmp("DualShot_DepthMap_1", block_name, strlen("DualShot_DepthMap_1")))
continue;
depth_map = directory - offset + 8 + name_len;
depth_map_size = size - (8 + name_len);
break;
case 0x0ab3:
{
// DualShot_Extra_Info
if(memcmp("DualShot_Extra_Info", block_name, strlen("DualShot_Extra_Info")))
continue;
// read width/height of depth map
const unsigned char *info_data = directory - offset + 8 + name_len;
unsigned int w_offset, h_offset;
const uint16_t version = read_ui16(info_data);
if(version == 1)
{
w_offset = 9;
h_offset = 10;
}
else if(version == 3)
{
w_offset = 12;
h_offset = 13;
}
else if(version == 4)
{
w_offset = 17;
h_offset = 18;
}
else if(version == 5)
{
w_offset = 20;
h_offset = 19;
}
else if(version == 6)
{
w_offset = 22;
h_offset = 21;
}
else
{
printf("unknown/unsupported version: %u\n", version);
printf("depth map size: %u\n", depth_map_size);
puts("DualShot_Extra_Info:");
print_hex(file_data, directory - offset, size);
continue;
}
depth_map_width = read_ui32(info_data + w_offset * sizeof(uint32_t));
depth_map_height = read_ui32(info_data + h_offset * sizeof(uint32_t));
break;
}
default:
continue;
}
}
if(!color_view || !depth_map || color_view_size == 0 || depth_map_size == 0
|| depth_map_width == 0 || depth_map_height == 0
|| depth_map_width * depth_map_height != depth_map_size)
return 0;
*cv = color_view;
*cv_size = color_view_size;
*dm = depth_map;
*dm_size = depth_map_size;
*dm_width = depth_map_width;
*dm_height = depth_map_height;
*dm_type = TYPE_RAW;
return 1;
}
// read the trailer of Huawei files and extract the images
int parse_huawei_trailer(const unsigned char *data, const size_t size,
const unsigned char **cv, size_t *cv_size,
const unsigned char **dm, size_t *dm_size,
size_t *dm_width, size_t *dm_height, image_type_t *dm_type,
uint32_t *orientation)
{
const size_t dm_header_size = 64;
// check if file ends with "DepthEn\0"
static const char HUAWEI_END_MARKER[] = {'D', 'e', 'p', 't', 'h', 'E', 'n', '\0'};
const unsigned char *iter = data + size - sizeof(HUAWEI_END_MARKER);
if(iter < data)
{
fprintf(stderr, "filesize too small\n");
return 0;
}
if(memcmp(iter, HUAWEI_END_MARKER, sizeof(HUAWEI_END_MARKER)))
{
fprintf(stderr, "trailer doesn't end with \"DepthEn\\0\"\n");
return 0;
}
// The 4 bytes before that are the relative jump to the start of the depth map structure
iter -= 4;
if(iter < data)
{
fprintf(stderr, "filesize too small\n");
return 0;
}
const uint32_t dm_block_size = read_ui32(iter);
// go to the start of the data structure where the depth map is in
iter -= dm_block_size;
if(iter < data)
{
fprintf(stderr, "filesize too small\n");
return 0;
}
const unsigned char *dm_start = iter;
const unsigned char *dm_data_start = dm_start + dm_header_size;
print_hex(file_data, dm_start, dm_header_size);
switch(dm_start[3])
{
case 0x10: *orientation = 1; break;
case 0x11: *orientation = 8; break;
case 0x12: *orientation = 3; break;
case 0x13: *orientation = 6; break;
default: break;
}
const uint16_t width = read_ui16(dm_start + 12);
const uint16_t height = read_ui16(dm_start + 14);
if(width * height > dm_block_size)
{
fprintf(stderr, "broken file\n");
return 0;
}
// now we need the original color image
iter = dm_start - 12;
if(iter < data)
{
fprintf(stderr, "filesize too small\n");
return 0;
}
if(memcmp(iter + 4, "edof", 4) || read_ui32(iter + 8) != 0)
{
fprintf(stderr, "unexpected file content\n");
return 0;
}
const uint32_t jpeg_size = read_ui32(iter);
iter -= jpeg_size;
if(iter < data)
{
fprintf(stderr, "filesize too small\n");
return 0;
}
const unsigned char *jpeg_data_start = iter;
*cv = jpeg_data_start;
*cv_size = jpeg_size;
*dm = dm_data_start;
*dm_size = width * height;
*dm_width = width;
*dm_height = height;
*dm_type = TYPE_RAW;
return 1;
}
// read color images and depth maps from Apple files
int parse_apple_trailer(const unsigned char *data, const unsigned char **cv, size_t *cv_size,
const unsigned char **dm, size_t *dm_size,
image_type_t *dm_type,
const unsigned char **mask, size_t *mask_size, image_type_t *mask_type)
{
// Apple just concatenates three JPEGs. First the color view, then a tiny depth map
// and then a mostly black and white mask.
if(!(data[0] == 0xff && data[1] == 0xd8))
return 0;
uint32_t _orientation;
const unsigned char *trailer = parse_jpeg(data, &_orientation);
*cv = file_data;
*cv_size = data - file_data;
*dm = data;
*dm_size = trailer - data;
*dm_type = TYPE_JPEG;
*mask = trailer;
*mask_size = file_size - *cv_size - *dm_size;
*mask_type = TYPE_JPEG;
return 1;
}
int main(int argc, char *argv[])
{
int result = 1;
uint32_t orientation = 0;
const unsigned char *cv = NULL, *dm = NULL, *extra_image = NULL;
size_t cv_size = 0, dm_width = 0, dm_height = 0, dm_size = 0,
extra_image_width = 0, extra_image_height = 0, extra_image_size = 0;
image_type_t dm_type = TYPE_NONE, extra_image_type = TYPE_NONE;
int data_found = 0;
if(argc != 2)
{
fprintf(stderr, "Usage: %s <input file>\n", argv[0]);
exit(1);
}
const char *filename = argv[1];
const char *filename_cv = "cv.jpg";
const char *filename_dm_pgm = "dm.pgm";
const char *filename_dm_jpg = "dm.jpg";
const char *filename_extra_image_pgm = "extra.pgm";
const char *filename_extra_image_jpg = "extra.jpg";
// read the file
file_data = read_file(filename, &file_size);
if(!file_data)
goto end;
// check that it is a JPEG
if(file_size < 2)
{
fprintf(stderr, "file too small\n");
goto end;
}
if(file_data[0] != 0xff || file_data[1] != 0xd8)
{
fprintf(stderr, "not a JPEG\n");
goto end;
}
// read the JPEG to get the orientation from Exif
// http://jpegclub.org/exif_orientation.html
printf("Parsing JPEG structure\n\n");
const unsigned char *trailer = parse_jpeg(file_data, &orientation);
const size_t trailer_size = file_size - (trailer - file_data);
// look for the Samsung data
printf("Looking for Samsung trailer\n\n");
if(!parse_samsung_trailer(file_data, file_size, &cv, &cv_size, &dm, &dm_size,
&dm_width, &dm_height, &dm_type, &orientation))
printf("\nEither no Samsung trailer found or unable to parse it\n");
else
{
printf("\nSuccessfull\n");
data_found = 1;
}
// ... if no Samsung data was found, look for Huawei data
if(!data_found)
{
printf("Looking for Huawei trailer\n\n");
if(!parse_huawei_trailer(file_data, file_size, &cv, &cv_size, &dm, &dm_size,
&dm_width, &dm_height, &dm_type, &orientation))
printf("\nEither no Huawei trailer found or unable to parse it\n");
else
{
printf("\nSuccessfull\n");
data_found = 1;
}
}
// ... maybe it's an Apple file?
if(!data_found)
{
printf("Looking for Apple data\n\n");
if(!parse_apple_trailer(trailer, &cv, &cv_size, &dm, &dm_size,
&dm_type, &extra_image, &extra_image_size, &extra_image_type))
printf("\nEither no Apple trailer found or unable to parse it\n");
else
{
printf("\nSuccessfull\n");
data_found = 1;
}
}
// TODO: LG seems to work similar to Apple. they also concatenate JPEGs for color views,
// but then have a depth map in raw format it seems.
printf("image orientation is %u\n", orientation);
// return the results (by writing them to disk)
if(!data_found)
{
fprintf(stderr, "couldn't find color image and depth map\n");
goto end;
}
FILE *fd = fopen(filename_cv, "wb");
fwrite(cv, 1, cv_size, fd);
fclose(fd);
if(dm_type == TYPE_RAW)
{
fd = fopen(filename_dm_pgm, "wb");
fprintf(fd, "P5\n%ld %ld\n255\n", dm_width, dm_height);
fwrite(dm, 1, dm_size, fd);
fclose(fd);
}
else if(dm_type == TYPE_JPEG)
{
fd = fopen(filename_dm_jpg, "wb");
fwrite(dm, 1, dm_size, fd);
fclose(fd);
}
if(extra_image_type == TYPE_RAW)
{
fd = fopen(filename_extra_image_pgm, "wb");
fprintf(fd, "P5\n%ld %ld\n255\n", extra_image_width, extra_image_height);
fwrite(dm, 1, extra_image_size, fd);
fclose(fd);
}
else if(extra_image_type == TYPE_JPEG)
{
fd = fopen(filename_extra_image_jpg, "wb");
fwrite(extra_image, 1, extra_image_size, fd);
fclose(fd);
}
result = 0;
// cleanup
end:
free(file_data);
file_data = NULL;
return result;
}