mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-02 13:58:01 +08:00
Add short description to ORB example
This commit is contained in:
@@ -1,3 +1,17 @@
|
||||
"""
|
||||
==========================================
|
||||
ORB feature detector and binary descriptor
|
||||
==========================================
|
||||
|
||||
This example demonstrates the ORB feature detection and binary description
|
||||
algorithm. It uses an oriented FAST detection method and the rotated BRIEF
|
||||
descriptors.
|
||||
|
||||
ORB is comparatively scale- and rotation-invariant. As a binary descriptor it
|
||||
allows to employ the very efficient Hamming distance metric for matching and
|
||||
is thus preferred for real-time applications.
|
||||
|
||||
"""
|
||||
import numpy as np
|
||||
from skimage import data
|
||||
from skimage import transform as tf
|
||||
Reference in New Issue
Block a user