CHANGES for LIRE
================
2016-01-26
==========
- Changed conversion of images to TYPE_3BYTE_BGR in ImageUtils.
- Fixed a bug with GenericFastImageSearcher using multiple fields.
- Added example for local feature based search.
2016-01-25
==========
- Bugfix in ParallelIndexer, adding Preprocessor for images in local sampling routine
(based on bug descrition of Myrtha Fuog)
2015-11-06
==========
- Invalid character in comments removed (based on pull request of Bart Van Bos)
- Adapted .gitignore from https://github.com/boeboe/LIRE/ fork
- Adapted pom.xml from https://github.com/boeboe/LIRE/ fork
2015-09-22
==========
- Changed MetricSpaces query mode to term boosting to reduce size of query.
- Added statistics to docs.
2015-09-09
==========
- Added three distance functions to MetricsUtils
2015-09-09
==========
- API change and docs on metric indexing.
2015-09-09
==========
- DocValues implementation and tests for indexing and search.
- documentation on metric spaces and docvalues.
- Changed the RAM buffer size of IndexWriter instances in LuceneUtils to cope with lots of small files more easily.
2015-09-07
==========
- pom.xml patch by Lukas Knoch
2015-09-04
==========
- Documentation, error message updates.
- implemented and tested net.semanticmetadata.lire.searchers.MetricSpacesImageSearcher, on 100k images it
had similar performance to in-memory search w/o the startup delay.
2015-08-26
==========
- Indexing based on Metric Spaces mostly finished, with some tests still to be done.
see MetricSpacesTest for samples.
- Change in file handling in ParallelIndexer, now using MappedByteBuffer / NIO.
- Added support for hash method selection to GlobalDocumentBuilder and ParallelIndexer
2015-08-20
==========
- Converted ParallelExtractor to using LinkedBlockingQueue
2015-08-20
==========
- Speeded up extraction of PHOG by ~ 40%.
2015-08-17
==========
- Added a speed fix for Extraction of FCTH and CEDD based on a diff from from
Michael Riegler (https://www.simula.no/people/michael) &
Konstantin Pogorelov (https://www.simula.no/people/konstantinvpogorelov)
2015-06-17
==========
- Added custom DocumentBuilder for handling metadata to ParallelIndexer.
- Fixed LIRE demo.
- Worked on the developer docs.
2015-06-16
==========
- updated to Lucene 5.2.1, fixed simpleapplication to go with Lucene 5.2.1
2015-06-10
==========
- Lire 1.0 beta, extreme changelist, massive API changes, by Nektarios.
2015-02-13
==========
- Bug fix in LireDemo build file
2015-02-13
==========
- SimpleBuilder: Changed size selection to lookup table. -> 12% faster.
- SimpleBuilder: Reduced String concats & "new" in loops.
2015-02-10
==========
- bug fix in BOVWBuilder based on bug report by Haihui Cai
2015-01-18
==========
- Added custom implementation of a caching searcher
- fixed a performance issue in GenericFastImageSearcher
- refactored weka depending classes into a sample directory
2015-01-16
==========
- Made output of ParallelIndexer more readable.
- Added a getter to CEDD
2015-01-15
==========
- Updated documentation
2015-01-02
==========
- Moved documentation from online wiki to .md files. Using tool from mkdocs.org top generate static online site.
2014-12-18
==========
- Changed ParallelIndexer to using LinkedBlockingQueue and Files.readAllBytes(...) Note: JDK 7 only!
2014-12-12
==========
- Re-Factored handling of local features (Nektarios Anagnostopoulos)
2014-11-28
==========
- Added file read function to FileUtils.
2014-11-28
==========
- Changed dimension calculation to Math.round (instead of Math.floor) in image scaling in ImageUtils
2014-11-28
==========
- Bugfix in ScalableColorImpl from fix from Patti Spala for images with more than 3 bands, ie. alpha channel.
2014-11-17
==========
- Bugfix in cluster writing and reading (Nektarios Anagnostopoulos)
- Architectural re-arrangement of internal methods in BoVW implementation (Nektarios Anagnostopoulos)
2014-11-07
==========
- Updated to Lucene 4.10.2
- Added ExtractSingleFeature to simpleapplication.
- added OpenCV to lib (Nektarios Anagnostopoulos)
- Fixes to benchmarking and SIMPLE implementation (Nektarios Anagnostopoulos)
2014-08-23
==========
- Bug fixes from Nektarios Anagnostopoulos on CEDD
- Fixes on serialization of CEDD and FCTH
2014-08-19
==========
- Bug fixes from Nektarios Anagnostopoulos on CEDD
- Changes to SIMPLE and LoCate handling.
2014-08-26
==========
- Metric Spaces approach implemented and tested.
2014-07-24
==========
- Changed ID field in ChainedDocumentBuilder to StringField, based on the suggestion of Berthold Daum
- Added public SimpleImageSearchHits(Collection<SimpleResult> results, float maxDistance, boolean useSimilarityScore)
based on the suggestion of Berthold Daum
- Changed SimpleApplication classes to use the generic classes not the factories.
2014-04-16
==========
- Re-organized UCI Benchmarking
- Renamed LoDe to SIMPLE
2014-04-16
==========
- Added and tested LoDe (using global descriptors as local ones)
- Created and tested a LocalFeatureHistogramBuilder based on the
Apache Commons Math KMeans++ implementation
- Fixed several issues with net.semanticmetadata.lire.imageanalysis.bovw.BOVWBuilder
2014-04-14
==========
- Updated jopensurf to latest svn / git version.
- linked sift implementation to math3 package of Apache Math Commons
- fixed image cropping in ImageUtils. It didn't crop, but scaled
- added generic method to AbstractDocumentBuilder (arch simplification.)
- made CEDD work with smaller images (Tnx to Savvas Chatzichristofis)
2014-03-05
==========
- Fixed LireDemo bugs based on comments of Martha Larson's students from TU Delft:
* Re-sized large images to prevent out-of-memory errors
* Adapted error message to let people know they have to create a local feature histogram prior to searching for it.
2013-10-29
==========
- Doubled PHOG & Canny Edge Detector extraction speed (with Carlos Perez Lara)
2013-10-22
==========
- Added difference of Gaussians method to ImageUtils and unit test
2013-10-14
==========
- Added constructor to GenericDocumentBuilder to allow for selection of Hashing algorithm.
- Added some test files to excludes in compile task in the ant file.
2013-10-01
==========
- Fixed bugs in Canny Edge Detector implementation
- Fixed the same bugs in PHOG
2013-09-30
==========
- Added convenience methods to VLADBuilder (indexMissing, etc.)
- Added GenericByteLireFeature and renamed generic feature to
net.semanticmetadata.lire.imageanalysis.GenericDoubleLireFeature
2013-09-27
==========
- Added a preliminary implementation of the VLAD descriptor (net.semanticmetadata.lire.imageanalysis.bovw.VLADBuilder)
It's working, but not all features are available right now. Performance on the Wang data set is slightly better than
Edge Histogram, and slightly worse than PHOG. On the UCID data set it's quite in the middle.
2013-09-20
==========
- Added pixel clustering quantization method in package net.semanticmetadata.lire.utils.cv
- Added fast bilateral filtering based on the code from Frederic Langlet - https://code.google.com/p/kanzi/
- Added generic double[] k-means in package net.semanticmetadata.lire.utils.cv
2013-09-17
==========
- Updated to Lucene 4.4.0
2013-09-13
==========
- Fixed bug in ColorLayout distance metric
- Fixed bug in JCD re-use
- Fixed handling of "white only" images in trim(...) function.
2013-08-08
==========
- Speeded up ParallelIndexer by moving JPEG decoding to the consumer part.
2013-08-08
==========
- Speeded up OpponentHistogram extrac

*沧海明月*
- 粉丝: 26
- 资源: 5
最新资源
- 主动移频法AFD单相并网系统孤岛检测仿真模型与文档解析,主动移频法AFD单相并网系统孤岛检测仿真:理论与实践的完美结合说明文档,主动移频法AFD孤岛检测仿真 仿真为基于单相并网系统的孤岛检测,采用主动
- 基于Matlab Simulink的改进Ortega观测器永磁同步电机非线性磁链观测源代码及性能分析,基于Matlab Simulink的改进Ortega观测器永磁同步电机非线性磁链观测源代码:零速闭
- mysql-connector-java-8.0.16.jar和mysql-connector-java-8.0.19.jar
- 基于MATLAB的数字信号处理及数字滤波器设计与实现方法,基于MATLAB平台的数字信号处理技术研究:数字滤波器设计与实现的方法与探讨,基于MATLAB的数字信号处理、数字滤波器设计与实现 ,基于M
- 自动追频超声波发生器方案及半桥数码管显示技术,基于AVR单片机实现,自动追频超声波发生器方案及数码管显示技术-基于AVR单片机实现,自动追频超声波发生器,方案,资料 半桥数码管显示的方案,可直,留
- 基于前后双电机纯电动汽车的Cruise与Simulink联合仿真模型:驱动转矩控制策略及最优转矩分配系数研究,基于Cruise与Simulink联合仿真的前后双电机纯电动汽车转矩控制策略模型研究及最优
- 基于ATP-EMTP仿真的绝缘子串电位分布与冲击闪络特性分析:劣化绝缘子片对电压分布的影响研究,基于ATP-EMTP的绝缘子串电位分布及冲击闪络特性仿真研究:劣化绝缘子片对电压分布影响探究,基于ATP
- Comsol电磁仿真:复杂结构屏蔽效能分析、电磁耦合干扰研究及兼容性评估报告,电磁仿真专家解析:Comsol电磁场仿真技术,Comsol电磁场仿真 电磁耦合与干扰分析,复杂结构电磁屏蔽效能分析,电磁热
- Matlab与Simulink联合仿真实现自动驾驶的非线性MPC路径规划与线性MPC路径跟踪控制,自动驾驶规划控制:基于非线性MPC路径规划和线性MPC路径跟踪的Matlab与Simulink联合仿
- 深入解析Autoware.ai与Autoware.universe视频与PDF讲解:模块化细致解析与具体内容概览,深入理解Autoware.ai与Autoware.universe:模块化解析与视频详
- 基于1D-GAN的生成对抗网络数据生成方法及SVM分类器性能验证研究,基于1D-GAN与SVM的分类任务:数据生成与分类精度的实验研究,基于1D-GAN生成对抗网络的数据生成方法-Matlab代码 利
- ,Comsol中铌酸锂不同切向的归一化电场强度设置:电压影响折射率和反射率研究,Comsol铌酸锂不同切向设置 x切铌酸锂、z切铌酸锂 归一化电场强度设置、加电压计算折射率及反射率 ,Comsol
- 永磁同步电机矢量控制模型及三种控制策略比较:常规PI控制、滞环电流控制和滑膜速度控制,磁场定向控制FOC模型:常规PI、滞环电流、滑膜速度,控制效果出色,永磁同步电机矢量控制(磁场定向控制FOC)模型
- K近邻算法多变量时间序列预测,基于K近邻算法的多变量时间序列预测Matlab代码实现:不依赖工具箱,推荐使用2018B及以上版本,基于K近邻算法(KNN)的多变量时间序列预测 KNN多变量时间序列 m
- 基于MATLAB simulink与carsim联合仿真的车辆动力学模型质心侧偏角估计器研究与应用,MATLAB simulink联合carsim模型中的多维动态车辆质心侧偏角估计器:基于三自由度车辆
- 数据库管理领域中DM8-dmdbchk命令行工具的功能与参数详解及其用于数据文件完整性校验的技术指引
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


