Rename CenSurE to CENSURE

This commit is contained in:
Johannes Schönberger
2014-01-22 19:34:48 -05:00
parent 13c63a9bf6
commit 172cbd58e0
4 changed files with 20 additions and 20 deletions
+5 -5
View File
@@ -1,16 +1,16 @@
"""
========================
CenSurE feature detector
CENSURE feature detector
========================
The CenSurE feature detector is a scale-invariant center-surround detector
(CenSurE) that claims to outperform other detectors and is capable of real-time
The CENSURE feature detector is a scale-invariant center-surround detector
(CENSURE) that claims to outperform other detectors and is capable of real-time
implementation.
"""
from skimage import data
from skimage import transform as tf
from skimage.feature import CenSurE
from skimage.feature import CENSURE
from skimage.color import rgb2gray
import matplotlib.pyplot as plt
@@ -20,7 +20,7 @@ tform = tf.AffineTransform(scale=(1.5, 1.5), rotation=0.5,
translation=(150, -200))
img2 = tf.warp(img1, tform)
detector = CenSurE()
detector = CENSURE()
fig, ax = plt.subplots(nrows=1, ncols=2)