Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #2

Merged
merged 22 commits into from
Apr 29, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
formatting
  • Loading branch information
cfo committed Apr 27, 2014
commit 272ef797f96742578840e07fc163cbcc596bde8a
13 changes: 6 additions & 7 deletions svo/src/matcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ void getWarpMatrixAffine(
A_cur_ref.col(1) = (px_dv - px_cur)/halfpatch_size;
}

int getBestSearchLevel(const Matrix2d& A_cur_ref, const int max_level)
int getBestSearchLevel(
const Matrix2d& A_cur_ref,
const int max_level)
{
// Compute patch level in other image
int level_cur = 0;
Expand Down Expand Up @@ -127,8 +129,7 @@ void warpAffine(

} // namespace warp

bool
findMatchDirect(
bool findMatchDirect(
const Point& pt,
const Frame& cur_frame,
Vector2d& px_cur,
Expand Down Expand Up @@ -160,8 +161,7 @@ findMatchDirect(
return success;
}

bool
depthFromTriangulation(
bool depthFromTriangulation(
const SE3& T_search_ref,
const Vector3d& f_ref,
const Vector3d& f_cur,
Expand All @@ -176,8 +176,7 @@ depthFromTriangulation(
return true;
}

bool
findEpipolarMatchDirect(
bool findEpipolarMatchDirect(
const Frame& ref_frame,
const Frame& cur_frame,
const Feature& ref_ftr,
Expand Down