OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getPixelValue
(Results
1 - 9
of
9
) sorted by null
/cts/apps/CtsVerifier/include/colorchecker/
testingimage.h
40
int
getPixelValue
(int row, int column, int channel) const;
41
Vec3i
getPixelValue
(int row, int column) const;
42
Vec3i
getPixelValue
(const Vec2i &pixelPosition) const;
43
Vec3i
getPixelValue
(const Vec2f &pixelPosition) const;
/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
...]
colorcheckertest.cpp
565
color->set(mImage->
getPixelValue
(*pointCenter).r(),
566
mImage->
getPixelValue
(*pointCenter).g(),
567
mImage->
getPixelValue
(*pointCenter).b());
[
all
...]
/frameworks/av/media/libstagefright/yuv/
YUVCanvas.cpp
78
srcImage.
getPixelValue
(srcX, srcY, &yValue, &uValue, &vValue);
102
srcImage.
getPixelValue
(srcX, srcY, &yValue, &uValue, &vValue);
YUVImage.cpp
163
bool YUVImage::
getPixelValue
(int32_t x, int32_t y,
399
getPixelValue
(x, y, &yValue, &uValue, & vValue);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEConvolveMatrix.h
96
ALWAYS_INLINE int
getPixelValue
(PaintingData&, int x, int y);
FEConvolveMatrix.cpp
217
For other regions, fastSetOuterPixels is used, which calls
getPixelValue
,
308
ALWAYS_INLINE int FEConvolveMatrix::
getPixelValue
(PaintingData& paintingData, int x, int y)
368
int pixelIndex =
getPixelValue
(paintingData, kernelPixelX, kernelPixelY);
/frameworks/av/include/media/stagefright/
YUVImage.h
80
bool
getPixelValue
(int32_t x, int32_t y,
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
prototype-1.7.js
[
all
...]
Completed in 819 milliseconds