OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:new_cam
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/calib3d/test/
test_undistort.cpp
699
vector<double>
new_cam
(test_mat[INPUT][4].cols * test_mat[INPUT][4].rows);
704
Mat _new_cam(test_mat[INPUT][4].size(),CV_64F,&
new_cam
[0]);
743
new_cam
[8] = 1;
745
//
new_cam
[0] = cam[0];
746
//
new_cam
[4] = cam[4];
747
//
new_cam
[2] = cam[2];
748
//
new_cam
[5] = cam[5];
750
new_cam
[0] = cam[0] + (cvtest::randReal(rng) - (double)0.5)*0.2*cam[0]; //10%
751
new_cam
[4] = cam[4] + (cvtest::randReal(rng) - (double)0.5)*0.2*cam[4]; //10%
752
new_cam
[2] = cam[2] + (cvtest::randReal(rng) - (double)0.5)*0.3*img_size.width; //15
846
double*
new_cam
= new double[test_mat[INPUT][4].cols * test_mat[INPUT][4].rows];
local
[
all
...]
/external/opencv3/modules/imgproc/test/
test_imgwarp.cpp
891
double
new_cam
[9] = {0,0,0,0,0,0,0,0,1};
local
895
Mat _new_cam(test_mat[INPUT][3].rows,test_mat[INPUT][3].cols,CV_64F,
new_cam
);
921
new_cam
[0] = a[0] + (cvtest::randReal(rng) - (double)0.5)*0.2*a[0]; //10%
922
new_cam
[4] = a[4] + (cvtest::randReal(rng) - (double)0.5)*0.2*a[4]; //10%
923
new_cam
[2] = a[2] + (cvtest::randReal(rng) - (double)0.5)*0.3*test_mat[INPUT][0].rows; //15%
924
new_cam
[5] = a[5] + (cvtest::randReal(rng) - (double)0.5)*0.3*test_mat[INPUT][0].cols; //15%
[
all
...]
Completed in 118 milliseconds