HomeSort by relevance Sort by last modified time
    Searched refs:problem (Results 26 - 50 of 218) sorted by null

12 3 4 5 6 7 8 9

  /external/ceres-solver/examples/
denoising.cc 88 // Creates a Fields of Experts MAP inference problem.
91 Problem* problem,
100 problem->AddResidualBlock(cost_function,
129 problem->AddResidualBlock(cost_function[alpha_index],
137 // Solves the FoE problem using Ceres and post-processes it to make sure the
139 void SolveProblem(Problem* problem, PGMImage<double>* solution) {
157 ceres::Solve(options, problem, &summary);
209 ceres::Problem problem local
    [all...]
curve_fitting.c 160 ceres_problem_t* problem; local
165 problem = ceres_create_problem();
170 problem,
181 ceres_solve(problem);
182 ceres_free_problem(problem);
circle_fit.cc 47 // There are closed form solutions [1] to this problem which you may want to
64 using ceres::Problem;
128 Problem problem; local
143 problem.AddResidualBlock(cost, loss, &x, &y, &m);
149 // Build and solve the problem.
154 Solve(options, &problem, &summary);
bundle_adjuster.cc 31 // An example of solving a dynamically sized problem with various
39 // The problem being solved here is known as a Bundle Adjustment
40 // problem in computer vision. Given a set of 3d points X_1, ..., X_n,
50 // The problem used here comes from a collection of bundle adjustment
246 void BuildProblem(BALProblem* bal_problem, Problem* problem) {
289 problem->AddResidualBlock(cost_function,
295 problem->AddResidualBlock(cost_function, loss_function, camera, point);
303 problem->SetParameterization(cameras + camera_block_size * i,
311 Problem problem local
    [all...]
curve_fitting.cc 36 using ceres::Problem;
143 Problem problem; local
145 problem.AddResidualBlock(
158 Solve(options, &problem, &summary);
data_fitting.cc 36 using ceres::Problem;
145 Problem problem; local
147 problem.AddResidualBlock(
160 Solve(options, &problem, &summary);
  /external/ceres-solver/internal/ceres/
c_api_test.cc 143 ceres_problem_t* problem = ceres_create_problem(); local
146 problem,
157 ceres_solve(problem);
162 ceres_free_problem(problem);
197 ceres_problem_t* problem = ceres_create_problem(); local
200 problem,
211 ceres_solve(problem);
217 ceres_free_problem(problem);
covariance_impl.h 56 ProblemImpl* problem);
64 ProblemImpl* problem);
78 Problem::EvaluateOptions evaluate_options_;
unsymmetric_linear_solver_test.cc 48 scoped_ptr<LinearLeastSquaresProblem> problem(
51 CHECK_NOTNULL(problem.get());
52 A_.reset(down_cast<TripletSparseMatrix*>(problem->A.release()));
53 b_.reset(problem->b.release());
54 D_.reset(problem->D.release());
55 sol_unregularized_.reset(problem->x.release());
56 sol_regularized_.reset(problem->x_D.release());
implicit_schur_complement_test.cc 58 scoped_ptr<LinearLeastSquaresProblem> problem(
61 CHECK_NOTNULL(problem.get());
62 A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
63 b_.reset(problem->b.release());
64 D_.reset(problem->D.release());
68 num_eliminate_blocks_ = problem->num_eliminate_blocks;
schur_complement_solver_test.cc 50 scoped_ptr<LinearLeastSquaresProblem> problem(
53 CHECK_NOTNULL(problem.get());
54 A.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
55 b.reset(problem->b.release());
56 D.reset(problem->D.release());
60 num_eliminate_blocks = problem->num_eliminate_blocks;
schur_eliminator_test.cc 57 problem(CreateLinearLeastSquaresProblemFromId(id));
58 CHECK_NOTNULL(problem.get());
59 SetupHelper(problem.get());
62 void SetupHelper(LinearLeastSquaresProblem* problem) {
63 A.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
64 b.reset(problem->b.release());
65 D.reset(problem->D.release());
67 num_eliminate_blocks = problem->num_eliminate_blocks;
77 // solution to the linear least squares problem using dense linear
166 // Solution to the linear least squares problem
    [all...]
  /external/chromium_org/content/child/
child_histogram_message_filter.h 40 base::HistogramBase::Inconsistency problem) OVERRIDE;
42 base::HistogramBase::Inconsistency problem) OVERRIDE;
child_histogram_message_filter.cc 89 base::HistogramBase::Inconsistency problem) {
91 problem, base::HistogramBase::NEVER_EXCEEDED_VALUE);
95 base::HistogramBase::Inconsistency problem) {
97 problem, base::HistogramBase::NEVER_EXCEEDED_VALUE);
  /external/oauth/core/src/main/java/net/oauth/
OAuthProblemException.java 25 * Describes an OAuth-related problem, using a set of named parameters. One
26 * parameter identifies the basic problem, and the others provide supplementary
29 * href="http://wiki.oauth.net/ProblemReporting">Problem Reporting
42 public OAuthProblemException(String problem) {
43 super(problem);
44 if (problem != null) {
45 parameters.put(OAUTH_PROBLEM, problem);
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthResponseMessage.java 87 } catch (OAuthProblemException problem) {
88 problem.getParameters().putAll(getDump());
89 throw problem;
  /external/ceres-solver/include/ceres/
covariance.h 42 class Problem;
56 // non-linear least squares problem and provides random access to its
65 // Let us consider the non-linear regression problem
72 // solution to the non-linear least squares problem:
95 // of y, then the maximum likelihood problem to be solved is
106 // scaled, e.g. in the above case the cost function for this problem
111 // non-linear least squares problem and provides random access to its
134 // Structural rank deficiency occurs when the problem contains
176 // Problem problem;
    [all...]
  /external/e2fsprogs/e2fsck/
pass2.c 48 #include "problem.h"
350 int problem = 0; local
353 problem = PR_2_MISSING_DOT;
356 problem = PR_2_1ST_NOT_DOT;
358 problem = PR_2_DOT_NULL_TERM;
361 if (problem) {
362 if (fix_problem(ctx, problem, pctx)) {
407 int rec_len, problem = 0; local
410 problem = PR_2_MISSING_DOT_DOT;
414 problem = PR_2_2ND_NOT_DOT_DOT
724 int problem; local
1257 int problem = 0; local
    [all...]
pass5.c 14 #include "problem.h"
69 static void print_bitmap_problem(e2fsck_t ctx, int problem,
72 switch (problem) {
77 problem = PR_5_BLOCK_RANGE_UNUSED;
83 problem = PR_5_BLOCK_RANGE_USED;
89 problem = PR_5_INODE_RANGE_UNUSED;
95 problem = PR_5_INODE_RANGE_USED;
98 fix_problem(ctx, problem, pctx);
114 int problem, save_problem, fixit, had_problem; local
210 problem = PR_5_BLOCK_UNUSED
340 int problem, save_problem, fixit, had_problem; local
    [all...]
  /external/apache-http/src/org/apache/http/client/utils/
URLEncodedUtils.java 177 } catch (UnsupportedEncodingException problem) {
178 throw new IllegalArgumentException(problem);
186 } catch (UnsupportedEncodingException problem) {
187 throw new IllegalArgumentException(problem);
  /external/chromium/chrome/common/
metrics_helpers.h 203 virtual void InconsistencyDetected(int problem) = 0;
204 virtual void UniqueInconsistencyDetected(int problem) = 0;
268 virtual void InconsistencyDetected(int problem);
269 virtual void UniqueInconsistencyDetected(int problem);
  /external/chromium_org/tools/checkdeps/
checkdeps_test.py 36 """Finds the problem in |problems| that contains |key_path|,
38 that problem, in the order they appear in
43 for problem in problems:
44 index = problem.find(key_path)
47 index = problem.find(substring, index + 1)
48 self.failUnless(index != -1, '%s in %s' % (substring, problem))
52 self.fail('Found no problem for file %s' % key_path)
  /ndk/
GNUmakefile 33 $(error,Please fix the problem by reinstalling to a different location.)
  /external/chromium_org/chrome/browser/resources/media/
webrtc_logs.js 52 'URL (if applicable) where the problem occurred:',
54 'Can you reproduce this problem?',
56 'What steps will reproduce this problem? (or if it\'s not ' +
57 'reproducible, what were you doing just before the problem)?',
  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 69 OAuthProblemException problem = new OAuthProblemException( local
71 problem.setParameter("oauth_signature", signature);
72 problem.setParameter("oauth_signature_base_string", baseString);
73 problem.setParameter("oauth_signature_method", message
75 throw problem;
226 OAuthProblemException problem = new OAuthProblemException( local
230 problem.setParameter("oauth_acceptable_signature_methods",
233 throw problem;

Completed in 1099 milliseconds

12 3 4 5 6 7 8 9