https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Attributes | List of all members
ImageSampler Class Reference

A helper class for reading and sampling images using VTK. More...

#include <ImageSampler.h>

Inheritance diagram for ImageSampler:
[legend]

Public Member Functions

 ImageSampler (const InputParameters &parameters)
 
virtual libMesh::Real sample (const libMesh::Point &p) const
 Return the pixel value for the given point.
 
virtual void setupImageSampler (MooseMesh &mesh)
 Perform initialization of image data.
 
std::string fileSuffix ()
 
const std::vector< std::string > & filenames ()
 

Static Public Member Functions

static InputParameters validParams ()
 Constructor.
 

Protected Member Functions

void vtkShiftAndScale ()
 Apply image re-scaling using the vtkImageShiftAndRescale object.
 
void vtkThreshold ()
 Perform thresholding.
 
void vtkMagnitude ()
 Convert the image to greyscale.
 
void errorCheck ()
 

Protected Attributes

int _status
 
std::string _file_suffix
 
std::vector< std::string > _filenames
 

Private Attributes

vtkSmartPointer< vtkStringArray > _files
 List of file names to extract data.
 
vtkImageData * _data
 Complete image data.
 
vtkAlgorithmOutput * _algorithm
 VTK-6 seems to work better in terms of "algorithm outputs" rather than vtkImageData pointers...
 
vtkSmartPointer< vtkImageReader2 > _image
 Complete image data.
 
vtkSmartPointer< vtkImageBinaryThreshold > _image_threshold
 Pointer to thresholding filter.
 
vtkSmartPointer< vtkImageShiftScale > _shift_scale_filter
 Pointer to the shift and scaling filter.
 
vtkSmartPointer< vtkImageMagnitude > _magnitude_filter
 Pointer to the magnitude filter.
 
libMesh::Point _origin
 Origin of image.
 
std::vector< int_dims
 Pixel dimension of image.
 
libMesh::Point _physical_dims
 Physical dimensions of image.
 
std::vector< double > _voxel
 Physical pixel size.
 
unsigned int _component
 Component to extract.
 
libMesh::BoundingBox _bounding_box
 Bounding box for testing points.
 
const InputParameters_is_pars
 Parameters for interface.
 
ConsoleStream _is_console
 Create a console stream object for this helper class.
 
std::array< bool, 3 > _flip
 image flip
 

Detailed Description

A helper class for reading and sampling images using VTK.

Definition at line 83 of file ImageSampler.h.

Constructor & Destructor Documentation

◆ ImageSampler()

ImageSampler::ImageSampler ( const InputParameters parameters)

Definition at line 58 of file ImageSampler.C.

59 : FileRangeBuilder(parameters),
60#ifdef LIBMESH_HAVE_VTK
61 _data(nullptr),
62 _algorithm(nullptr),
63#endif
64 _is_pars(parameters),
66 ->getOutputWarehouse()),
67 _flip({{_is_pars.get<bool>("flip_x"),
68 _is_pars.get<bool>("flip_y"),
69 _is_pars.get<bool>("flip_z")}})
70
71{
72#ifndef LIBMESH_HAVE_VTK
73 // This should be impossible to reach, the registration of ImageSampler is also guarded with
74 // LIBMESH_HAVE_VTK
75 mooseError("libMesh must be configured with VTK enabled to utilize ImageSampler");
76#endif
77}
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application.
Definition MooseError.h:311
To be called in the validParams functions of classes that need to operate on ranges of files.
const InputParameters & _is_pars
Parameters for interface.
vtkImageData * _data
Complete image data.
std::array< bool, 3 > _flip
image flip
vtkAlgorithmOutput * _algorithm
VTK-6 seems to work better in terms of "algorithm outputs" rather than vtkImageData pointers....
ConsoleStream _is_console
Create a console stream object for this helper class.
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
T getCheckedPointerParam(const std::string &name, const std::string &error_string="") const
Verifies that the requested parameter exists and is not NULL and returns it to the caller.
Base class for MOOSE-based applications.
Definition MooseApp.h:110
static const std::string app_param
The name of the parameter that contains the MooseApp.
Definition MooseBase.h:59

Member Function Documentation

◆ errorCheck()

void FileRangeBuilder::errorCheck ( )
protectedinherited

Definition at line 159 of file FileRangeBuilder.C.

160{
161 switch (_status)
162 {
163 case 0:
164 return;
165 case 1:
166 mooseError("Cannot provide both file and file_base parameters");
167 break;
168 case 2:
169 mooseError("You must provide a valid value for either the 'file' parameter or the "
170 "'file_base' parameter.");
171 break;
172 case 3:
174 "If you provide a 'file_base', you must also provide a valid 'file_suffix', e.g. 'png'.");
175 break;
176 default:
177 mooseError("Unknown error code!");
178 }
179}

Referenced by ImageMesh::ImageMesh().

◆ filenames()

const std::vector< std::string > & FileRangeBuilder::filenames ( )
inlineinherited

◆ fileSuffix()

std::string FileRangeBuilder::fileSuffix ( )
inlineinherited

Definition at line 42 of file FileRangeBuilder.h.

42{ return _file_suffix; }
std::string _file_suffix

Referenced by MeshBaseImageSampler::setupImageSampler(), and setupImageSampler().

◆ sample()

Real ImageSampler::sample ( const libMesh::Point p) const
virtual

Return the pixel value for the given point.

Parameters
pThe point at which to extract pixel data

Definition at line 218 of file ImageSampler.C.

219{
220#ifdef LIBMESH_HAVE_VTK
221
222 // Do nothing if the point is outside of the image domain
224 return 0.0;
225
226 // Determine pixel coordinates
227 std::vector<int> x(3, 0);
228 for (int i = 0; i < LIBMESH_DIM; ++i)
229 {
230 // Compute position, only if voxel size is greater than zero
231 if (_voxel[i] != 0)
232 {
233 x[i] = std::floor((p(i) - _origin(i)) / _voxel[i]);
234
235 // If the point falls on the mesh extents the index needs to be decreased by one
236 if (x[i] == _dims[i])
237 x[i]--;
238
239 // flip
240 if (_flip[i])
241 x[i] = _dims[i] - x[i] - 1;
242 }
243 }
244
245 // Return the image data at the given point
246 return _data->GetScalarComponentAsDouble(x[0], x[1], x[2], _component);
247
248#else
249 libmesh_ignore(p); // avoid un-used parameter warnings
250 return 0.0;
251#endif
252}
std::vector< int > _dims
Pixel dimension of image.
libMesh::BoundingBox _bounding_box
Bounding box for testing points.
std::vector< double > _voxel
Physical pixel size.
unsigned int _component
Component to extract.
libMesh::Point _origin
Origin of image.
bool contains_point(const Point &) const
void libmesh_ignore(const Args &...)

Referenced by ImageFunction::value().

◆ setupImageSampler()

void ImageSampler::setupImageSampler ( MooseMesh mesh)
virtual

Perform initialization of image data.

Definition at line 80 of file ImageSampler.C.

81{
82 // Don't warn that mesh or _is_pars are unused when VTK is not enabled.
83 libmesh_ignore(mesh);
85
86#ifdef LIBMESH_HAVE_VTK
87 // Get access to the Mesh object
89
90 // Set the dimensions from the Mesh if not set by the User
91 if (_is_pars.isParamValid("dimensions"))
92 _physical_dims = _is_pars.get<Point>("dimensions");
93
94 else
95 {
96 _physical_dims(0) = bbox.max()(0) - bbox.min()(0);
97#if LIBMESH_DIM > 1
98 _physical_dims(1) = bbox.max()(1) - bbox.min()(1);
99#endif
100#if LIBMESH_DIM > 2
101 _physical_dims(2) = bbox.max()(2) - bbox.min()(2);
102#endif
103 }
104
105 // Set the origin from the Mesh if not set in the input file
106 if (_is_pars.isParamValid("origin"))
107 _origin = _is_pars.get<Point>("origin");
108 else
109 {
110 _origin(0) = bbox.min()(0);
111#if LIBMESH_DIM > 1
112 _origin(1) = bbox.min()(1);
113#endif
114#if LIBMESH_DIM > 2
115 _origin(2) = bbox.min()(2);
116#endif
117 }
118
119 // An array of filenames, to be filled in
120 std::vector<std::string> filenames;
121
122 // The file suffix, to be determined
123 std::string file_suffix;
124
125 // Try to parse our own file range parameters. If that fails, then
126 // see if the associated Mesh is an ImageMesh and use its. If that
127 // also fails, then we have to throw an error...
128 //
129 // The parseFileRange method sets parameters, thus a writable reference to the InputParameters
130 // object must be obtained from the warehouse. Generally, this should be avoided, but
131 // this is a special case.
132 if (_status != 0)
133 {
134 // We don't have parameters, so see if we can get them from ImageMesh
135 ImageMesh * image_mesh = dynamic_cast<ImageMesh *>(&mesh);
136 if (!image_mesh)
137 mooseError("No file range parameters were provided and the Mesh is not an ImageMesh.");
138
139 // Get the ImageMesh's parameters. This should work, otherwise
140 // errors would already have been thrown...
141 filenames = image_mesh->filenames();
142 file_suffix = image_mesh->fileSuffix();
143 }
144 else
145 {
146 // Use our own parameters (using 'this' b/c of conflicts with filenames the local variable)
147 filenames = this->filenames();
148 file_suffix = fileSuffix();
149 }
150
151 // Storage for the file names
152 _files = vtkSmartPointer<vtkStringArray>::New();
153
154 for (const auto & filename : filenames)
155 _files->InsertNextValue(filename);
156
157 // Error if no files where located
158 if (_files->GetNumberOfValues() == 0)
159 mooseError("No image file(s) located");
160
161 // Read the image stack. Hurray for VTK not using polymorphism in a
162 // smart way... we actually have to explicitly create the type of
163 // reader based on the file extension, using an if-statement...
164 if (file_suffix == "png")
165 _image = vtkSmartPointer<vtkPNGReader>::New();
166 else if (file_suffix == "tiff" || file_suffix == "tif")
167 _image = vtkSmartPointer<vtkTIFFReader>::New();
168 else
169 mooseError("Un-supported file type '", file_suffix, "'");
170
171 // Now that _image is set up, actually read the images
172 // Indicate that data read has started
173 _is_console << "Reading image(s)..." << std::endl;
174
175 // Extract the data
176 _image->SetFileNames(_files);
177 _image->Update();
178 _data = _image->GetOutput();
179 _algorithm = _image->GetOutputPort();
180
181 // Set the image dimensions and voxel size member variable
182 int * dims = _data->GetDimensions();
183 for (unsigned int i = 0; i < 3; ++i)
184 {
185 _dims.push_back(dims[i]);
186 _voxel.push_back(_physical_dims(i) / _dims[i]);
187 }
188
189 // Set the dimensions of the image and bounding box
190 _data->SetSpacing(_voxel[0], _voxel[1], _voxel[2]);
191 _data->SetOrigin(_origin(0), _origin(1), _origin(2));
194
195 // Indicate data read is completed
196 _is_console << " ...image read finished" << std::endl;
197
198 // Set the component parameter
199 // If the parameter is not set then vtkMagnitude() will applied
200 if (_is_pars.isParamValid("component"))
201 {
202 unsigned int n = _data->GetNumberOfScalarComponents();
203 _component = _is_pars.get<unsigned int>("component");
204 if (_component >= n)
205 mooseError("'component' parameter must be empty or have a value of 0 to ", n - 1);
206 }
207 else
208 _component = 0;
209
210 // Apply filters, the toggling on and off of each filter is handled internally
211 vtkMagnitude();
213 vtkThreshold();
214#endif
215}
const std::vector< std::string > & filenames()
std::string fileSuffix()
A 2D GeneratedMesh where xmin, xmax, etc.
Definition ImageMesh.h:19
void vtkShiftAndScale()
Apply image re-scaling using the vtkImageShiftAndRescale object.
libMesh::Point _physical_dims
Physical dimensions of image.
vtkSmartPointer< vtkStringArray > _files
List of file names to extract data.
vtkSmartPointer< vtkImageReader2 > _image
Complete image data.
void vtkThreshold()
Perform thresholding.
void vtkMagnitude()
Convert the image to greyscale.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another,...
const Point & max() const
const Point & min() const
MeshBase & mesh
libMesh::BoundingBox create_bounding_box(const MeshBase &mesh)

Referenced by ImageFunction::initialSetup().

◆ validParams()

InputParameters ImageSampler::validParams ( )
static

Constructor.

Use this object as an interface, being sure to also add the parameters to the child class.

See also
ImageFunction

Definition at line 20 of file ImageSampler.C.

21{
22 // Define the general parameters
25
26 params.addParam<Point>("origin", "Origin of the image (defaults to mesh origin)");
27 params.addParam<Point>("dimensions",
28 "x,y,z dimensions of the image (defaults to mesh dimensions)");
29 params.addParam<unsigned int>(
30 "component",
31 "The image RGB-component to return, leaving this blank will result in a greyscale value "
32 "for the image to be created. The component number is zero based, i.e. 0 returns the first "
33 "(RED) component of the image.");
34
35 // Shift and Scale (application of these occurs prior to threshold)
36 params.addParam<double>("shift", 0, "Value to add to all pixels; occurs prior to scaling");
37 params.addParam<double>(
38 "scale", 1, "Multiplier to apply to all pixel values; occurs after shifting");
39 params.addParamNamesToGroup("shift scale", "Rescale");
40
41 // Threshold parameters
42 params.addParam<double>("threshold", "The threshold value");
43 params.addParam<double>(
44 "upper_value", 1, "The value to set for data greater than the threshold value");
45 params.addParam<double>(
46 "lower_value", 0, "The value to set for data less than the threshold value");
47 params.addParamNamesToGroup("threshold upper_value lower_value", "Threshold");
48
49 // Flip image
50 params.addParam<bool>("flip_x", false, "Flip the image along the x-axis");
51 params.addParam<bool>("flip_y", false, "Flip the image along the y-axis");
52 params.addParam<bool>("flip_z", false, "Flip the image along the z-axis");
53 params.addParamNamesToGroup("flip_x flip_y flip_z", "Flip");
54
55 return params;
56}
InputParameters emptyInputParameters()
static InputParameters validParams()
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
void addParamNamesToGroup(const std::string &space_delim_names, const std::string group_name)
This method takes a space delimited list of parameter names and adds them to the specified group name...
void addParam(const std::string &name, const S &value, const std::string &doc_string)
These methods add an optional parameter and a documentation string to the InputParameters object.

Referenced by ImageFunction::validParams().

◆ vtkMagnitude()

void ImageSampler::vtkMagnitude ( )
protected

Convert the image to greyscale.

By leaving the 'component' input parameter empty, this is called automatically.

Definition at line 255 of file ImageSampler.C.

256{
257#ifdef LIBMESH_HAVE_VTK
258 // Do nothing if 'component' is set
259 if (_is_pars.isParamValid("component"))
260 return;
261
262 // Apply the greyscale filtering
263 _magnitude_filter = vtkSmartPointer<vtkImageMagnitude>::New();
264 _magnitude_filter->SetInputConnection(_algorithm);
265 _magnitude_filter->Update();
266
267 // Update the pointers
268 _data = _magnitude_filter->GetOutput();
269 _algorithm = _magnitude_filter->GetOutputPort();
270#endif
271}
vtkSmartPointer< vtkImageMagnitude > _magnitude_filter
Pointer to the magnitude filter.

Referenced by setupImageSampler().

◆ vtkShiftAndScale()

void ImageSampler::vtkShiftAndScale ( )
protected

Apply image re-scaling using the vtkImageShiftAndRescale object.

Definition at line 274 of file ImageSampler.C.

275{
276#ifdef LIBMESH_HAVE_VTK
277 // Capture the parameters
278 double shift = _is_pars.get<double>("shift");
279 double scale = _is_pars.get<double>("scale");
280
281 // Do nothing if shift and scale are not set
282 if (shift == 0 && scale == 1)
283 return;
284
285 // Perform the scaling and offset actions
286 _shift_scale_filter = vtkSmartPointer<vtkImageShiftScale>::New();
287 _shift_scale_filter->SetOutputScalarTypeToDouble();
288
289 _shift_scale_filter->SetInputConnection(_algorithm);
290 _shift_scale_filter->SetShift(shift);
291 _shift_scale_filter->SetScale(scale);
292 _shift_scale_filter->Update();
293
294 // Update the pointers
295 _data = _shift_scale_filter->GetOutput();
296 _algorithm = _shift_scale_filter->GetOutputPort();
297#endif
298}
Real scale
Definition MortarUtils.C:62
vtkSmartPointer< vtkImageShiftScale > _shift_scale_filter
Pointer to the shift and scaling filter.

Referenced by setupImageSampler().

◆ vtkThreshold()

void ImageSampler::vtkThreshold ( )
protected

Perform thresholding.

Definition at line 301 of file ImageSampler.C.

302{
303#ifdef LIBMESH_HAVE_VTK
304 // Do nothing if threshold not set
305 if (!_is_pars.isParamValid("threshold"))
306 return;
307
308 // Error if both upper and lower are not set
309 if (!_is_pars.isParamValid("upper_value") || !_is_pars.isParamValid("lower_value"))
310 mooseError("When thresholding is applied, both the upper_value and lower_value parameters must "
311 "be set");
312
313 // Create the thresholding object
314 _image_threshold = vtkSmartPointer<vtkImageBinaryThreshold>::New();
315
316 // Set the data source
317 _image_threshold->SetInputConnection(_algorithm);
318
319 // Setup the thresholding options
320 _image_threshold->SetLowerThreshold(_is_pars.get<Real>("threshold"));
321 _image_threshold->ReplaceInOn();
322 _image_threshold->SetInValue(_is_pars.get<Real>("upper_value"));
323 _image_threshold->ReplaceOutOn();
324 _image_threshold->SetOutValue(_is_pars.get<Real>("lower_value"));
325 _image_threshold->SetOutputScalarTypeToDouble();
326
327 // Perform the thresholding
328 _image_threshold->Update();
329
330 // Update the pointers
331 _data = _image_threshold->GetOutput();
332 _algorithm = _image_threshold->GetOutputPort();
333#endif
334}
vtkSmartPointer< vtkImageBinaryThreshold > _image_threshold
Pointer to thresholding filter.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real

Referenced by setupImageSampler().

Member Data Documentation

◆ _algorithm

vtkAlgorithmOutput* ImageSampler::_algorithm
private

VTK-6 seems to work better in terms of "algorithm outputs" rather than vtkImageData pointers...

Definition at line 137 of file ImageSampler.h.

Referenced by setupImageSampler(), vtkMagnitude(), vtkShiftAndScale(), and vtkThreshold().

◆ _bounding_box

libMesh::BoundingBox ImageSampler::_bounding_box
private

Bounding box for testing points.

Definition at line 170 of file ImageSampler.h.

Referenced by sample(), and setupImageSampler().

◆ _component

unsigned int ImageSampler::_component
private

Component to extract.

Definition at line 166 of file ImageSampler.h.

Referenced by sample(), and setupImageSampler().

◆ _data

vtkImageData* ImageSampler::_data
private

Complete image data.

Definition at line 134 of file ImageSampler.h.

Referenced by sample(), setupImageSampler(), vtkMagnitude(), vtkShiftAndScale(), and vtkThreshold().

◆ _dims

std::vector<int> ImageSampler::_dims
private

Pixel dimension of image.

Definition at line 156 of file ImageSampler.h.

Referenced by sample(), and setupImageSampler().

◆ _file_suffix

std::string FileRangeBuilder::_file_suffix
protectedinherited

◆ _filenames

std::vector<std::string> FileRangeBuilder::_filenames
protectedinherited

◆ _files

vtkSmartPointer<vtkStringArray> ImageSampler::_files
private

List of file names to extract data.

Definition at line 131 of file ImageSampler.h.

Referenced by setupImageSampler().

◆ _flip

std::array<bool, 3> ImageSampler::_flip
private

image flip

Definition at line 179 of file ImageSampler.h.

Referenced by sample().

◆ _image

vtkSmartPointer<vtkImageReader2> ImageSampler::_image
private

Complete image data.

Definition at line 140 of file ImageSampler.h.

Referenced by setupImageSampler().

◆ _image_threshold

vtkSmartPointer<vtkImageBinaryThreshold> ImageSampler::_image_threshold
private

Pointer to thresholding filter.

Definition at line 143 of file ImageSampler.h.

Referenced by vtkThreshold().

◆ _is_console

ConsoleStream ImageSampler::_is_console
private

Create a console stream object for this helper class.

Definition at line 176 of file ImageSampler.h.

Referenced by setupImageSampler().

◆ _is_pars

const InputParameters& ImageSampler::_is_pars
private

Parameters for interface.

Definition at line 173 of file ImageSampler.h.

Referenced by ImageSampler(), setupImageSampler(), vtkMagnitude(), vtkShiftAndScale(), and vtkThreshold().

◆ _magnitude_filter

vtkSmartPointer<vtkImageMagnitude> ImageSampler::_magnitude_filter
private

Pointer to the magnitude filter.

Definition at line 149 of file ImageSampler.h.

Referenced by vtkMagnitude().

◆ _origin

libMesh::Point ImageSampler::_origin
private

Origin of image.

Definition at line 153 of file ImageSampler.h.

Referenced by sample(), and setupImageSampler().

◆ _physical_dims

libMesh::Point ImageSampler::_physical_dims
private

Physical dimensions of image.

Definition at line 159 of file ImageSampler.h.

Referenced by setupImageSampler().

◆ _shift_scale_filter

vtkSmartPointer<vtkImageShiftScale> ImageSampler::_shift_scale_filter
private

Pointer to the shift and scaling filter.

Definition at line 146 of file ImageSampler.h.

Referenced by vtkShiftAndScale().

◆ _status

int FileRangeBuilder::_status
protectedinherited

◆ _voxel

std::vector<double> ImageSampler::_voxel
private

Physical pixel size.

Definition at line 162 of file ImageSampler.h.

Referenced by sample(), and setupImageSampler().


The documentation for this class was generated from the following files: