73 lines
1.3 KiB
C
73 lines
1.3 KiB
C
|
/*
|
||
|
*
|
||
|
* Copyright (C) 1998-2011, OFFIS e.V.
|
||
|
* All rights reserved. See COPYRIGHT file for details.
|
||
|
*
|
||
|
* This software and supporting documentation were developed by
|
||
|
*
|
||
|
* OFFIS e.V.
|
||
|
* R&D Division Health
|
||
|
* Escherweg 2
|
||
|
* D-26121 Oldenburg, Germany
|
||
|
*
|
||
|
*
|
||
|
* Module: dcmimage
|
||
|
*
|
||
|
* Author: Joerg Riesmeier
|
||
|
*
|
||
|
* Purpose: DicomYBRImage (Header)
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef DIYBRIMG_H
|
||
|
#define DIYBRIMG_H
|
||
|
|
||
|
#include "dcmtk/config/osconfig.h"
|
||
|
|
||
|
#include "dcmtk/dcmimage/dicoimg.h"
|
||
|
|
||
|
|
||
|
/*---------------------*
|
||
|
* class declaration *
|
||
|
*---------------------*/
|
||
|
|
||
|
/** Class for YCbCr images
|
||
|
*/
|
||
|
class DCMTK_DCMIMAGE_EXPORT DiYBRImage
|
||
|
: public DiColorImage
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
|
||
|
/** constructor
|
||
|
*
|
||
|
** @param docu pointer to dataset (encapsulated)
|
||
|
* @param status current image status
|
||
|
*/
|
||
|
DiYBRImage(const DiDocument *docu,
|
||
|
const EI_Status status);
|
||
|
|
||
|
/** destructor
|
||
|
*/
|
||
|
virtual ~DiYBRImage();
|
||
|
|
||
|
/** process next couple of frames
|
||
|
*
|
||
|
** @param fcount number of frames to be processed (0 = same number as before)
|
||
|
*
|
||
|
** @return status, true if successful, false otherwise
|
||
|
*/
|
||
|
virtual int processNextFrames(const unsigned long fcount);
|
||
|
|
||
|
|
||
|
protected:
|
||
|
|
||
|
/** initialize internal data structures and member variables
|
||
|
*/
|
||
|
void Init();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|