Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
b4d3ff37
Commit
b4d3ff37
authored
Jun 11, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14720 from rgarnov:gapi_remove_lut3d
parents
1706a760
25e4bce1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
19 deletions
+0
-19
core.hpp
modules/gapi/include/opencv2/gapi/core.hpp
+0
-19
No files found.
modules/gapi/include/opencv2/gapi/core.hpp
View file @
b4d3ff37
...
@@ -1564,25 +1564,6 @@ number of channels as in the input matrix.
...
@@ -1564,25 +1564,6 @@ number of channels as in the input matrix.
*/
*/
GAPI_EXPORTS
GMat
LUT
(
const
GMat
&
src
,
const
Mat
&
lut
);
GAPI_EXPORTS
GMat
LUT
(
const
GMat
&
src
,
const
Mat
&
lut
);
/** @brief Performs a 3D look-up table transform of a multi-channel matrix.
The function LUT3D fills the output matrix with values from the look-up table. Indices of the entries
are taken from the input matrix. Interpolation is applied for mapping 0-255 range values to 0-16 range of 3DLUT table.
The function processes each element of src as follows:
@code{.cpp}
dst[i][j][k] = lut3D[~src_r][~src_g][~src_b];
@endcode
where ~ means approximation.
Output is a matrix of of @ref CV_8UC3.
@note Function textual ID is "org.opencv.core.transform.LUT3D"
@param src input matrix of @ref CV_8UC3.
@param lut3D look-up table 17x17x17 3-channel elements.
@param interpolation The depth of interpoolation to be used.
*/
GAPI_EXPORTS
GMat
LUT3D
(
const
GMat
&
src
,
const
GMat
&
lut3D
,
int
interpolation
=
INTER_NEAREST
);
/** @brief Converts a matrix to another data depth with optional scaling.
/** @brief Converts a matrix to another data depth with optional scaling.
The method converts source pixel values to the target data depth. saturate_cast\<\> is applied at
The method converts source pixel values to the target data depth. saturate_cast\<\> is applied at
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment