Rogue Wave Views 5.6 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
Kernel. More...
#include <ilviews/bitmaps/filters/kernel.h>
Inherits IlvValueInterface.
Public Types | |
enum | KernelHint { Normal, Nice } |
This enumeration defines the possible values for the hint. More... | |
Public Member Functions | |
IlvBitmapDataKernel (IlUInt width, IlUInt height, const char *values) | |
Constructor. | |
IlvBitmapDataKernel (IlUInt width, IlUInt height, const IlFloat *values) | |
Constructor. | |
IlvBitmapDataKernel () | |
Constructor. | |
virtual | ~IlvBitmapDataKernel () |
Destructor. | |
IlUInt | getHeight () const |
Returns the height of the kernel. | |
KernelHint | getHints () const |
Returns the hints of the kernel. | |
const char * | getKernelString () |
Returns a string representation of the kernel. | |
const IlFloat * | getKernelValues (IlUInt &width, IlUInt &height) const |
Returns an array of floating point values representing the kernel. | |
IlUInt | getWidth () const |
Returns the width of the kernel. | |
void | setHeight (IlUInt height) |
Sets the height of the kernel. | |
void | setHints (KernelHint hints) |
Sets the given hints. | |
void | setKernelString (const char *values) |
void | setValues (IlUInt width, IlUInt height, const char *values) |
void | setValues (IlUInt width, IlUInt height, const IlFloat *values) |
Sets the kernel values using an array of floating point values. | |
void | setWidth (IlUInt width) |
Sets the width of the kernel. |
Kernel.
Library: ilvbmpflt
This class lets you manipulate kernels. A kernel is an m x n matrix. It is mainly used by the IlvConvolutionFilter
.
For the Arithmetic operator each pixel is computed as follows:
result = k1 * c1 * c2 + k2 * c1 + k3 * c2 + k4
k1, k2, k3, and k4 can be specified.
IlvBitmapDataKernel::IlvBitmapDataKernel | ( | ) |
Constructor.
Initializes a new instance of the class IlvBitmapDataKernel
.
Constructor.
Initializes a new instance of the class IlvBitmapDataKernel
using an array of floating point values.
width | The width (columns) of the kernel. | |
height | The height (rows) of the kernel. | |
values | An array of width x height values. |
Constructor.
Initializes a new instance of the class IlvBitmapDataKernel
using a string representing the values, separated by 'space' or ','. For example: "1 1 1 1 2 1 1 1 1" is a simple blurring kernel.
width | The width (columns) of the kernel. | |
height | The height (rows) of the kernel. | |
values | A string representing the values. |
virtual IlvBitmapDataKernel::~IlvBitmapDataKernel | ( | ) | [virtual] |
Destructor.
The destructor releases all the memory used by the instance.
IlUInt IlvBitmapDataKernel::getHeight | ( | ) | const |
Returns the height of the kernel.
KernelHint IlvBitmapDataKernel::getHints | ( | ) | const |
Returns the hints of the kernel.
const char* IlvBitmapDataKernel::getKernelString | ( | ) |
Returns a string representation of the kernel.
Returns an array of floating point values representing the kernel.
width | The width of the kernel. | |
height | The height of the kernel. |
IlUInt IlvBitmapDataKernel::getWidth | ( | ) | const |
Returns the width of the kernel.
void IlvBitmapDataKernel::setHeight | ( | IlUInt | height | ) |
Sets the height of the kernel.
height | The new height of the kernel. |
void IlvBitmapDataKernel::setHints | ( | KernelHint | hints | ) |
Sets the given hints.
hints | The new kernel hints. |
void IlvBitmapDataKernel::setKernelString | ( | const char * | values | ) |
Sets the kernel values using a string representation.
values | The string representation of the new kernel. |
short Sets the kernel values using a string representation.
width | The width (columns) of the kernel. | |
height | The height (rows) of the kernel. | |
values | A string representing the values. |
Sets the kernel values using an array of floating point values.
width | The width (columns) of the kernel. | |
height | The height (rows) of the kernel. | |
values | An array of width x height values. |
void IlvBitmapDataKernel::setWidth | ( | IlUInt | width | ) |
Sets the width of the kernel.
width | The new width of the kernel. |
© Copyright 2012, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.