- 所有已实现的接口:
- IAutoCorrelogramFeatureExtractor
public class DynamicProgrammingAutoCorrelogramExtraction
extends java.lang.Object
implements IAutoCorrelogramFeatureExtractor
DynamicProgrammingAutoCorrelogramExtraction is an implementation of dynamic programming approach to
build auto-correlogram feature vector from images. It is based on Huang et al paper,
"Image Indexing Using Color Correlograms", CVPR1997. J Huang, S. R Kumar, M. Mitra, W. Zhu, R. Zabih
- 作者:
- Rodrigo Carvalho Rezende http://www.rodrigorezende.net/
I noticed that although this approach has teoretical complexity O(|I|*d) lower than a naive method O(|I|*d²),
in practice is slower and consumes more memory.
It is recomended to use only one object for each thread. So, it is recomended to change the way of instance this class.