Home
last modified time | relevance | path

Searched refs:projection_error (Results 1 – 25 of 30) sorted by relevance

12

/dports/science/py-OpenFermion/OpenFermion-1.3.0/src/openfermion/transforms/repconversions/
H A Dqubit_operator_transforms_test.py19 projection_error,
38 projection_error(operator=1.0, qubits=qbt_list, sectors=sector1)
42 projection_error(operator=operator, qubits=0.0, sectors=sector2)
48 projection_error(operator=operator,
56 projection_error(operator=operator, qubits=[0, 1], sectors=sector1)
62 projection_error(operator=operator, qubits=qbt_list, sectors=[0, 0])
68 projection_error(operator=operator, qubits=qbt_list, sectors=[-1])
79 error = projection_error(operator, qubits=[2, 3], sectors=[0, 1])
94 error = projection_error(operator, qubits=[1], sectors=[0])
H A D__init__.py20 projection_error,
H A Dqubit_operator_transforms.py76 def projection_error(operator, qubits, sectors): function
/dports/misc/vxl/vxl-3.3.2/core/vpgl/algo/
H A Dvpgl_rational_adjust.cxx34 vpgl_adjust_lsqr::f(const vnl_vector<double> & unknowns, vnl_vector<double> & projection_error) in f() argument
59 projection_error[ir++] = (pp.x() - c.x()) * (pp.x() - c.x()); in f()
60 projection_error[ir++] = (pp.y() - c.y()) * (pp.y() - c.y()); in f()
63 projection_error[ir++] = std::fabs(pp.x()-c.x()); in f()
64 projection_error[ir++] = std::fabs(pp.y()-c.y()); in f()
66 std::cout << "perror[" << i << "](" << projection_error[ir-2] << ' ' in f()
67 << projection_error[ir-1] << ")\n"; in f()
H A Dvpgl_rational_adjust_onept.h50 vnl_vector<double>& projection_error) override;
/dports/converters/osm2pgsql/osm2pgsql-1.5.1/contrib/libosmium/include/osmium/geom/
H A Dutil.hpp45 struct projection_error : public std::runtime_error { struct
47 explicit projection_error(const std::string& what) : in projection_error() function
51 explicit projection_error(const char* what) : in projection_error() argument
H A Dprojection.hpp86 …throw osmium::projection_error{std::string{"creation of CRS failed: "} + pj_strerrno(*pj_get_errno… in CRS()
128 … throw osmium::projection_error{std::string{"projection failed: "} + pj_strerrno(result)}; in transform()
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/libosmium/include/osmium/geom/
H A Dutil.hpp45 struct projection_error : public std::runtime_error { struct
47 explicit projection_error(const std::string& what) : in projection_error() function
51 explicit projection_error(const char* what) : in projection_error() argument
H A Dprojection.hpp86 …throw osmium::projection_error{std::string{"creation of CRS failed: "} + pj_strerrno(*pj_get_errno… in CRS()
129 … throw osmium::projection_error{std::string{"projection failed: "} + pj_strerrno(result)}; in transform()
/dports/astro/libosmium/libosmium-2.17.2/include/osmium/geom/
H A Dutil.hpp47 struct OSMIUM_EXPORT projection_error : public std::runtime_error { struct
49 explicit projection_error(const std::string& what) : in projection_error() argument
53 explicit projection_error(const char* what) : in projection_error() function
H A Dprojection.hpp86 …throw osmium::projection_error{std::string{"creation of CRS failed: "} + pj_strerrno(*pj_get_errno… in CRS()
128 … throw osmium::projection_error{std::string{"projection failed: "} + pj_strerrno(result)}; in transform()
/dports/astro/libosmium/libosmium-2.17.2/test/t/geom/
H A Dtest_projection.cpp36 REQUIRE_THROWS_AS(osmium::geom::Projection{"abc"}, osmium::projection_error);
40 REQUIRE_THROWS_AS(osmium::geom::Projection{9999999}, osmium::projection_error);
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/libosmium/test/t/geom/
H A Dtest_projection.cpp36 REQUIRE_THROWS_AS(osmium::geom::Projection{"abc"}, const osmium::projection_error&);
40 REQUIRE_THROWS_AS(osmium::geom::Projection{9999999}, const osmium::projection_error&);
/dports/misc/visp/visp-3.4.0/tutorial/tracking/model-based/generic-apriltag/
H A Dtutorial-mb-generic-tracker-apriltag-rs2.cpp98 double projection_error = tracker.computeCurrentProjectionError(I, cMo, cam); in track() local
99 if (projection_error > projection_error_threshold) { in track()
148 double projection_error = tracker.computeCurrentProjectionError(I_gray, cMo, cam_color); in track() local
149 if (projection_error > projection_error_threshold) { in track()
H A Dtutorial-mb-generic-tracker-apriltag-webcam.cpp98 double projection_error = tracker.computeCurrentProjectionError(I, cMo, cam); in track() local
99 if (projection_error > projection_error_threshold) { in track()
/dports/science/py-OpenFermion/OpenFermion-1.3.0/src/openfermion/transforms/
H A D__init__.py62 projection_error,
/dports/science/py-dlib/dlib-19.22/dlib/test/
H A Dekm_and_lisf.cpp273 … const double error_agreement = std::abs(err - lisf.projection_error(samples[i])); in perform_test()
283 const double error_agreement = std::abs(err - lisf.projection_error(temp)); in perform_test()
/dports/science/dlib-cpp/dlib-19.22/dlib/test/
H A Dekm_and_lisf.cpp273 … const double error_agreement = std::abs(err - lisf.projection_error(samples[i])); in perform_test()
283 const double error_agreement = std::abs(err - lisf.projection_error(temp)); in perform_test()
/dports/science/py-dlib/dlib-19.22/dlib/svm/
H A Dlinearly_independent_subset_finder_abstract.h154 scalar_type projection_error (
H A Dempirical_kernel_map_abstract.h238 scalar_type& projection_error
H A Dempirical_kernel_map.h273 scalar_type& projection_error in project() argument
287 projection_error = std::abs( kernel(samp,samp) - dot(temp2,temp2)); in project()
H A Dlinearly_independent_subset_finder.h130 scalar_type projection_error ( in projection_error() function
459 const scalar_type temp = lisf.projection_error(samples(idx)); in fill_lisf()
/dports/science/dlib-cpp/dlib-19.22/dlib/svm/
H A Dlinearly_independent_subset_finder_abstract.h154 scalar_type projection_error (
H A Dempirical_kernel_map_abstract.h238 scalar_type& projection_error
H A Dempirical_kernel_map.h273 scalar_type& projection_error in project() argument
287 projection_error = std::abs( kernel(samp,samp) - dot(temp2,temp2)); in project()

12