Mercurial > hg > orthanc-stone
view Framework/Toolbox/OrthancSlicesLoader.h @ 339:5a7915b23138 am-2
cont
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 19 Oct 2018 14:44:12 +0200 |
parents | 3a4ca166fafa |
children | 814fa32e2fcc |
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 "IWebService.h" #include "SlicesSorter.h" #include "../StoneEnumerations.h" #include "../Messages/IObservable.h" #include <boost/shared_ptr.hpp> #include "OrthancApiClient.h" #include "Core/Images/Image.h" namespace OrthancStone { class OrthancSlicesLoader : public IObservable, public IObserver { public: typedef OriginMessage<MessageType_SliceLoader_GeometryReady, OrthancSlicesLoader> SliceGeometryReadyMessage; typedef OriginMessage<MessageType_SliceLoader_GeometryError, OrthancSlicesLoader> SliceGeometryErrorMessage; struct SliceImageReadyMessage : public BaseMessage<MessageType_SliceLoader_ImageReady> { unsigned int sliceIndex_; const Slice& slice_; boost::shared_ptr<Orthanc::ImageAccessor> image_; SliceImageQuality effectiveQuality_; SliceImageReadyMessage(unsigned int sliceIndex, const Slice& slice, boost::shared_ptr<Orthanc::ImageAccessor> image, SliceImageQuality effectiveQuality) : BaseMessage(), sliceIndex_(sliceIndex), slice_(slice), image_(image), effectiveQuality_(effectiveQuality) { } }; struct SliceImageErrorMessage : public BaseMessage<MessageType_SliceLoader_ImageError> { const Slice& slice_; unsigned int sliceIndex_; SliceImageQuality effectiveQuality_; SliceImageErrorMessage(unsigned int sliceIndex, const Slice& slice, SliceImageQuality effectiveQuality) : BaseMessage(), slice_(slice), sliceIndex_(sliceIndex), effectiveQuality_(effectiveQuality) { } }; private: enum State { State_Error, State_Initialization, State_LoadingGeometry, State_GeometryReady }; enum Mode { Mode_SeriesGeometry, Mode_InstanceGeometry, Mode_FrameGeometry, Mode_LoadImage, Mode_LoadRawImage, Mode_LoadDicomFile }; class Operation; OrthancApiClient& orthanc_; State state_; SlicesSorter slices_; void NotifySliceImageSuccess(const Operation& operation, boost::shared_ptr<Orthanc::ImageAccessor> image); void NotifySliceImageError(const Operation& operation); void OnGeometryError(const OrthancApiClient::HttpErrorMessage& message); void OnSliceImageError(const OrthancApiClient::HttpErrorMessage& message); void ParseSeriesGeometry(const OrthancApiClient::JsonResponseReadyMessage& message); void ParseInstanceGeometry(const OrthancApiClient::JsonResponseReadyMessage& message); void ParseFrameGeometry(const OrthancApiClient::JsonResponseReadyMessage& message); void ParseSliceImagePng(const OrthancApiClient::BinaryResponseReadyMessage& message); void ParseSliceImagePam(const OrthancApiClient::BinaryResponseReadyMessage& message); void ParseSliceImageJpeg(const OrthancApiClient::JsonResponseReadyMessage& message); void ParseSliceRawImage(const OrthancApiClient::BinaryResponseReadyMessage& message); void ScheduleSliceImagePng(const Slice& slice, size_t index); void ScheduleSliceImagePam(const Slice& slice, size_t index); void ScheduleSliceImageJpeg(const Slice& slice, size_t index, SliceImageQuality quality); void SortAndFinalizeSlices(); public: OrthancSlicesLoader(MessageBroker& broker, //ISliceLoaderObserver& callback, OrthancApiClient& orthancApi); void ScheduleLoadSeries(const std::string& seriesId); void ScheduleLoadInstance(const std::string& instanceId); void ScheduleLoadFrame(const std::string& instanceId, unsigned int frame); bool IsGeometryReady() const; size_t GetSliceCount() const; const Slice& GetSlice(size_t index) const; bool LookupSlice(size_t& index, const CoordinateSystem3D& plane) const; void ScheduleLoadSliceImage(size_t index, SliceImageQuality requestedQuality); }; }