OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getPixelValue
(Results
1 - 2
of
2
) sorted by null
/cts/apps/CtsVerifier/lib/colorchecker/
testingimage.cpp
102
int TestingImage::
getPixelValue
(int row, int column, int channel) const {
109
Vec3i TestingImage::
getPixelValue
(int row, int column) const {
110
Vec3i current_color(
getPixelValue
(row, column, 0),
111
getPixelValue
(row, column, 1),
112
getPixelValue
(row, column, 2));
116
Vec3i TestingImage::
getPixelValue
(const Vec2i &pixelPosition) const {
117
return
getPixelValue
(pixelPosition.x(), pixelPosition.y());
120
Vec3i TestingImage::
getPixelValue
(const Vec2f &pixelPosition) const {
121
return
getPixelValue
(static_cast<int>(pixelPosition.x()),
152
meanColor = meanColor +
getPixelValue
(pixelPosition)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEConvolveMatrix.cpp
220
For other regions, fastSetOuterPixels is used, which calls
getPixelValue
,
312
ALWAYS_INLINE int FEConvolveMatrix::
getPixelValue
(PaintingData& paintingData, int x, int y)
372
int pixelIndex =
getPixelValue
(paintingData, kernelPixelX, kernelPixelY);
Completed in 624 milliseconds