⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 diybrpxt.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 H
📖 第 1 页 / 共 2 页
字号:
                        	sr = OFstatic_cast(Sint32, y) + OFstatic_cast(Sint32, rcr_tab[OFstatic_cast(Uint32, cr)]);                        	sg = OFstatic_cast(Sint32, y) - OFstatic_cast(Sint32, gcb_tab[OFstatic_cast(Uint32, cb)]) - OFstatic_cast(Sint32, gcr_tab[OFstatic_cast(Uint32, cr)]);                        	sb = OFstatic_cast(Sint32, y) + OFstatic_cast(Sint32, bcb_tab[OFstatic_cast(Uint32, cb)]);                            *(r++) = (sr < 0) ? 0 : (sr > OFstatic_cast(Sint32, maxvalue)) ? maxvalue : OFstatic_cast(T2, sr);                            *(g++) = (sg < 0) ? 0 : (sg > OFstatic_cast(Sint32, maxvalue)) ? maxvalue : OFstatic_cast(T2, sg);                            *(b++) = (sb < 0) ? 0 : (sb > OFstatic_cast(Sint32, maxvalue)) ? maxvalue : OFstatic_cast(T2, sb);                        }                    }                }                else                {                    if (this->PlanarConfiguration)                    {/*                        register const T1 *y = pixel;                        register const T1 *cb = y + this->InputCount;                        register const T1 *cr = cb + this->InputCount;                        for (i = count; i != 0; --i)                            convertValue(*(r++), *(g++), *(b++), removeSign(*(y++), offset), removeSign(*(cb++), offset),                                removeSign(*(cr++), offset), maxvalue);*/                        register unsigned long l;                        register unsigned long i = count;                        register const T1 *y = pixel;                        register const T1 *cb = y + planeSize;                        register const T1 *cr = cb + planeSize;                        while (i != 0)                        {                            /* convert a single frame */                            for (l = planeSize; (l != 0) && (i != 0); --l, --i)                            {                                convertValue(*(r++), *(g++), *(b++), removeSign(*(y++), offset), removeSign(*(cb++), offset),                                    removeSign(*(cr++), offset), maxvalue);                            }                            /* jump to next frame start (skip 2 planes) */                            y += 2 * planeSize;                            cb += 2 * planeSize;                            cr += 2 * planeSize;                        }                    }                    else                    {                        register const T1 *p = pixel;                        register T2 y;                        register T2 cb;                        register T2 cr;                        register unsigned long i;                        for (i = count; i != 0; --i)                        {                            y = removeSign(*(p++), offset);                            cb = removeSign(*(p++), offset);                            cr = removeSign(*(p++), offset);                            convertValue(*(r++), *(g++), *(b++), y, cb, cr, maxvalue);                        }                    }                }            } else {    /* retain YCbCr model */                register const T1 *p = pixel;                if (this->PlanarConfiguration)                {/*                    register T2 *q;                    // number of pixels to be skipped (only applicable if 'PixelData' contains more                    // pixels than expected)                    const unsigned long skip = (this->InputCount > this->Count) ? (this->InputCount - this->Count) : 0;                    for (int j = 0; j < 3; ++j)                    {                        q = this->Data[j];                        for (i = count; i != 0; --i)                            *(q++) = removeSign(*(p++), offset);                        // skip to beginning of next plane                        p += skip;                    }*/                    register unsigned long l;                    register unsigned long i = 0;                    while (i < count)                    {                        /* store current pixel index */                        const unsigned long iStart = i;                        for (int j = 0; j < 3; ++j)                        {                            /* convert a single plane */                            for (l = planeSize, i = iStart; (l != 0) && (i < count); --l, ++i)                                this->Data[j][i] = removeSign(*(p++), offset);                        }                    }                }                else                {                    register int j;                    register unsigned long i;                    for (i = 0; i < count; ++i)                         /* for all pixel ... */                        for (j = 0; j < 3; ++j)                            this->Data[j][i] = removeSign(*(p++), offset);    /* ... copy planes */                }            }        }    }    /** convert a single YCbCr value to RGB     */    inline void convertValue(T2 &red, T2 &green, T2 &blue, const T2 y, const T2 cb, const T2 cr, const T2 maxvalue)    {        double dr = OFstatic_cast(double, y) + 1.4020 * OFstatic_cast(double, cr) - 0.7010 * OFstatic_cast(double, maxvalue);        double dg = OFstatic_cast(double, y) - 0.3441 * OFstatic_cast(double, cb) - 0.7141 * OFstatic_cast(double, cr) + 0.5291 * OFstatic_cast(double, maxvalue);        double db = OFstatic_cast(double, y) + 1.7720 * OFstatic_cast(double, cb) - 0.8859 * OFstatic_cast(double, maxvalue);        red   = (dr < 0.0) ? 0 : (dr > OFstatic_cast(double, maxvalue)) ? maxvalue : OFstatic_cast(T2, dr);        green = (dg < 0.0) ? 0 : (dg > OFstatic_cast(double, maxvalue)) ? maxvalue : OFstatic_cast(T2, dg);        blue  = (db < 0.0) ? 0 : (db > OFstatic_cast(double, maxvalue)) ? maxvalue : OFstatic_cast(T2, db);    }};#endif/* * * CVS/RCS Log: * $Log: diybrpxt.h,v $ * Revision 1.17  2005/12/08 16:02:01  meichel * Changed include path schema for all DCMTK header files * * Revision 1.16  2004/04/21 10:00:31  meichel * Minor modifications for compilation with gcc 3.4.0 * * Revision 1.15  2004/02/06 11:16:35  joergr * Added typecast to array indexes to avoid warning messages on MacOS X 10.3 * with gcc 3.3. * * Revision 1.14  2003/12/23 12:30:34  joergr * Adapted type casts to new-style typecast operators defined in ofcast.h. * Removed leading underscore characters from preprocessor symbols (reserved * symbols). Updated copyright header. * Replaced post-increment/decrement operators by pre-increment/decrement * operators where appropriate (e.g. 'i++' by '++i'). * * Revision 1.13  2002/06/26 16:20:19  joergr * Enhanced handling of corrupted pixel data and/or length. * Corrected decoding of multi-frame, planar images. * * Revision 1.12  2001/11/09 16:47:03  joergr * Removed 'inline' specifier from certain methods. * * Revision 1.11  2001/09/28 13:55:41  joergr * Added new flag (CIF_KeepYCbCrColorModel) which avoids conversion of YCbCr * color models to RGB. * * Revision 1.10  2001/06/01 15:49:32  meichel * Updated copyright header * * Revision 1.9  2000/04/27 13:15:15  joergr * Dcmimage library code now consistently uses ofConsole for error output. * * Revision 1.8  2000/03/08 16:21:54  meichel * Updated copyright header. * * Revision 1.7  1999/09/17 14:03:46  joergr * Enhanced efficiency of some "for" loops. * * Revision 1.6  1999/04/28 12:52:04  joergr * Corrected some typos, comments and formatting. * * Revision 1.5  1999/02/03 16:55:29  joergr * Moved global functions maxval() and determineRepresentation() to class * DicomImageClass (as static methods). * * Revision 1.4  1999/01/20 14:47:20  joergr * Replaced invocation of getCount() by member variable Count where possible. * * Revision 1.3  1998/11/27 14:18:56  joergr * Added copyright message. * * Revision 1.2  1998/05/11 14:53:32  joergr * Added CVS/RCS header to each file. * * */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -