view Framework/Radiography/RadiographyDicomLayer.h @ 876:580dd82e13f5 am-dev

added GetApproximateMemoryUsage
author Alain Mazy <alain@mazy.be>
date Wed, 03 Jul 2019 10:15:29 +0200
parents c35e98d22764
children b537002f83a9 35e798b16b65
line wrap: on
line source

/**
 * Stone of Orthanc
 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
 * Department, University Hospital of Liege, Belgium
 * Copyright (C) 2017-2018 Osimis S.A., Belgium
 *
 * This program is free software: you can redistribute it and/or
 * modify it under the terms of the GNU Affero General Public License
 * as published by the Free Software Foundation, either version 3 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 **/


#pragma once

#include "../Deprecated/Toolbox/DicomFrameConverter.h"
#include "RadiographyLayer.h"

#include <Plugins/Samples/Common/FullOrthancDataset.h>

namespace OrthancStone
{
  class RadiographyScene;

  class RadiographyDicomLayer : public RadiographyLayer
  {
  private:
    std::auto_ptr<Orthanc::ImageAccessor>  source_;  // Content of PixelData
    std::auto_ptr<Deprecated::DicomFrameConverter>     converter_;
    std::auto_ptr<Orthanc::ImageAccessor>  converted_;  // Float32
    std::string                            instanceId_;
    unsigned int                           frame_;

    void ApplyConverter();

  public:
    RadiographyDicomLayer(MessageBroker& broker, const RadiographyScene& scene);

    void SetInstance(const std::string& instanceId, unsigned int frame)
    {
      instanceId_ = instanceId;
      frame_ = frame;
    }

    std::string GetInstanceId() const
    {
      return instanceId_;
    }

    unsigned int GetFrame() const
    {
      return frame_;
    }

    virtual size_t GetApproximateMemoryUsage() const
    {
      size_t size = 0;
      if (source_.get() != NULL)
      {
        size += source_->GetPitch() * source_->GetHeight();
      }
      if (converted_.get() != NULL)
      {
        size += converted_->GetPitch() * converted_->GetHeight();
      }

      return size;
    }


    void SetDicomTags(const OrthancPlugins::FullOrthancDataset& dataset);

    void SetSourceImage(Orthanc::ImageAccessor* image);   // Takes ownership

    const Orthanc::ImageAccessor* GetSourceImage() const {return source_.get();}  // currently need this access to serialize scene in plain old data to send to a WASM worker

    const Deprecated::DicomFrameConverter& GetDicomFrameConverter() const {return *converter_;} // currently need this access to serialize scene in plain old data to send to a WASM worker
    
     // Takes ownership
    void SetDicomFrameConverter(Deprecated::DicomFrameConverter* converter);

    virtual void Render(Orthanc::ImageAccessor& buffer,
                        const AffineTransform2D& viewTransform,
                        ImageInterpolation interpolation) const;

    virtual bool GetDefaultWindowing(float& center,
                                     float& width) const;

    virtual bool GetRange(float& minValue,
                          float& maxValue) const;
  };
}