00001 /* 00002 * 00003 * Copyright (C) 1998-2010, OFFIS e.V. 00004 * All rights reserved. See COPYRIGHT file for details. 00005 * 00006 * This software and supporting documentation were developed by 00007 * 00008 * OFFIS e.V. 00009 * R&D Division Health 00010 * Escherweg 2 00011 * D-26121 Oldenburg, Germany 00012 * 00013 * 00014 * Module: dcmimage 00015 * 00016 * Author: Joerg Riesmeier 00017 * 00018 * Purpose: DicomYBRPart422Image (Header) 00019 * 00020 * Last Update: $Author: joergr $ 00021 * Update Date: $Date: 2010-10-14 13:16:30 $ 00022 * CVS/RCS Revision: $Revision: 1.11 $ 00023 * Status: $State: Exp $ 00024 * 00025 * CVS/RCS Log at end of file 00026 * 00027 */ 00028 00029 00030 #ifndef DIYP2IMG_H 00031 #define DIYP2IMG_H 00032 00033 #include "dcmtk/config/osconfig.h" 00034 00035 #include "dcmtk/dcmimage/dicoimg.h" 00036 00037 00038 /*---------------------* 00039 * class declaration * 00040 *---------------------*/ 00041 00044 class DiYBRPart422Image 00045 : public DiColorImage 00046 { 00047 00048 public: 00049 00055 DiYBRPart422Image(const DiDocument *docu, 00056 const EI_Status status); 00057 00060 virtual ~DiYBRPart422Image(); 00061 00068 virtual int processNextFrames(const unsigned long fcount); 00069 00070 00071 protected: 00072 00075 void Init(); 00076 }; 00077 00078 00079 #endif 00080 00081 00082 /* 00083 * 00084 * CVS/RCS Log: 00085 * $Log: diyp2img.h,v $ 00086 * Revision 1.11 2010-10-14 13:16:30 joergr 00087 * Updated copyright header. Added reference to COPYRIGHT file. 00088 * 00089 * Revision 1.10 2009-11-25 14:38:55 joergr 00090 * Adapted code for new approach to access individual frames of a DICOM image. 00091 * 00092 * Revision 1.9 2005/12/08 16:02:04 meichel 00093 * Changed include path schema for all DCMTK header files 00094 * 00095 * Revision 1.8 2003/12/17 18:13:01 joergr 00096 * Removed leading underscore characters from preprocessor symbols (reserved 00097 * symbols). 00098 * 00099 * Revision 1.7 2001/11/09 16:46:02 joergr 00100 * Updated/Enhanced comments. 00101 * 00102 * Revision 1.6 2001/06/01 15:49:33 meichel 00103 * Updated copyright header 00104 * 00105 * Revision 1.5 2000/03/08 16:21:55 meichel 00106 * Updated copyright header. 00107 * 00108 * Revision 1.4 1999/04/28 12:52:05 joergr 00109 * Corrected some typos, comments and formatting. 00110 * 00111 * Revision 1.3 1998/11/27 14:22:17 joergr 00112 * Added copyright message. 00113 * 00114 * Revision 1.2 1998/05/11 14:53:33 joergr 00115 * Added CVS/RCS header to each file. 00116 * 00117 * 00118 */