【发布时间】:2014-05-15 11:37:50
【问题描述】:
嘿嘿,,,我要做分类。对于描述符,我计划使用来自LOWE的HOG和SIFT描述符..
1. For HOG, is that true that we need to compute the gradient of all image's pixels??
For example we have image with size 10x10 pixels. And we compute the HOG to seek the orientation
for every pixels of image. And eventually we will get 100 orientations and generate histogram
(represent all of those image's pixels orientation). This Histogram is going to be used for the
classification??
And to get the scale invariant we need to perform this descriptor of different size (scale)
images??
SIFT 是尺度不变特征变换。所以它是缩放和旋转不变的。
我读到from here 说在 SIFT 中我们需要使用高斯进行平滑处理来制作我们的图像
分辨率变低了。。
2. Why we have to do that?
And for scale invariant features, how to obtain that in SIFT?? Do we need to rescale our image
in every octave and then apply Gaussian filter in this new scaled images?? Or it's enough to
get scale invariant only in 1 octave by applying 3 times gaussian filter??
How about the histogram, Is it same with HOG that we have to compute all the pixels???
谢谢
【问题讨论】:
-
嗨,欢迎来到 SO。您的问题除了格式不正确之外,与编程无关。找出理论并返回您可能遇到的任何实施问题。
标签: matlab classification sift feature-extraction