HomeSort by relevance Sort by last modified time
    Searched refs:Vec3f (Results 1 - 25 of 38) sorted by null

1 2

  /cts/apps/CtsVerifier/include/colorchecker/
whitebalancetest.h 33 const std::vector<Vec3f>* checkerColors) {
48 int findCorrelatedColorTemp(const Vec3f &whitePoint);
49 Vec3f initializeFromRGB(const Vec3f &rgb);
53 std::vector<Vec3f> mCheckerColors;
54 std::vector<Vec3f> mCheckerXyzColors;
55 std::vector<Vec3f> mXyzColorsDaylight;
autolocktest.h 31 void addDataToList(const std::vector<Vec3f>* checkerColors) {
45 bool IsBrighterThan(const std::vector<Vec3f>* colorCheckers1,
46 const std::vector<Vec3f>* colorCheckers2) const;
47 bool IsEquivalentTo(const std::vector<Vec3f>* colorCheckers1,
48 const std::vector<Vec3f>* colorCheckers2) const;
50 std::vector<std::vector<Vec3f> > mCheckerColors;
meteringtest.h 35 void addDataToList(const std::vector<Vec3f>* checkerColors) {
49 bool isDarkerThan(const std::vector<Vec3f>* checkerColors1,
50 const std::vector<Vec3f>* checkerColors2) const;
51 bool isEquivalentTo(const std::vector<Vec3f>* checkerColors1,
52 const std::vector<Vec3f>* checkerColors2) const;
54 std::vector<std::vector<Vec3f> > mCheckerColors;
exposurecompensationtest.h 38 const std::vector<Vec3f>* checkerColors) {
52 std::vector<std::vector<Vec3f> > mCheckerColors;
testingimage.h 53 const std::vector<Vec3f>* getColorChecker(
colorcheckertest.h 98 std::vector<std::vector< Vec3f* > > mMatchColors;
vec3.h 115 typedef Vec3<float> Vec3f;
  /external/opencv3/modules/photo/src/
hdr_common.cpp 79 weight.at<Vec3f>(i) = Vec3f::all(value);
100 response.at<Vec3f>(i) = Vec3f::all(static_cast<float>(i));
calibrate.cpp 206 card.at<Vec3f>(*ptr)[c] += 1;
224 new_response.at<Vec3f>(*ptr)[c] += times.at<float>((int)i) * *rad_ptr;
230 float middle = new_response.at<Vec3f>(LDR_SIZE / 2)[c];
232 new_response.at<Vec3f>(i)[c] /= middle;
  /external/opencv3/samples/cpp/tutorial_code/viz/
transformations.cpp 81 Affine3f transform = viz::makeTransformToGlobal(Vec3f(0.0f,-1.0f,0.0f), Vec3f(-1.0f,0.0f,0.0f), Vec3f(0.0f,0.0f,-1.0f), cam_pos);
88 Affine3f cloud_pose = Affine3f().translate(Vec3f(0.0f,0.0f,3.0f));
widget_pose.cpp 71 Affine3f pose(rot_mat, Vec3f(translation, translation, translation));
  /external/opencv3/samples/cpp/
houghcircles.cpp 33 vector<Vec3f> circles;
detect_mser.cpp 106 Vec3f zoom(1,0,0);
226 Mat_<Vec3f> vertex(1, img.cols*img.rows);
234 vertex.at< Vec3f >(0, nbPix) = Vec3f(float(2 * (x - 0.5)), float(2 * (0.5 - y)), float(imgGray.at<uchar>(i, j) / 512.0));
stereo_match.cpp 36 Vec3f point = mat.at<Vec3f>(y, x);
  /external/opencv3/modules/cudaimgproc/test/
test_hough.cpp 121 static void drawCircles(cv::Mat& dst, const std::vector<cv::Vec3f>& circles, bool fill)
144 std::vector<cv::Vec3f> circles_gold(4);
158 std::vector<cv::Vec3f> circles;
165 cv::Vec3f cur = circles[i];
171 cv::Vec3f gold = circles_gold[j];
  /external/opencv3/modules/cudaimgproc/perf/
perf_hough.cpp 66 bool operator()(const cv::Vec3f& a, const cv::Vec3f b) const
212 cv::Vec3f* begin = gpu_circles.ptr<cv::Vec3f>(0);
213 cv::Vec3f* end = begin + gpu_circles.cols;
219 std::vector<cv::Vec3f> cpu_circles;
  /external/opencv3/modules/cudaimgproc/src/
hough_circles.cpp 144 bool centersCompare(Vec3f a, Vec3f b) {return (a[2] > b[2]);}
230 std::vector<Vec3f> sortBuf;
232 Vec3f temp;
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
HoughCircle_Demo.cpp 32 std::vector<Vec3f> circles;
  /external/opencv3/modules/imgcodecs/src/
grfmt_gdal.cpp 243 else if( image.depth() == CV_32F ){ image.at<Vec3f>(row,col) = Vec3f(newValue,newValue,newValue); }
266 else if( image.depth() == CV_32F ){ image.at<Vec3f>(row,col)[channel] = newValue; }
278 else if( image.depth() == CV_32F && channel < 4 ){ image.at<Vec3f>(row,col)[channel] = newValue; }
  /external/opencv3/modules/viz/src/vtk/
vtkTrajectorySource.cpp 94 points.at<Vec3f>(i) = fpath[i].translation();
vtkCloudMatSink.cpp 78 Vec3f *fdata = cloud.getMat().ptr<Vec3f>();
  /external/opencv3/modules/core/test/
test_operations.cpp 472 Vec3f cdir(1.f, 1.f, 0.f);
473 Vec3f ydir(1.f, 0.f, 1.f);
474 Vec3f fpt(0.1f, 0.7f, 0.2f);
804 cv::Vec3f val1 = 1.f;
805 TestType<cv::Vec3f>(size, val1);
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
affine.hpp 145 static Vec3f operator*(const Affine3f& affine, const Vec3f& vector);
463 cv::Vec3f cv::operator*(const cv::Affine3f& affine, const cv::Vec3f& v)
466 cv::Vec3f r;
  /external/opencv3/modules/calib3d/test/
test_chessboardgenerator.cpp 83 Vec3f n;
98 Vec3f n_temp = n; n_temp[0] += 100;
99 Vec3f b1 = n.cross(n_temp);
100 Vec3f b2 = n.cross(b1);
  /external/opencv3/modules/imgproc/src/
floodfill.cpp 277 typedef DiffC3<Vec3f> Diff32fC3;
477 struct { Vec3b b; Vec3i i; Vec3f f; } ld_buf, ud_buf;
537 floodFill_CnIR(img, seedPoint, Vec3f(nv_buf.f), &comp, flags, &buffer);
615 floodFillGrad_CnIR<Vec3f, uchar, Vec3f, Diff32fC3>(
616 img, mask, seedPoint, Vec3f(nv_buf.f), newMaskVal,

Completed in 358 milliseconds

1 2