123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- /*=========================================================================
- Library: CTK
- Copyright (c) Kitware Inc.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0.txt
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- =========================================================================*/
- #include <iostream>
- // DCMTK includes
- #include <dcmtk/dcmimgle/dcmimage.h>
- #include <dcmtk/dcmimage/diregist.h> /* Include color image support */
- // CTK includes
- #include "ctkLogger.h"
- #include "ctkQImageView.h"
- // ctkDICOMCore includes
- #include "ctkDICOMFilterProxyModel.h"
- #include "ctkDICOMModel.h"
- // ctkDICOMWidgets includex
- #include "ctkDICOMItemView.h"
- // Qt includes
- #include <QDebug>
- #include <QDir>
- #include <QFile>
- #include <QHBoxLayout>
- #include <QKeyEvent>
- #include <QLabel>
- #include <QMouseEvent>
- #include <QPainter>
- #include <QResizeEvent>
- static ctkLogger logger("org.commontk.DICOM.Widgets.ctkDICOMItemView");
- //--------------------------------------------------------------------------
- class ctkDICOMItemViewPrivate
- {
- Q_DECLARE_PUBLIC( ctkDICOMItemView );
- public:
- ctkDICOMItemViewPrivate( ctkDICOMItemView& object );
- QString DatabaseDirectory;
- QModelIndex CurrentImageIndex;
- QPoint OldMousePos;
- double DicomIntensityLevel;
- double DicomIntensityWindow;
- bool AutoWindowLevel;
- void init();
- void setImage(const QModelIndex& imageIndex, bool defaultIntensity = true);
- void onPatientModelSelected(const QModelIndex& index);
- void onStudyModelSelected(const QModelIndex& index);
- void onSeriesModelSelected(const QModelIndex& index);
- void onImageModelSelected(const QModelIndex& index);
- protected:
- ctkDICOMItemView* const q_ptr;
- private:
- Q_DISABLE_COPY( ctkDICOMItemViewPrivate );
- };
- //--------------------------------------------------------------------------
- ctkDICOMItemViewPrivate::ctkDICOMItemViewPrivate(
- ctkDICOMItemView& object )
- : q_ptr( & object )
- {
- }
- //--------------------------------------------------------------------------
- void ctkDICOMItemViewPrivate::init()
- {
- Q_Q( ctkDICOMItemView );
- q->setMouseTracking(true);
- this->DicomIntensityLevel = 0;
- this->DicomIntensityWindow = 0;
- this->AutoWindowLevel = true;
- /*
- this->Window->setParent(q);
- QHBoxLayout* layout = new QHBoxLayout(q);
- layout->addWidget(this->Window);
- layout->setContentsMargins(0,0,0,0);
- q->setLayout(layout);
- */
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemViewPrivate::setImage(const QModelIndex &imageIndex, bool defaultIntensity){
- Q_Q(ctkDICOMItemView);
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(imageIndex.model()));
- if(model){
- QModelIndex seriesIndex = imageIndex.parent();
- QModelIndex studyIndex = seriesIndex.parent();
- QString dicomPath = this->DatabaseDirectory;
- dicomPath.append("/dicom/").append(model->data(studyIndex ,ctkDICOMModel::UIDRole).toString());
- dicomPath.append("/").append(model->data(seriesIndex ,ctkDICOMModel::UIDRole).toString());
- dicomPath.append("/").append(model->data(imageIndex ,ctkDICOMModel::UIDRole).toString());
- if (QFile(dicomPath).exists()){
- DicomImage dcmImage( QDir::toNativeSeparators(dicomPath).toStdString().c_str() );
- q->clearImages();
- q->addImage(dcmImage, defaultIntensity);
- this->CurrentImageIndex = imageIndex;
- q->emitImageDisplayedSignal(imageIndex.row(), model->rowCount(seriesIndex));
- }else{
- q->clearImages();
- }
- }
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemViewPrivate::onPatientModelSelected(const QModelIndex &index){
- Q_Q(ctkDICOMItemView);
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(index.model()));
- if(model){
- QModelIndex patientIndex = index;
- model->fetchMore(patientIndex);
- QModelIndex studyIndex = patientIndex.child(0,0);
- model->fetchMore(studyIndex);
- QModelIndex seriesIndex = studyIndex.child(0,0);
- model->fetchMore(seriesIndex);
- int imageCount = model->rowCount(seriesIndex);
- QModelIndex imageIndex = seriesIndex.child(imageCount/2,0);
- this->setImage(imageIndex);
- }else{
- q->clearImages();
- }
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemViewPrivate::onStudyModelSelected(const QModelIndex &index){
- Q_Q(ctkDICOMItemView);
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(index.model()));
- if(model){
- QModelIndex studyIndex = index;
- model->fetchMore(studyIndex);
- QModelIndex seriesIndex = studyIndex.child(0,0);
- model->fetchMore(seriesIndex);
- int imageCount = model->rowCount(seriesIndex);
- QModelIndex imageIndex = seriesIndex.child(imageCount/2,0);
- this->setImage(imageIndex);
- }else{
- q->clearImages();
- }
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemViewPrivate::onSeriesModelSelected(const QModelIndex &index){
- Q_Q(ctkDICOMItemView);
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(index.model()));
- if(model){
- QModelIndex seriesIndex = index;
- model->fetchMore(seriesIndex);
- int imageCount = model->rowCount(seriesIndex);
- QModelIndex imageIndex = seriesIndex.child(imageCount/2,0);
- this->setImage(imageIndex);
- }else{
- q->clearImages();
- }
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemViewPrivate::onImageModelSelected(const QModelIndex &index){
- Q_Q(ctkDICOMItemView);
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(index.model()));
- if(model){
- QModelIndex imageIndex = index;
- if(index.parent() == this->CurrentImageIndex.parent()){
- this->setImage(imageIndex, false);
- }else{
- this->setImage(imageIndex, true);
- }
- }else{
- q->clearImages();
- }
- }
- // -------------------------------------------------------------------------
- ctkDICOMItemView::ctkDICOMItemView( QWidget* _parent )
- : Superclass( _parent ),
- d_ptr( new ctkDICOMItemViewPrivate( *this ) )
- {
- Q_D( ctkDICOMItemView );
- d->init();
- }
- // -------------------------------------------------------------------------
- ctkDICOMItemView::ctkDICOMItemView(
- ctkDICOMItemViewPrivate& pvt,
- QWidget* _parent)
- : Superclass(_parent), d_ptr(&pvt)
- {
- Q_D(ctkDICOMItemView);
- d->init();
- }
- // -------------------------------------------------------------------------
- ctkDICOMItemView::~ctkDICOMItemView()
- {
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemView::setDatabaseDirectory(const QString &directory){
- Q_D(ctkDICOMItemView);
- d->DatabaseDirectory = directory;
- }
- // -------------------------------------------------------------------------
- QModelIndex ctkDICOMItemView::currentImageIndex(){
- Q_D(ctkDICOMItemView);
- return d->CurrentImageIndex;
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemView::addImage( const QImage & image )
- {
- Superclass::addImage( image );
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemView::addImage( DicomImage & dcmImage, bool defaultIntensity )
- {
- Q_D(ctkDICOMItemView);
- QImage image;
- // Check whether we have a valid image
- EI_Status result = dcmImage.getStatus();
- if (result != EIS_Normal)
- {
- logger.error(QString("Rendering of DICOM image failed for thumbnail failed: ") + DicomImage::getString(result));
- return;
- }
- // Select first window defined in image. If none, compute min/max window as best guess.
- // Only relevant for monochrome
- if (d->AutoWindowLevel)
- {
- if (dcmImage.isMonochrome())
- {
- if (defaultIntensity && dcmImage.getWindowCount() > 0)
- {
- dcmImage.setWindow(0);
- }
- else
- {
- dcmImage.setMinMaxWindow(OFTrue /* ignore extreme values */);
- dcmImage.getWindow(d->DicomIntensityLevel, d->DicomIntensityWindow);
- }
- }
- }
- else
- {
- dcmImage.setWindow(d->DicomIntensityLevel, d->DicomIntensityWindow);
- }
- /* get image extension and prepare image header */
- const unsigned long width = dcmImage.getWidth();
- const unsigned long height = dcmImage.getHeight();
- unsigned long offset = 0;
- unsigned long length = 0;
- QString header;
- if (dcmImage.isMonochrome())
- {
- // write PGM header (binary monochrome image format)
- header = QString("P5 %1 %2 255\n").arg(width).arg(height);
- offset = header.length();
- length = width * height + offset;
- }
- else
- {
- // write PPM header (binary color image format)
- header = QString("P6 %1 %2 255\n").arg(width).arg(height);
- offset = header.length();
- length = width * height * 3 /* RGB */ + offset;
- }
- /* create output buffer for DicomImage class */
- QByteArray buffer;
- /* copy header to output buffer and resize it for pixel data */
- buffer.append(header);
- buffer.resize(length);
- /* render pixel data to buffer */
- if (dcmImage.getOutputData(static_cast<void *>(buffer.data() + offset), length - offset, 8, 0))
- {
- if (!image.loadFromData( buffer ))
- {
- logger.error("QImage couldn't created");
- }
- }
- this->addImage(image);
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemView::update( bool zoomChanged,
- bool sizeChanged )
- {
- Superclass::update( zoomChanged, sizeChanged );
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemView::mousePressEvent(QMouseEvent* event){
- Q_D(ctkDICOMItemView);
- event->accept();
- d->OldMousePos = event->pos();
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemView::mouseMoveEvent(QMouseEvent* event){
- Q_D(ctkDICOMItemView);
- if(event->buttons() == Qt::RightButton){
- event->accept();
- QPoint nowPos = event->pos();
- if(nowPos.y() > d->OldMousePos.y()){
- emit requestNextImage();
- d->OldMousePos = event->pos();
- }else if(nowPos.y() < d->OldMousePos.y()){
- emit requestPreviousImage();
- d->OldMousePos = event->pos();
- }
- }else if(event->buttons() == Qt::MidButton){
- event->accept();
- QPoint nowPos = event->pos();
- this->setZoom(this->zoom() - (nowPos.y()-d->OldMousePos.y())/100.0);
- d->OldMousePos = event->pos();
- }else if(event->buttons() == Qt::LeftButton){
- event->accept();
- QPoint nowPos = event->pos();
- d->DicomIntensityWindow += (5*(nowPos.x()-d->OldMousePos.x()));
- d->DicomIntensityLevel -= (5*(nowPos.y()-d->OldMousePos.y()));
- d->AutoWindowLevel = false;
- d->setImage(d->CurrentImageIndex, false);
- d->OldMousePos = event->pos();
- }
- Superclass::mouseMoveEvent(event);
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemView::onModelSelected(const QModelIndex &index){
- Q_D(ctkDICOMItemView);
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(index.model()));
- if(model){
- QModelIndex index0 = index.sibling(index.row(), 0);
- if ( model->data(index0,ctkDICOMModel::TypeRole) == static_cast<int>(ctkDICOMModel::PatientType) ){
- d->onPatientModelSelected(index0);
- }else if ( model->data(index0,ctkDICOMModel::TypeRole) == static_cast<int>(ctkDICOMModel::StudyType) ){
- d->onStudyModelSelected(index0);
- }else if ( model->data(index0,ctkDICOMModel::TypeRole) == static_cast<int>(ctkDICOMModel::SeriesType) ){
- d->onSeriesModelSelected(index0);
- }else if ( model->data(index0,ctkDICOMModel::TypeRole) == static_cast<int>(ctkDICOMModel::ImageType) ){
- d->onImageModelSelected(index0);
- }
- }
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemView::displayImage(int imageIndex){
- Q_D(ctkDICOMItemView);
- if(d->CurrentImageIndex.isValid())
- {
- QModelIndex seriesIndex = d->CurrentImageIndex.parent();
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(seriesIndex.model()));
- if(model)
- {
- if(imageIndex >= 0 && imageIndex < model->rowCount(seriesIndex))
- {
- this->onModelSelected(model->index(imageIndex, 0, seriesIndex));
- }
- else
- {
- logger.debug("out of index");
- }
- }
- }
- }
- // -------------------------------------------------------------------------
- void ctkDICOMItemView::emitImageDisplayedSignal(int imageID, int count){
- emit imageDisplayed(imageID, count);
- }
|