00001 /* 00002 * 00003 * Copyright (C) 1996-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: DicomYBR422Image (Header) 00019 * 00020 * Last Update: $Author: joergr $ 00021 * Update Date: $Date: 2010-10-14 13:16:30 $ 00022 * CVS/RCS Revision: $Revision: 1.13 $ 00023 * Status: $State: Exp $ 00024 * 00025 * CVS/RCS Log at end of file 00026 * 00027 */ 00028 00029 00030 #ifndef DIYF2IMG_H 00031 #define DIYF2IMG_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 DiYBR422Image 00045 : public DiColorImage 00046 { 00047 00048 public: 00049 00055 DiYBR422Image(const DiDocument *docu, 00056 const EI_Status status); 00057 00060 virtual ~DiYBR422Image(); 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: diyf2img.h,v $ 00086 * Revision 1.13 2010-10-14 13:16:30 joergr 00087 * Updated copyright header. Added reference to COPYRIGHT file. 00088 * 00089 * Revision 1.12 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.11 2005/12/08 16:02:02 meichel 00093 * Changed include path schema for all DCMTK header files 00094 * 00095 * Revision 1.10 2003/12/17 18:12:42 joergr 00096 * Removed leading underscore characters from preprocessor symbols (reserved 00097 * symbols). 00098 * 00099 * Revision 1.9 2001/11/09 16:46:01 joergr 00100 * Updated/Enhanced comments. 00101 * 00102 * Revision 1.8 2001/06/01 15:49:32 meichel 00103 * Updated copyright header 00104 * 00105 * Revision 1.7 2000/04/27 13:15:15 joergr 00106 * Dcmimage library code now consistently uses ofConsole for error output. 00107 * 00108 * Revision 1.6 2000/03/08 16:21:54 meichel 00109 * Updated copyright header. 00110 * 00111 * Revision 1.5 2000/03/03 14:07:52 meichel 00112 * Implemented library support for redirecting error messages into memory 00113 * instead of printing them to stdout/stderr for GUI applications. 00114 * 00115 * Revision 1.4 1999/04/28 12:52:04 joergr 00116 * Corrected some typos, comments and formatting. 00117 * 00118 * Revision 1.3 1998/11/27 14:19:46 joergr 00119 * Added copyright message. 00120 * 00121 * Revision 1.2 1998/05/11 14:53:32 joergr 00122 * Added CVS/RCS header to each file. 00123 * 00124 * 00125 */