gatheluck / PaperReading

Notes about papers (in Japanese)
0 stars 0 forks source link

[2021] Learning to Solve Hard Minimal Problems #698

Open gatheluck opened 3 months ago

gatheluck commented 3 months ago

論文リンク

公開日(yyyy/mm/dd)

2021/12/06

概要

Research Question

研究で明らかにしたい問を端的に表したもの.

Elevator Pitch

[潜在的なニーズを満たしたり、潜在的な課題を解決したり] したい [対象ユーザー] 向けの, [提案手法] という手法は, [提案手法のカテゴリー] です. これは [提案手法の出来ること] ができ, [代替手段のSoTA] とは違って, [差別化の決定的な特徴] が備わっている.

TeX

% yyyy/mm/dd
@article{
    hruby2023learning,
    title={Learning to Solve Hard Minimal Problems},
    author={Petr Hruby and Timothy Duff and Anton Leykin and Tomas Pajdla},
    journal=arXiv # "2112.03424",
    year={2023}
}

Links

gatheluck commented 3 months ago

Screenshot from 2024-04-06 00-27-33

ita_{t}: mean effective solving time (average time to obtain one correct solution)

gatheluck commented 3 months ago

To demonstrate our method on a hard problem, we develop an efficient solver for the “Scranton” minimal problem obtained by relaxing the overconstrained problem of four points in three views (4pt) [50].

We train a model that predicts a starting problem for a single path real HC method to find a good solution.

Our solver is implemented efficiently in C++ and evaluated on the state-of-the-art data in computer vision.

It successfully solves about 26.3% of inputs in 16.3µs, Tab. 4.

In Sec. 9 we show that when used in RANSAC, about 4 samples suffice on average to obtain a valid candidate of camera geometry in 61.6µs.

No such efficient solver has been known for this problem before.

The best-known runtime for a very carefully designed approximation of the problem, reported in [50], was on the order of milliseconds.

We thus achieve more than ten times speedup compared to [50]. -> 10~100倍の高速化

gatheluck commented 3 months ago

カメラ姿勢推定のような、多くの偽の解をもつ連立方程式を解く必要があるタスクがμsオーダーで解けるようになった。