HomeSort by relevance Sort by last modified time
    Searched refs:Vec3i (Results 1 - 21 of 21) sorted by null

  /cts/apps/CtsVerifier/include/colorchecker/
imagetesthandler.h 41 void drawPoint(const Vec2i &point, const Vec3i &color);
42 void drawPoint(int row, int column, const Vec3i &color);
43 void drawLine(int angle, int radius, const Vec3i &color);
testingimage.h 41 Vec3i getPixelValue(int row, int column) const;
42 Vec3i getPixelValue(const Vec2i &pixelPosition) const;
43 Vec3i getPixelValue(const Vec2f &pixelPosition) const;
exposurecompensationtest.h 53 std::vector<Vec3i> mReferenceColors;
colorcheckertest.h 86 Vec2f* pointCenter, Vec3i* color);
93 std::vector<std::vector< Vec3i* > > mCandidateColors;
96 std::vector<std::vector< Vec3i* > > mReferenceColors;
vec3.h 114 typedef Vec3<int> Vec3i;
  /external/opencv3/samples/cpp/
tvl1_optical_flow.cpp 32 static Vec3i colorWheel[NCOLS];
39 colorWheel[k] = Vec3i(255, 255 * i / RY, 0);
42 colorWheel[k] = Vec3i(255 - 255 * i / YG, 255, 0);
45 colorWheel[k] = Vec3i(0, 255, 255 * i / GC);
48 colorWheel[k] = Vec3i(0, 255 - 255 * i / CB, 255);
51 colorWheel[k] = Vec3i(255 * i / BM, 0, 255);
54 colorWheel[k] = Vec3i(255, 0, 255 - 255 * i / MR);
houghcircles.cpp 40 Vec3i c = circles[i];
  /external/opencv3/samples/gpu/
optical_flow.cpp 34 static Vec3i colorWheel[NCOLS];
41 colorWheel[k] = Vec3i(255, 255 * i / RY, 0);
44 colorWheel[k] = Vec3i(255 - 255 * i / YG, 255, 0);
47 colorWheel[k] = Vec3i(0, 255, 255 * i / GC);
50 colorWheel[k] = Vec3i(0, 255 - 255 * i / CB, 255);
53 colorWheel[k] = Vec3i(255 * i / BM, 0, 255);
56 colorWheel[k] = Vec3i(255, 0, 255 - 255 * i / MR);
  /external/opencv3/modules/core/src/
cuda_info.cpp 418 Vec3i cv::cuda::DeviceInfo::maxThreadsDim() const
422 return Vec3i();
424 return Vec3i(deviceProps().get(device_id_)->maxThreadsDim);
428 Vec3i cv::cuda::DeviceInfo::maxGridSize() const
432 return Vec3i();
434 return Vec3i(deviceProps().get(device_id_)->maxGridSize);
616 Vec3i cv::cuda::DeviceInfo::maxTexture2DLinear() const
620 return Vec3i();
622 return Vec3i(deviceProps().get(device_id_)->maxTexture2DLinear);
636 Vec3i cv::cuda::DeviceInfo::maxTexture3D() cons
    [all...]
copy.cpp 244 DEF_COPY_MASK_F(32sC3, Vec3i, 32s_C3MR, Ipp32s)
    [all...]
matrix.cpp     [all...]
  /external/opencv3/modules/core/include/opencv2/core/
cuda.hpp 669 Vec3i maxThreadsDim() const;
672 Vec3i maxGridSize() const;
731 Vec3i maxTexture2DLinear() const;
737 Vec3i maxTexture3D() const;
746 Vec3i maxTexture2DLayered() const;
758 Vec3i maxSurface3D() const;
764 Vec3i maxSurface2DLayered() const;
mat.hpp     [all...]
matx.hpp 370 typedef Vec<int, 3> Vec3i;
    [all...]
  /external/opencv3/modules/cudaimgproc/test/
test_hough.cpp 145 circles_gold[0] = cv::Vec3i(20, 20, minRadius);
146 circles_gold[1] = cv::Vec3i(90, 87, minRadius + 3);
147 circles_gold[2] = cv::Vec3i(30, 70, minRadius + 8);
148 circles_gold[3] = cv::Vec3i(80, 10, maxRadius);
  /external/opencv3/modules/imgcodecs/src/
grfmt_gdal.cpp 242 else if( image.depth() == CV_32S ){ image.at<Vec3i>(row,col) = Vec3i(newValue,newValue,newValue); }
265 else if( image.depth() == CV_32S ){ image.at<Vec3i>(row,col)[channel] = newValue; }
277 else if( image.depth() == CV_32S && channel < 4 ){ image.at<Vec3i>(row,col)[channel] = newValue; }
  /external/opencv3/modules/imgproc/src/
floodfill.cpp 275 typedef DiffC3<Vec3i> Diff32sC3;
477 struct { Vec3b b; Vec3i i; Vec3f f; } ld_buf, ud_buf;
535 floodFill_CnIR(img, seedPoint, Vec3i(nv_buf.i), &comp, flags, &buffer);
595 floodFillGrad_CnIR<Vec3b, uchar, Vec3i, Diff8uC3>(
605 floodFillGrad_CnIR<Vec3i, uchar, Vec3i, Diff32sC3>(
606 img, mask, seedPoint, Vec3i(nv_buf.i), newMaskVal,
generalized_hough.cpp 94 std::vector<Vec3i> voteOutBuf_;
213 Vec3iGreaterThanIdx( const Vec3i* _arr ) : arr(_arr) {}
215 const Vec3i* arr;
226 std::vector<Vec3i> oldVoteBuf(voteOutBuf_);
485 voteOutBuf_.push_back(Vec3i(votes, 0, 0));
934 voteOutBuf_.push_back(Vec3i(votes, scaleVotes, angleVotes));
  /external/opencv3/modules/photo/src/
denoising.cpp 82 FastNlMeansDenoisingInvoker<Vec<ST, 3>, IT, UIT, D, Vec3i>(
282 FastNlMeansMultiDenoisingInvoker<Vec<ST, 3>, IT, UIT, D, Vec3i>(
  /external/opencv3/modules/features2d/src/
orb.cpp 729 static void uploadORBKeypoints(const std::vector<KeyPoint>& src, std::vector<Vec3i>& buf, OutputArray dst)
734 buf[i] = Vec3i(cvRound(src[i].pt.x), cvRound(src[i].pt.y), src[i].octave);
    [all...]
  /external/opencv3/modules/cudalegacy/src/
fgd.cpp 186 Vec3i count(0, 0, 0);

Completed in 1342 milliseconds