MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mitkUSImage.cpp
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13#include "mitkUSImage.h"
14#include <mitkStringProperty.h>
15#include <mitkProperties.h>
16#include <mitkImageReadAccessor.h>
17
18
20{
21 this->SetMetadata(mitk::USImageMetadata::New());
22}
23
24mitk::USImage::USImage(mitk::Image::Pointer image) : mitk::Image()
25{
26 try
27 {
28 this->Initialize(image);
29 mitk::ImageReadAccessor imgA(image, image->GetVolumeData(0));
30 this->SetVolume(imgA.GetData());
31 }
32 catch(mitk::Exception& e)
33 {
34 mitkReThrow(e) << "Cannot access image data while constructing US image";
35 }
36}
37
42
43mitk::USImageMetadata::Pointer mitk::USImage::GetMetadata() const {
44 mitk::USImageMetadata::Pointer result = mitk::USImageMetadata::New();
45
46 result->SetDeviceManufacturer(this->GetProperty(mitk::USImageMetadata::PROP_DEV_MANUFACTURER)->GetValueAsString());
47 result->SetDeviceModel( this->GetProperty(mitk::USImageMetadata::PROP_DEV_MODEL)->GetValueAsString());
48 result->SetDeviceComment( this->GetProperty(mitk::USImageMetadata::PROP_DEV_COMMENT)->GetValueAsString());
49 result->SetDeviceIsVideoOnly( this->GetProperty(mitk::USImageMetadata::PROP_DEV_ISVIDEOONLY));
50 result->SetDeviceIsCalibrated(this->GetProperty(mitk::USImageMetadata::PROP_DEV_ISCALIBRATED));
51 result->SetProbeName( this->GetProperty(mitk::USImageMetadata::PROP_PROBE_NAME)->GetValueAsString());
52 result->SetProbeFrequency( this->GetProperty(mitk::USImageMetadata::PROP_PROBE_FREQUENCY)->GetValueAsString());
53 result->SetZoom( this->GetProperty(mitk::USImageMetadata::PROP_ZOOM)->GetValueAsString());
54
55 return result;
56}
57
58
59void mitk::USImage::SetMetadata(mitk::USImageMetadata::Pointer metadata){
60 this->SetProperty(mitk::USImageMetadata::PROP_DEV_MANUFACTURER, mitk::StringProperty::New(metadata->GetDeviceManufacturer()));
61 this->SetProperty(mitk::USImageMetadata::PROP_DEV_MODEL, mitk::StringProperty::New(metadata->GetDeviceModel()));
62 this->SetProperty(mitk::USImageMetadata::PROP_DEV_COMMENT, mitk::StringProperty::New(metadata->GetDeviceComment()));
63 this->SetProperty(mitk::USImageMetadata::PROP_DEV_ISVIDEOONLY, mitk::BoolProperty::New(metadata->GetDeviceIsVideoOnly()));
64 this->SetProperty(mitk::USImageMetadata::PROP_DEV_ISCALIBRATED, mitk::BoolProperty::New(metadata->GetDeviceIsCalibrated()));
65 this->SetProperty(mitk::USImageMetadata::PROP_PROBE_NAME, mitk::StringProperty::New(metadata->GetProbeName()));
66 this->SetProperty(mitk::USImageMetadata::PROP_PROBE_FREQUENCY, mitk::StringProperty::New(metadata->GetProbeFrequency()));
67 this->SetProperty(mitk::USImageMetadata::PROP_ZOOM, mitk::StringProperty::New(metadata->GetZoom()));
68}
69
static const char * PROP_DEV_ISVIDEOONLY
static const char * PROP_PROBE_NAME
static const char * PROP_DEV_MODEL
static const char * PROP_DEV_ISCALIBRATED
static const char * PROP_ZOOM
static const char * PROP_PROBE_FREQUENCY
static const char * PROP_DEV_MANUFACTURER
static const char * PROP_DEV_COMMENT
USImage()
This constructor creates an empty USImage. The Metadata are set to default.
void SetMetadata(mitk::USImageMetadata::Pointer metadata)
Writes the information of the metadata object into the image's properties.
mitk::USImageMetadata::Pointer GetMetadata() const
Reads out this image's Metadata set from the properties and returns a corresponding USImageMetadata o...
~USImage() override
IGT Exceptions.