forked from DCMTK/dcmtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDCMIMAGE.11X
1006 lines (776 loc) · 32.6 KB
/
DCMIMAGE.11X
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
Changes between releases are documented here.
**** Changes from 2000.12.13 (eichelberg)
- Introduced configure test for -lm which is not present on all
platforms but required on some.
Affects: dcmimage/apps/Makefile.in
**** Changes from 2000.12.08 (riesmeier)
- Added new checking routines to avoid crashes when processing corrupted image
data.
Affects: dcmimage/include/dicocpt.h
dcmimage/include/dicoflt.h
dcmimage/include/dicorot.h
dcmimage/include/dicosct.h
- Rebuilt makefile dependencies.
Affects: dcmimage/libsrc/Makefile.dep
**** Changes from 2000.07.06 (riesmeier)
- Added support for LIN OD presentation LUT shape.
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/docs/dcm2pnm.txt
**** Changes from 2000.06.09 (riesmeier)
- Updated dcm2pnm documentation.
Affects: dcmimage/docs/dcm2pnm.txt
**** Changes from 2000.06.07 (riesmeier)
- Added new command line option to change the polarity.
Affects: dcmimage/apps/dcm2pnm.cc
- Rebuilt makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
**** Changes from 2000.04.28 (riesmeier)
- DebugLevel - global for the module - now derived from OFGlobal (MT-safe).
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/include/dihsvpxt.h
dcmimage/include/diyf2pxt.h
dcmimage/include/diyp2pxt.h
dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dicoimg.cc
dcmimage/libsrc/dicopx.cc
dcmimage/libsrc/dipalimg.cc
**** Changes from 2000.04.27 (riesmeier)
- Dcmimage library code now consistently uses ofConsole for error output.
Affects: dcmimage/include/diargpxt.h
dcmimage/include/dicmypxt.h
dcmimage/include/dihsvpxt.h
dcmimage/include/dipalpxt.h
dcmimage/include/dirgbpxt.h
dcmimage/include/diybrpxt.h
dcmimage/include/diyf2img.h
dcmimage/include/diyf2pxt.h
dcmimage/include/diyp2pxt.h
dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dicoimg.cc
dcmimage/libsrc/dicopx.cc
dcmimage/libsrc/dipalimg.cc
- Adapted output method to new behaviour of dcmimgle library supporting the
specification of a start frame and the number of frames to be converted.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 2000.04.14 (eichelberg)
- Adapted to changed parameter list for command line class
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 2000.03.30 (riesmeier)
- Corrected wrong bit expansion of output pixel data (left shift is not
correct).
Affects: dcmimage/include/dicoopxt.h
dcmimage/libsrc/dicoimg.cc
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Release 1.1.1 (Release date - 2000-03-10)
- Changed Release version and date.
Affects: dcmimage/include/diregist.h
**** Changes from 2000.03.08 (eichelberg)
- Updated copyright header.
Affects: dcmimage/*/*.cc
dcmimage/*/*.h
**** Changes from 2000.03.07 (riesmeier)
- Added type cast to make Sun CC 2.0.1 happy.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 2000.03.03 (eichelberg)
- Implemented library support for redirecting error messages into memory
instead of printing them to stdout/stderr for GUI applications.
See ofstd/include/ofconsol for a description of this feature.
Thanks to Markus Mertens <[email protected]> for this
contribution.
Affects: dcmimage/apps/Makefile.dep
dcmimage/apps/dcm2pnm.cc
dcmimage/include/dihsvpxt.h
dcmimage/include/diyf2img.h
dcmimage/include/diyf2pxt.h
dcmimage/include/diyp2pxt.h
dcmimage/libsrc/Makefile.dep
dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dicoimg.cc
dcmimage/libsrc/dicopx.cc
dcmimage/libsrc/dipalimg.cc
dcmimage/tests/test.cc
**** Changes from 2000.02.29 (eichelberg)
- Removed support for VS value representation. This was proposed in CP 101
but never became part of the standard.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
**** Changes from 2000.02.23 (eichelberg)
- Corrected macro for Borland C++ Builder 4 workaround.
Affects: dcmimage/include/dicoopx.h
**** Changes from 2000.02.02 (riesmeier)
- Removed space characters before preprocessor directives.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 2000.02.01 (eichelberg)
- Avoiding to include <stdlib.h> as extern "C" on Borland C++ Builder 4,
workaround for bug in compiler header files.
Affects: dcmimage/include/dicoopx.h
**** Changes from 1999.10.20 (riesmeier)
- Added missing generic makefile.
Added: dcmimage/docs/Makefile.in
**** Changes from 1999.10.08 (riesmeier)
- Corrected typo. Handled 'quiet' mode more restrictive.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1999.09.30 (riesmeier)
- Added missing directory entries to make file.
Affects: dcmimage/Makefile.in
**** Changes from 1999.09.17 (riesmeier)
- Enhanced efficiency of some "for" loops.
Affects: dcmimage/include/dicmypxt.h
dcmimage/include/dicomot.h
dcmimage/include/dicoopxt.h
dcmimage/include/dicopxt.h
dcmimage/include/dihsvpxt.h
dcmimage/include/dipalpxt.h
dcmimage/include/dirgbpxt.h
dcmimage/include/diybrpxt.h
dcmimage/include/diyf2pxt.h
dcmimage/include/diyp2pxt.h
- Added "htmldocs" directory and an option to the make file to delete all
HTML related files ('make distclean').
Added: dcmimage/htmldocs
dcmimage/htmldocs/Makefile.in
Affects: dcmimage/Makefile.in
- Corrected typos and formatting.
Affects: dcmimage/apps/dcm2pnm.cc
- Rebuild makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
**** Changes from 1999.09.13 (riesmeier)
- Changed (almost) all output commands from C to C++ style (using string
streams). Advantage: C++ output routines are type safe and using the
same output streams (in this case 'cerr').
Introduced (more or less) consistent format for output messages.
Enhanced quiet mode (also warning and error messages are suppressed).
Corrected some typos in usage output / changed names of some options.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1999.09.10 (riesmeier)
- Added support for CIELAB display function.
Affects: dcmimage/apps/Makefile.dep
dcmimage/apps/dcm2pnm.cc
dcmimage/libsrc/Makefile.dep
- Added check whether display filename is specified or not to avoid
unnecessary warning messages.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1999.08.25 (riesmeier)
- Added new feature: Allow clipping region to be outside the image
(overlapping).
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/include/dicoimg.h
dcmimage/include/dicosct.h
dcmimage/libsrc/dicoimg.cc
**** Changes from 1999.08.17 (riesmeier)
- Commented unused parameter name to avoid compiler warnings.
Affects: dcmimage/include/dicoopxt.h
- Removed unused parameter.
Affects: dcmimage/include/dicoopxt.h
dcmimage/libsrc/dicoimg.cc
**** Changes from 1999.07.23 (riesmeier)
- Added new interpolation algorithm for scaling.
Affects: dcmimage/apps/dcm2pnm.cc
- Added command line option '--quiet'.
Affects: dcmimage/apps/dcm2pnm.cc
- Added support for frame selection.
Affects: dcmimage/apps/dcm2pnm.cc
- Added support for 2..32 bit pnm/pgm export
Affects: dcmimage/apps/dcm2pnm.cc
- Enhanced handling of corrupted pixel data (wrong length).
Affects: dcmimage/libsrc/dicoimg.cc
dcmimage/libsrc/dicoopx.cc
dcmimage/include/dicoopx.h
dcmimage/include/dicoopxt.h
- Removed inline method 'removeSign'which is no longer needed.
Affects: dcmimage/include/dicopxt.h
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Release 1.1.0 (Release date - 1999-05-31)
- Changed Release version and date.
Affects: dcmimage/include/diregist.h
- Modified some command line options.
Affects: dcmimage/apps/dcm2pnm.cc
- Corrected bug concerning the conversion of color images to grayscale.
Affects: dcmimage/include/dicomot.h
dcmimage/libsrc/diregist.cc
**** Changes from 1999.05.10 (riesmeier)
- Moved dcm2pnm version definition from module dcmimgle to dcmimage.
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/include/diregist.h
**** Changes from 1999.05.03 (riesmeier)
- Minor code purifications to keep Sun CC 2.0.1 quiet.
Affects: dcmimage/include/dipalpxt.h
dcmimage/libsrc/dicoimg.cc
**** Changes from 1999.04.30 (eichelberg)
- Minor code purifications to keep IBM xlC quiet
Affects: dcmimage/include/dicoopxt.h
**** Changes from 1999.04.29 (eichelberg)
- Linking all tools that use dcmimgle with -lm, required on OSF1.
Affects: dcmimage/apps/Makefile.in
**** Changes from 1999.04.29 (riesmeier)
- Moved color related image files back to non-public part.
Affects: dcmimage/libsrc/Makefile.dep
dcmimage/libsrc/Makefile.in
Added: dcmimage/include/dicoopx.h
dcmimage/include/dicoopxt.h
dcmimage/include/dicopx.h
dcmimage/libsrc/dicoopx.cc
**** Changes from 1999.04.28 (riesmeier)
- Merged change log for module dcmimgle into main change log. Removed
entries from change file for module dcmimage.
Affects: dcmimage/CHANGES
- Introduced new scheme for the debug level variable: now each level can be
set separately (there is no "include" relationship).
Affects: dcmimage/include/dihsvpxt.h
dcmimage/include/diyf2pxt.h
dcmimage/include/diyp2pxt.h
dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dicoimg.cc
dcmimage/libsrc/dicopx.cc
dcmimage/libsrc/dipalimg.cc
- Corrected some typos, comments and formatting.
Affects: dcmimage/include/diargimg.h
dcmimage/include/diargpxt.h
dcmimage/include/dicmyimg.h
dcmimage/include/dicmypxt.h
dcmimage/include/dicocpt.h
dcmimage/include/dicoflt.h
dcmimage/include/dicoimg.h
dcmimage/include/dicomot.h
dcmimage/include/dicopxt.h
dcmimage/include/dicorot.h
dcmimage/include/dicosct.h
dcmimage/include/dihsvimg.h
dcmimage/include/dipalimg.h
dcmimage/include/dipalpxt.h
dcmimage/include/dirgbimg.h
dcmimage/include/dirgbpxt.h
dcmimage/include/diybrimg.h
dcmimage/include/diybrpxt.h
dcmimage/include/diyf2img.h
dcmimage/include/diyp2img.h
dcmimage/libsrc/dicmyimg.cc
dcmimage/libsrc/dihsvimg.cc
dcmimage/libsrc/dirgbimg.cc
dcmimage/libsrc/diyf2img.cc
dcmimage/libsrc/diyp2img.cc
- Moved files to dcmimgle module to support new pastel color output format.
Affects: dcmimage/libsrc/Makefile.in
Removed: dcmimage/include/dicoopx.h
dcmimage/include/dicoopxt.h
dcmimage/include/dicopx.h
dcmimage/libsrc/dicoopx.cc
- Rebuilt Makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
- Added some checks to avoid dereferencing null pointers.
Affects: dcmimage/libsrc/diregist.cc
- Added experimental support to create grayscale images with more than 256
shades of gray to be displayed on a consumer monitor (use pastel colors).
Affects: dcmimage/libsrc/dcm2pnm.cc
- Modified some command line options (not yet finished).
Affects: dcmimage/libsrc/dcm2pnm.cc
- Adapted console application to new OFCommandline and OFConsoleApplication
features.
Affects: dcmimage/libsrc/dcm2pnm.cc
- Added dcmimgle module to DOC++ search path to create a common HTML document.
Affects: dcmimage/Makefile.in
**** Changes from 1999.03.24 (riesmeier)
- Changed optional integer parameter in method findOption to enum type.
Affects: dcmimage/apps/dcm2pnm.cc
- Removed debug code.
Affects: dcmimage/apps/dcm2pnm.cc
- Added/Modified comments and formatting.
Affects: dcmimage/libsrc/diregist.cc
**** Changes from 1999.03.22 (riesmeier)
- Rebuilt Makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
**** Changes from 1999.02.23 (riesmeier)
- Corrected some typos and formatting.
Affects: dcmimage/apps/Makefile.in
**** Changes from 1999.02.11 (riesmeier)
- Rebuilt Makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
- Added testing routine for new isOutputValueUnused() method.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1999.02.08 (riesmeier)
- Rebuilt Makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
- Moved output/checking functionality to new OFConsoleApplication class.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1999.02.03 (riesmeier)
- Rebuilt Makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
- Moved global functions maxval() and determineRepresentation() to class
DicomImageClass (as static methods).
Affects: dcmimage/include/diargpxt.h
dcmimage/include/dicmypxt.h
dcmimage/include/dihsvpxt.h
dcmimage/include/dirgbpxt.h
dcmimage/include/diybrpxt.h
dcmimage/include/diyf2pxt.h
dcmimage/include/diyp2pxt.h
dcmimage/libsrc/dicoimg.cc
- Added new option to select a display file (for calibration).
Affects: dcmimage/apps/dcm2pnm.cc
- Added BEGIN_EXTERN_C and END_EXTERN_C to some C includes.
Affects: dcmimage/include/dicoopx.h
**** Changes from 1999.01.20 (riesmeier)
- Rebuilt Makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
- Added debug code to measure time of some routines.
Affects: dcmimage/apps/dcm2pnm.cc
- Changed default value for compatibility flag.
Affects: dcmimage/apps/dcm2pnm.cc
- Replaced invocation of getCount() by member variable Count where possible.
Affects: dcmimage/include/diargpxt.h
dcmimage/include/dicmypxt.h
dcmimage/include/dicomot.h
dcmimage/include/dicoopx.h
dcmimage/include/dicoopxt.h
dcmimage/include/dihsvpxt.h
dcmimage/include/dipalpxt.h
dcmimage/include/dirgbpxt.h
dcmimage/include/diybrpxt.h
dcmimage/include/diyf2pxt.h
dcmimage/include/diyp2pxt.h
dcmimage/libsrc/dicoopx.cc
- Corrected some typos and formatting.
Affects: dcmimage/include/dicocpt.h
dcmimage/include/dicopx.h
dcmimage/include/dicopxt.h
- Added new output method to fill external memory buffer with rendered pixel
data.
Affects: dcmimage/include/dicoimg.h
dcmimage/include/dicoopxt.h
dcmimage/libsrc/dicoimg.cc
**** Changes from 1998.12.22 (riesmeier)
- Corrected spelling of option used for scaling without interpolation.
Use presentation LUT shape only when set explicitly.
Affects: dcmimage/apps/dcm2pnm.cc
- Added comments that the routines for expanding pixel's depth have to be
enhanced in the future (replicate bit pattern instead of shifting). Same
question for reducing depth.
Affects: dcmimage/include/dicoopxt.h
**** Changes from 1998.12.16 (riesmeier)
- Rebuilt Makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
- Added (debug) code to test new explanation strings and export of overlay
planes.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1998.12.14 (riesmeier)
- Rebuilt Makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
- Changed behaviour of debug and verbose mode.
Affects: dcmimage/apps/dcm2pnm.cc
- Added support for presentation shapes.
Affects: dcmimage/apps/dcm2pnm.cc
- Added support for signed values as second entry in look-up tables
(= first value mapped).
Affects: dcmimage/include/diargpxt.h
dcmimage/include/dipalpxt.h
dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dipalimg.cc
- Added implementation of method to create rotated color images.
Affects: dcmimage/libsrc/dicoimg.cc
**** Changes from 1998.11.30 (riesmeier)
- Inserted newlines in the description of command line arguments to avoid
ugly line breaks.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1998.11.27 (riesmeier)
- Splitted module into two parts: dcmimgle (light edition) for monochrome
images and dcmimage (including dcm2pnm) for color images.
Added registration class to allow easy combination of both modules.
Affects: dcmimage/apps/Makefile.dep
dcmimage/apps/Makefile.in
dcmimage/apps/dcm2pnm.cc
dcmimage/libsrc/Makefile.dep
dcmimage/libsrc/Makefile.in
modules/modules
Added: dcmimage/include/diregist.h
dcmimage/libsrc/diregist.cc
Removed: dcmimage/include/dcmimage.h
dcmimage/include/diclipt.h
dcmimage/include/dicoclt.h
dcmimage/include/didocu.h
dcmimage/include/diimage.h
dcmimage/include/diinpx.h
dcmimage/include/diluptab.h
dcmimage/include/dimo1img.h
dcmimage/include/dimo2img.h
dcmimage/include/dimoimg.h
dcmimage/include/dimoipxt.h
dcmimage/include/dimomod.h
dcmimage/include/dimoopx.h
dcmimage/include/dimoopxt.h
dcmimage/include/dimopx.h
dcmimage/include/dimopxt.h
dcmimage/include/dimosct.h
dcmimage/include/diobjcou.h
dcmimage/include/diovlay.h
dcmimage/include/diovlimg.h
dcmimage/include/diovpln.h
dcmimage/include/dipxrept.h
dcmimage/include/discalet.h
dcmimage/include/ditranst.h
dcmimage/include/diutils.h
dcmimage/libsrc/dcmimage.cc
dcmimage/libsrc/didocu.cc
dcmimage/libsrc/diimage.cc
dcmimage/libsrc/diinpx.cc
dcmimage/libsrc/diluptab.cc
dcmimage/libsrc/dimo1img.cc
dcmimage/libsrc/dimo2img.cc
dcmimage/libsrc/dimoimg.cc
dcmimage/libsrc/dimomod.cc
dcmimage/libsrc/dimoopx.cc
dcmimage/libsrc/dimopx.cc
dcmimage/libsrc/diovlay.cc
dcmimage/libsrc/diovlimg.cc
dcmimage/libsrc/diovpln.cc
dcmimage/libsrc/diutils.cc
- Added copyright message to all source files. Started with documentation
in Doc++ notation.
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/include/*.h
dcmimage/libsrc/*.cc
- Added 'make html' to automatically create a HTML documentation using Doc++.
Affects: dcmimage/Makefile.in
- Modified tool dcm2pnm to use new command line class. New dcmimage methods
supported (flipping, rotating etc.).
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/apps/Makefile.dep
- Added methods and constructors for flipping and rotating, changed for
scaling and clipping.
Affects: dcmimage/include/dicoimg.h
dcmimage/include/dicoflt.h
dcmimage/include/dicorot.h
- Replaced delete by delete[] for array types.
Affects: dcmimage/include/dicoopxt.h
dcmimage/include/dicopxt.h
- Added method to directly create java AWT bitmaps.
Affects: dcmimage/include/dicopx.h
- Added method to give direct (non-const) access to internal data buffer.
Affects: dcmimage/include/dicopxt.h
- Introduced global debug level for dcmimage module to control error output.
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/include/diyf2pxt.h
dcmimage/include/diyp2pxt.h
dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dicopx.cc
dcmimage/libsrc/dipalimg.cc
- Renamed variable 'Status' to 'ImageStatus' because of possible conflicts
with X windows systems.
Affects: dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dicmyimg.cc
dcmimage/libsrc/dihsvimg.cc
dcmimage/libsrc/dipalimg.cc
dcmimage/libsrc/dirgbimg.cc
dcmimage/libsrc/diybrimg.cc
dcmimage/libsrc/diyf2img.cc
dcmimage/libsrc/diyp2img.cc
- Added method to detach pixel data if it is no longer needed.
Affects: dcmimage/libsrc/dicoimg.cc
- Introduced new method and corresponding classes to create a copy of a
dcmimage object (optional parameters: frame start and count).
Added: dcmimage/include/dicocpt.h
- Introduced new pixel base class.
Affects: dcmimage/include/dicopx.h
dcmimage/libsrc/dicopx.cc
- Combined clipping and scaling methods.
Affects: dcmimage/include/dicosct.h
**** Changes from 1998.07.24 (eichelberg)
- Introduced a Makefile variable $(LIBEXT) which defines
the file name extension used for libraries ("a" or "so").
Affects: dcmimage/libsrc/Makefile.in
**** Changes from 1998.07.01 (riesmeier)
- Minor changes to avoid compiler warnings (gcc 2.8.1 with additional
options), e.g. add copy constructors.
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/libsrc/dcmimage.cc
dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/didocu.cc
dcmimage/libsrc/dipalimg.cc
dcmimage/include/dcmimage.h
dcmimage/include/diargpxt.h
dcmimage/include/dicoimg.h
dcmimage/include/dicoopxt.h
dcmimage/include/didocu.h
dcmimage/include/diimage.h
dcmimage/include/diinpxt.h
dcmimage/include/diluptab.h
dcmimage/include/dimoimg.h
dcmimage/include/dimoipxt.h
dcmimage/include/dimomod.h
dcmimage/include/dimoopxt.h
dcmimage/include/dimopx.h
dcmimage/include/dimopxt.h
dcmimage/include/diovlay.h
dcmimage/include/diovpln.h
dcmimage/include/dipalpxt.h
**** Changes from 1998.06.29 (eichelberg)
- Rebuilt Makefile dependencies.
Affects: dcmimage/libsrc/Makefile.dep
**** Changes from 1998.06.25 (riesmeier)
- Minor changes to syntax description of dcm2pnm.
Affects: dcmimage/apps/dcm2pnm.cc
- Added description of new compatibility options.
Affects: dcmimage/docs/dcm2pnm.txt
**** Changes from 1998.06.23 (riesmeier)
- Print 'maximum/minimum pixel value' (verbose mode) only for
monochrome images.
Affects: dcmimage/apps/dcm2pnm.cc
- Added compatibility mode to support ACR-NEMA images and wrong
palette attribute tags.
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/libsrc/dcmimage.cc
dcmimage/libsrc/didocu.cc
dcmimage/libsrc/dipalimg.cc
dcmimage/include/dcmimage.h
dcmimage/include/didocu.h
dcmimage/include/diutils.h
**** Changes from 1998.05.11 (riesmeier)
- Minor changes to some comments.
Affects: dcmimage/Makefile.in
dcmimage/apps/dcm2pnm.cc
**** Changes from 1998.04.23 (riesmeier)
- Added CVS/RCS header to each file.
Affects: dcmimage/libsrc/*.cc
dcmimage/include/*.h
**** Changes from 1998.04.01 (riesmeier)
- Added support for new color models YBR_FULL, YBR_FULL_422 and
YBR_PARTIAL_422.
Affects: dcmimage/libsrc/Makefile.in
dcmimage/libsrc/Makefile.dep
dcmimage/apps/Makefile.dep
dcmimage/include/dcmimage.h
dcmimage/libsrc/dcmimage.cc
Added: dcmimage/include/diybrimg.h
dcmimage/include/diybrpxt.h
dcmimage/libsrc/diybrimg.cc
dcmimage/include/diyf2img.h
dcmimage/include/diyf2pxt.h
dcmimage/libsrc/diyf2img.cc
dcmimage/include/diyp2img.h
dcmimage/include/diyp2pxt.h
dcmimage/libsrc/diyp2img.cc
- Added another case called "simple mask" to decode input data.
Affects: dcmimage/include/diinpxt.h
- Added Test: Value of 'OverlayBitsAllocated' should correspond
to value of 'BitsAllocated' (see Correction Prosposal 87).
Affects: dcmimage/libsrc/diovlay.cc
- Renamed test.cxx to test.cc.
Affects: dcmimage/tests/test.cxx
- Replaced all tab characters by spaces to avoid different
representations.
Affects: dcmimage/include/*.h
dcmimage/libsrc/*.cc
**** Changes from 1998.03.09 (riesmeier)
- Added type cast to avoid warnings with MSVC.
Affects: dcmimage/include/dimoopxt.h
**** Changes from 1998.03.09 (riesmeier)
- Made 'return' last statement in some non-void functions.
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/include/dimopxt.h
dcmimage/include/diovpln.h
dcmimage/libsrc/diutils.cc
**** Changes from 1998.03.05 (riesmeier)
- Removed meaningless type qualifier 'const' on some cast types.
Affects: dcmimage/include/diargpxt.h
dcmimage/include/dicmypxt.h
dcmimage/include/dihsvpxt.h
dcmimage/include/dimoipxt.h
dcmimage/include/dimoopxt.h
dcmimage/include/dimopxt.h
dcmimage/include/dirgbpxt.h
dcmimage/libsrc/dimo1img.cc
dcmimage/libsrc/dimo2img.cc
- Removed meaningless type qualifier 'const' in some declarations.
Affects: dcmimage/include/diovpln.h
- Made 'return' last statement in some non-void functions.
Affects: dcmimage/include/dicoopxt.h
dcmimage/include/dicopxt.h
**** Changes from 1998.03.03 (riesmeier)
- Removed some name clashes reported by Sun CC4.
Affects: dcmimage/include/diclipt.h
dcmimage/include/dicosct.h
dcmimage/include/dicoclt.h
dcmimage/include/dimosct.h
dcmimage/include/dimoclt.h
dcmimage/include/dimoimg.h
dcmimage/include/discalet.h
dcmimage/libsrc/dimo1img.cc
dcmimage/libsrc/dimo2img.cc
dcmimage/libsrc/dimoimg.cc
dcmimage/libsrc/diovlay.cc
**** Changes from 1998.02.17 (eichelberg)
- Updated dcmimage version number to 1.0.2
to reflect version compatible with dcmtk 3.3.1
Affects: dcmimage/include/dcmimage.h
- Added license info to usage string.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1998.02.07 (eichelberg)
- Removed many name clashes reported by Sun CC4.
Affects: dcmimage/include/discalet.h
dcmimage/libsrc/diimage.cc
**** Changes from 1997.10.01 (eichelberg)
- Introduced separate version number and date for dcmimage.
OFFIS_DCMIMAGE_VERSION and OFFIS_DCMIMAGE_RELEASEDATE
are declared in dcmimage.h.
Affects: dcmimage/include/dcmimage.h
dcmimage/apps/dcm2pnm.cc
- Corrected declaration of expandSign() for Sint8 values.
Affects: dcmimage/include/diinpxt.h
- Removed -DREVERSE_OVERLAY_ORIGIN_ORDER from default
compile options.
Affects: dcmimage/libsrc/Makefile.in
**** Changes from 1997.09.18 (eichelberg)
- Minor type conflicts (e.g. long passed as int) solved.
Affects: dcmimage/apps/dcm2pnm.cc
- Removed CR characters from some files.
Affects: dcmimage/include/dicopxt.h
dcmimage/include/diimage.h
dcmimage/include/diinpxt.h
dcmimage/include/dimoimg.h
dcmimage/include/dimoipxt.h
dcmimage/include/dimomod.h
dcmimage/include/dimopxt.h
dcmimage/libsrc/diimage.cc
dcmimage/libsrc/dimoimg.cc
dcmimage/libsrc/dimomod.cc
dcmimage/libsrc/diovpln.cc
dcmimage/tests/test.cxx
**** Changes from 1997.09.12 (eichelberg)
- dcxfer.h now included in dcmimage.h (as should be).
Affects: dcmimage/include/dcmimage.h
**** Changes from 1997.07.28 (barth)
- Support for pixel representations (class DcmPixelData)
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/include/dcmimage.h
dcmimage/include/didocu.h
dcmimage/include/diimage.h
dcmimage/include/diinpxt.h
dcmimage/libsrc/Makefile.dep
dcmimage/libsrc/dcmimage.cc
dcmimage/libsrc/didocu.cc
dcmimage/libsrc/diimage.cc
- Additional search routine using a DcmStack
Affects: dcmimage/include/didocu.h
dcmimage/libsrc/didocu.cc
- Surround read method call with calls to transferInit() and
transferEnd()
Affects: dcmimage/libsrc/didocu.cc
**** Changes from 1997.07.21 (barth)
- new PixelData and OverlayData classes
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
- Replace all boolean types (BOOLEAN, CTNBOOLEAN, DICOM_BOOL, BOOL)
with one unique boolean type OFBool.
Affects: dcmimage/apps/Makefile.dep
dcmimage/apps/Makefile.in
dcmimage/libsrc/Makefile.dep
dcmimage/libsrc/Makefile.in
**** Changes from 1997.06.17 (eichelberg)
- all debug messages now go to stderr (instead of stdout).
Affects: dcmimage/include/diinpxt.h
**** Changes from 1997.06.01 (riesmeier)
- cleaned up setWindow() methods. Only one with default parameters remains.
- Added overlay mode EMO_Default. This is identical to EMO_Replace for "G"
(graphical) overlays and to EMO_RegionOfInterest for "R" (ROI) overlays.
- Fixed bug leading to incorrect images when sign-extended pixel data
was "normalized" without any VOI transformation.
Affects: dcmimage/include/diutils.h
dcmimage/include/diovlpln.h
dcmimage/include/dimoopxt.h
dcmimage/include/dcmimage.h
dcmimage/libsrc/diovlpln.cc
**** Changes from 1997.05.29 (eichelberg)
- All dcmtk applications now contain a version string
which is displayed with the command line options ("usage" message)
and which can be queried in the binary with the "ident" command.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1997.05.28 (eichelberg)
- Changed dcm2pnm options for MinMax VOI window computation
to match functionality of the toolkit.
Default mode for overlays is now Replace for Graphic overlays
and ROI for ROI overlays. Updated documentation.
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/docs/dcm2pnm.txt
**** Changes from 1997.05.26 (riesmeier)
- new method DicomImage::setWindow() allows to disable VOI windowing
- new method DiDocument::getVM()
- default mode for grayscale images changed from "setMinMaxWindow(0)"
to "no VOI windowing".
- new class DiOverlayData introduced to solve a problem occuring when
images containing overlay planes were copied/scaled/clipped and the
originals deleted before the copy.
- removed workaround in dcm2pnm for the bug mentioned above.
Affects: dcmimage/apps/Makefile.dep
dcmimage/apps/dcm2pnm.cc
dcmimage/include/dcmimage.h
dcmimage/include/didocu.h
dcmimage/include/diobjcou.h
dcmimage/include/diovlay.h
dcmimage/libsrc/Makefile.dep
dcmimage/libsrc/dcmimage.cc
dcmimage/libsrc/didocu.cc
dcmimage/libsrc/dimoimg.cc
dcmimage/libsrc/diovlay.cc
**** Changes from 1997.05.23 (eichelberg)
- Corrected typo introduced by last update causing a
parse error in dcmimage.cc
Affects: dcmimage/libsrc/dcmimage.cc
**** Changes from 1997.05.22 (hewett)
- Modified the test for presence of a data dictionary to use the
method DcmDataDictionary::isDictionaryLoaded().
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/libsrc/dcmimage.cc
**** Changes from 1997.05.16 (barth)
- Revised handling of GroupLength elements and support of
DataSetTrailingPadding elements. The enumeratio E_GrpLenEncoding
got additional enumeration values (for a description see dctypes.h).
addGroupLength and removeGroupLength methods are replaced by
computeGroupLengthAndPadding. To support Padding, the parameters of
element and sequence write functions changed.
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 1997.05.13 (eichelberg)
- Added new application dcm2pnm.
dcm2pnm allows to convert DICOM images to the widely used
PPM/PGM general purpose image format.
dcm2pnm gives access to most functionality offered by the dcmimage
library. It replaces the older (and far less powerful) applications
di2mono, di2ppm, diclip, discale and disize.
Affects: dcmimage/apps/Makefile.dep
dcmimage/apps/Makefile.in
Added: dcmimage/apps/dcm2pnm.cc
Removed: dcmimage/apps/di2mono.cc
dcmimage/apps/di2ppm.cc
dcmimage/apps/diclip.cc
dcmimage/apps/discale.cc
dcmimage/apps/disize.cc
- Added function DicomImage::writeRawPPM()
which takes an open stream instead of a file name as first argument.
Affects: dcmimage/include/dcmimage.h
dcmimage/libsrc/dcmimage.cc
**** Changes from 1997.05.12 (barth)
- Include function getFloat64 into DcmDecimalString and getSint32 into
DcmIntegerString. Remove derived classes for this purpose in the dcmimage
module.
Removed: dcmimage/include/didecstr.h
dcmimage/include/diintstr.h
Affects: dcmimage/libsrc/didocu.cc
**** Changes from 1997.05.06 (eichelberg)
- Removed files contained both in libsrc/ and apps/.
Removed: dcmimage/libsrc/dcm2mono.cc
dcmimage/libsrc/dcm2ppm.cc
dcmimage/libsrc/dcmclip.cc
dcmimage/libsrc/dcmscale.cc
dcmimage/libsrc/dcmsize.cc
Affects: dcmimage/libsrc/Makefile.dep
- Added CHANGES file for dcmimage module.