| MatLUT Method (InputArray) |
transforms array of numbers using a lookup table: dst(i)=lut(src(i))
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public Mat LUT(
InputArray lut
)
Public Function LUT (
lut As InputArray
) As Mat
public:
Mat^ LUT(
InputArray^ lut
)
member LUT :
lut : InputArray -> Mat
Parameters
- lut
- Type: OpenCvSharpInputArray
Look-up table of 256 elements.
In the case of multi-channel source array, the table should either have
a single channel (in this case the same table is used for all channels)
or the same number of channels as in the source array
Return Value
Type:
Mat[Missing <returns> documentation for "M:OpenCvSharp.Mat.LUT(OpenCvSharp.InputArray)"]
See Also