Python: scikit-image binary descriptor

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python: scikit-image binary descriptor相关的知识,希望对你有一定的参考价值。

这个用例说明 BRIEF binary description algorithm

from skimage import data
from skimage import transform as tf
from skimage.feature import (match_descriptors, corner_peaks, corner_harris,
                             plot_matches, BRIEF)
from skimage.color import rgb2gray
import matplotlib.pyplot as plt


img1 = rgb2gray(data.astronaut())
tform = tf.AffineTransform(scale=(1.2, 1.2), translation=(0, -100))
img2 = tf.warp(img1, tform)
img3 = tf.rotate(img1, 25)

keypoints1 = corner_peaks(corner_harris(img1), min_distance=5)
keypoints2 = corner_peaks(corner_harris(img2), min_distance=5)
keypoints3 = corner_peaks(corner_harris(img3), min_distance=5)

extractor = BRIEF()

extractor.extract(img1, keypoints1)
keypoints1 = keypoints1[extractor.mask]
descriptors1 = extractor.descriptors

extractor.extract(img2, keypoints2)
keypoints2 = keypoints2[extractor.mask]
descriptors2 = extractor.descriptors

extractor.extract(img3, keypoints3)
keypoints3 = keypoints3[extractor.mask]
descriptors3 = extractor.descriptors

matches12 = match_descriptors(descriptors1, descriptors2, cross_check=True)
matches13 = match_descriptors(descriptors1, descriptors3, cross_check=True)

fig, ax = plt.subplots(nrows=2, ncols=1)

plt.gray()

plot_matches(ax[0], img1, img2, keypoints1, keypoints2, matches12)
ax[0].axis(‘off‘)

plot_matches(ax[1], img1, img3, keypoints1, keypoints3, matches13)
ax[1].axis(‘off‘)

plt.show()

技术分享

以上是关于Python: scikit-image binary descriptor的主要内容,如果未能解决你的问题,请参考以下文章

Python: scikit-image Blob detection

如何在python中使用scikit-image greycomatrix()函数?

Python scikit-image 拉取请求 Travis CI Python 2.7 构建失败

scikit-image:遥感图像geotiff格式转mat格式

scikit-image 安装错误

AI常用框架和工具丨6. 图像处理库Scikit-image