Home
last modified time | relevance | path

Searched refs:x_proj (Results 1 – 3 of 3) sorted by relevance

/dports/misc/openmvg/openMVG-2.0/src/openMVG/image/
H A Dimage_warping.hpp32 const Vec2 x_proj = X.hnormalized(); in ApplyH_AndCheckOrientation() local
33 x = x_proj( 0 ); in ApplyH_AndCheckOrientation()
34 y = x_proj( 1 ); in ApplyH_AndCheckOrientation()
/dports/graphics/gmt/gmt-6.3.0/src/
H A Dgmt_map.c8070 double x_proj = 0.0, y_proj = 0.0, z_int, inv_nz; in gmt_grd_project() local
8163 x_proj = x_in_proj[col_in]; in gmt_grd_project()
8194 x_proj = GMT->current.proj.rect[XHI]; in gmt_grd_project()
8253 x_proj = x_out_proj[col_out]; in gmt_grd_project()
8263 while (x_proj < I->header->wesn[XLO] - GMT_CONV4_LIMIT) x_proj += 360.0; in gmt_grd_project()
8264 while (x_proj > I->header->wesn[XHI] + GMT_CONV4_LIMIT) x_proj -= 360.0; in gmt_grd_project()
8270 z_int = gmt_bcr_get_z (GMT, I, x_proj, y_proj); in gmt_grd_project()
8424 x_proj = x_in_proj[col_in]; in gmt_img_project()
8476 x_proj = x_out_proj[col_out]; in gmt_img_project()
8486 while (x_proj < I->header->wesn[XLO] - GMT_CONV4_LIMIT) x_proj += 360.0; in gmt_img_project()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/calib3d/src/
H A Dundistort.dispatch.cpp531 double x_proj = xd*fx + cx; in cvUndistortPointsInternal() local
534 error = sqrt( pow(x_proj - u, 2) + pow(y_proj - v, 2) ); in cvUndistortPointsInternal()