MaterialX 1.38.10
Loading...
Searching...
No Matches
Image.h
Go to the documentation of this file.
1//
2// Copyright Contributors to the MaterialX Project
3// SPDX-License-Identifier: Apache-2.0
4//
5
6#ifndef MATERIALX_IMAGE_H
7#define MATERIALX_IMAGE_H
8
11
13
15
16#include <MaterialXCore/Types.h>
17
18MATERIALX_NAMESPACE_BEGIN
19
20class Image;
21
23using ImagePtr = shared_ptr<Image>;
24
26using ConstImagePtr = shared_ptr<const Image>;
27
29using ImageMap = std::unordered_map<string, ImagePtr>;
30
32using ImageVec = std::vector<ImagePtr>;
33
35using ImagePair = std::pair<ImagePtr, ImagePtr>;
36
38using ImageBufferDeallocator = std::function<void(void*)>;
39
41using UnsignedIntPair = std::pair<unsigned int, unsigned int>;
42
45class MX_RENDER_API Image
46{
47 public:
48 enum class BaseType
49 {
50 UINT8,
51 INT8,
52 UINT16,
53 INT16,
54 HALF,
55 FLOAT
56 };
57
58 public:
60 static ImagePtr create(unsigned int width, unsigned int height, unsigned int channelCount, BaseType baseType = BaseType::UINT8)
61 {
62 return ImagePtr(new Image(width, height, channelCount, baseType));
63 }
64
65 ~Image();
66
69
71 unsigned int getWidth() const
72 {
73 return _width;
74 }
75
77 unsigned int getHeight() const
78 {
79 return _height;
80 }
81
83 unsigned int getChannelCount() const
84 {
85 return _channelCount;
86 }
87
89 BaseType getBaseType() const
90 {
91 return _baseType;
92 }
93
95 unsigned int getBaseStride() const;
96
98 unsigned int getRowStride() const
99 {
100 return _width * _channelCount * getBaseStride();
101 }
102
104 unsigned int getMaxMipCount() const;
105
109
112 void setTexelColor(unsigned int x, unsigned int y, const Color4& color);
113
116 Color4 getTexelColor(unsigned int x, unsigned int y) const;
117
121
123 Color4 getAverageColor();
124
127 bool isUniformColor(Color4* uniformColor = nullptr);
128
132
134 void setUniformColor(const Color4& color);
135
137 void applyMatrixTransform(const Matrix33& mat);
138
140 void applyGammaTransform(float gamma);
141
143 ImagePtr copy(unsigned int channelCount, BaseType baseType) const;
144
146 ImagePtr applyBoxBlur();
147
149 ImagePtr applyGaussianBlur();
150
153 ImagePair splitByLuminance(float luminance);
154
157 void writeTable(const FilePath& filePath, unsigned int channel);
158
162
164 void setResourceBuffer(void* buffer)
165 {
166 _resourceBuffer = buffer;
167 }
168
170 void* getResourceBuffer() const
171 {
172 return _resourceBuffer;
173 }
174
176 void createResourceBuffer();
177
179 void releaseResourceBuffer();
180
183 {
184 _resourceBufferDeallocator = deallocator;
185 }
186
189 {
190 return _resourceBufferDeallocator;
191 }
192
196
198 void setResourceId(unsigned int id)
199 {
200 _resourceId = id;
201 }
202
204 unsigned int getResourceId() const
205 {
206 return _resourceId;
207 }
208
210
211 protected:
212 Image(unsigned int width, unsigned int height, unsigned int channelCount, BaseType baseType);
213
214 protected:
215 unsigned int _width;
216 unsigned int _height;
217 unsigned int _channelCount;
218 BaseType _baseType;
219
220 void* _resourceBuffer;
221 ImageBufferDeallocator _resourceBufferDeallocator;
222 unsigned int _resourceId = 0;
223};
224
226MX_RENDER_API ImagePtr createUniformImage(unsigned int width, unsigned int height, unsigned int channelCount, Image::BaseType baseType, const Color4& color);
227
229MX_RENDER_API ImagePtr createImageStrip(const vector<ImagePtr>& imageVec);
230
232MX_RENDER_API UnsignedIntPair getMaxDimensions(const vector<ImagePtr>& imageVec);
233
234MATERIALX_NAMESPACE_END
235
236#endif
Cross-platform support for file and search paths.
shared_ptr< const Image > ConstImagePtr
A shared pointer to a const image.
Definition: Image.h:26
MX_RENDER_API ImagePtr createUniformImage(unsigned int width, unsigned int height, unsigned int channelCount, Image::BaseType baseType, const Color4 &color)
Create a uniform-color image with the given properties.
Definition: Image.cpp:22
MX_RENDER_API UnsignedIntPair getMaxDimensions(const vector< ImagePtr > &imageVec)
Compute the maximum width and height of all images in the given vector.
Definition: Image.cpp:77
std::pair< unsigned int, unsigned int > UnsignedIntPair
A pair of unsigned integers.
Definition: Image.h:41
std::function< void(void *)> ImageBufferDeallocator
A function to perform image buffer deallocation.
Definition: Image.h:38
std::vector< ImagePtr > ImageVec
A vetor of images.
Definition: Image.h:32
MX_RENDER_API ImagePtr createImageStrip(const vector< ImagePtr > &imageVec)
Create a horizontal image strip from a vector of images with identical resolutions and formats.
Definition: Image.cpp:30
std::unordered_map< string, ImagePtr > ImageMap
A map from strings to images.
Definition: Image.h:29
std::pair< ImagePtr, ImagePtr > ImagePair
A pair of images.
Definition: Image.h:35
shared_ptr< Image > ImagePtr
A shared pointer to an image.
Definition: Image.h:23
Data type classes.
Macros for declaring imported and exported symbols.
A four-component color value.
Definition: Types.h:364
A generic file path, supporting both syntactic and file system operations.
Definition: File.h:27
Class representing an image in system memory.
Definition: Image.h:46
void setResourceBufferDeallocator(ImageBufferDeallocator deallocator)
Set the resource buffer deallocator for this image.
Definition: Image.h:182
BaseType getBaseType() const
Return the base type of the image.
Definition: Image.h:89
unsigned int getHeight() const
Return the height of the image.
Definition: Image.h:77
unsigned int getChannelCount() const
Return the channel count of the image.
Definition: Image.h:83
unsigned int getResourceId() const
Return the resource ID for this image.
Definition: Image.h:204
void setResourceBuffer(void *buffer)
Set the resource buffer for this image.
Definition: Image.h:164
void setResourceId(unsigned int id)
Set the resource ID for this image.
Definition: Image.h:198
unsigned int getWidth() const
Return the width of the image.
Definition: Image.h:71
static ImagePtr create(unsigned int width, unsigned int height, unsigned int channelCount, BaseType baseType=BaseType::UINT8)
Create an empty image with the given properties.
Definition: Image.h:60
void * getResourceBuffer() const
Return the resource buffer for this image.
Definition: Image.h:170
unsigned int getRowStride() const
Return the stride of an image row in bytes.
Definition: Image.h:98
ImageBufferDeallocator getResourceBufferDeallocator() const
Return the resource buffer deallocator for this image.
Definition: Image.h:188
A 3x3 matrix of floating-point values.
Definition: Types.h:586