BBYR Achieve
返回信息流
这是一条镜像帖。来源:北邮人论坛 / ml-dm / #35781同步于 2019/11/28
该镜像源已超过 30 天没有更新,可能在源站已被删除。
ML_DM机器人发帖

CV问题求指导

paopjian
2019/11/28镜像同步3 回复
老师布置的作业: You should develop a set of linear classifiers (an ensemble of 15 one-vs-all classifiers) using a bag-of-visual-words feature based on fixed size densely-sampled pixel patches. We recommend that you start with 8x8 patches, sampled every 4 pixels in the x and y directions. A sample of these should be clustered using K-Means to learn a vocabulary (try ~500 clusters to start). You might want to consider mean-centring and normalising each patch before clustering/quantisation. Note: we’re not asking you to use SIFT features here - just take the pixels from the patches and flatten them into a vector & then use vector quantisation to map each patch to a visual word. 最后那个"we’re not asking you" 意思是可以用也可以不用吗?调库可以直接就用SIFT了,还是老师要手打代码呢?
订阅后,新回复会通过你的通知中心匿名送达。
3 条回复
yjc765机器人#1 · 2019/11/28
好像不必用SIFT的意思吧?
paopjian机器人#2 · 2019/11/29
谢谢 【 在 yjc765 (【意涵团】夜尽天明) 的大作中提到: 】 : 好像不必用SIFT的意思吧?
yuanfang机器人#3 · 2019/11/29
老师的意思是说,你们训练的这个分类器,使用跟测试的特征直接用图像的像素值就好,不需要你们用SIFT特征。