This repository was archived by the owner on Jul 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +13
-18
lines changed
tests/ClosestKeyframeRetrieval Expand file tree Collapse file tree 9 files changed +13
-18
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.7.2)
22
33##################################################
4- set (VERSION_NUMBER "0.5.0 " )
4+ set (VERSION_NUMBER "0.5.1 " )
55project ("SolARModuleFBOW" )
66set (SOURCES
77 src/SolARModuleFBOW.cpp
@@ -14,14 +14,6 @@ set (HEADERS
1414 interfaces/SolARKeyframeRetrieverFBOW.h
1515)
1616
17- find_package (OpenGL REQUIRED)
18-
19-
20-
21- include_directories (
22- src/
23- )
24-
2517install (FILES "${CMAKE_CURRENT_SOURCE_DIR} /xpcf_SolARModuleFBOW_registry.xml" DESTINATION $ENV{BCOMDEVROOT} /.xpcf/SolAR/ )
2618
2719##################################################
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ CONFIG -= qt
66TARGET = SolARModuleFBOW
77INSTALLSUBDIR = bcomBuild
88FRAMEWORK = $$TARGET
9- VERSION =0.5.0
9+ VERSION =0.5.1
1010
1111DEFINES += MYVERSION =$${VERSION }
1212DEFINES += TEMPLATE_LIBRARY
Original file line number Diff line number Diff line change 11opencv|3.4.3|opencv|thirdParties|url_repo_artifactory
22fbow|0.0.1|fbow|thirdParties|http://repository.b-com.com/amc-generic
3- SolARFramework|0.5.0 |SolARFramework|bcomBuild|url_repo_artifactory
3+ SolARFramework|0.5.1 |SolARFramework|bcomBuild|url_repo_artifactory
44xpcf|2.1.0|xpcf|thirdParties|http://repository.b-com.com/amc-generic
55boost|1.68.0|boost|thirdParties|http://repository.b-com.com/amc-generic
66spdlog|0.14.0|spdlog|thirdParties|http://repository.b-com.com/amc-generic
Original file line number Diff line number Diff line change 1515 */
1616
1717#include " SolARKeyframeRetrieverFBOW.h"
18+ #include < core/Log.h>
1819
1920namespace xpcf = org::bcom::xpcf;
2021
Original file line number Diff line number Diff line change 1+ Download first the fbow vocabularies on https://github.com/SolarFramework/binaries/releases/download/fbow%2F0.0.1%2Fwin/fbow_voc.zip
2+ Unzip this file in your working directory
Original file line number Diff line number Diff line change 11TARGET = SolARTestModuleFBOWClosestKeyframeRetrieval
2- VERSION =0.5.0
2+ VERSION =0.5.1
33
44CONFIG += c++11
55CONFIG -= qt
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" standalone =" yes" ?>
22<xpcf-registry >
33
4- <module uuid =" 15e1990b-86b2-445c-8194-0cbe80ede970" name =" SolARModuleOpenCV" description =" SolARModuleOpenCV" path =" $BCOMDEVROOT/bcomBuild/SolARModuleOpenCV/0.5.0 /lib/x86_64/shared" >
4+ <module uuid =" 15e1990b-86b2-445c-8194-0cbe80ede970" name =" SolARModuleOpenCV" description =" SolARModuleOpenCV" path =" $BCOMDEVROOT/bcomBuild/SolARModuleOpenCV/0.5.1 /lib/x86_64/shared" >
55 <component uuid =" e42d6526-9eb1-4f8a-bb68-53e06f09609c" name =" SolARImageLoaderOpencv" description =" SolARImageLoaderOpencv" >
66 <interface uuid =" 125f2007-1bf9-421d-9367-fbdc1210d006" name =" IComponentIntrospect" description =" IComponentIntrospect" />
77 <interface uuid =" 6FCDAA8D-6EA9-4C3F-97B0-46CD11B67A9B" name =" IImageLoader" description =" IImageLoader" />
1616 </component >
1717 </module >
1818
19- <module uuid =" b81f0b90-bdbc-11e8-a355-529269fb1459" name =" SolARModuleFBOW" description =" SolARModuleFBOW" path =" $BCOMDEVROOT/bcomBuild/SolARModuleFBOW/0.5.0 /lib/x86_64/shared" >
19+ <module uuid =" b81f0b90-bdbc-11e8-a355-529269fb1459" name =" SolARModuleFBOW" description =" SolARModuleFBOW" path =" $BCOMDEVROOT/bcomBuild/SolARModuleFBOW/0.5.1 /lib/x86_64/shared" >
2020 <component uuid =" 9d1b1afa-bdbc-11e8-a355-529269fb1459" name =" SolARKeyframeRetrieverFBOW" description =" SolARKeyframeRetrieverFBOW" >
2121 <interface uuid =" 125f2007-1bf9-421d-9367-fbdc1210d006" name =" IComponentIntrospect" description =" IComponentIntrospect" />
2222 <interface uuid =" f60980ce-bdbd-11e8-a355-529269fb1459" name =" IKeyframeRetriever" description =" IKeyframeRetriever" />
Original file line number Diff line number Diff line change 3535#include " api/features/IKeypointDetector.h"
3636#include " api/features/IDescriptorsExtractor.h"
3737#include " api/reloc/IKeyframeRetriever.h"
38+ #include " core/Log.h"
3839
3940
4041using namespace SolAR ;
Original file line number Diff line number Diff line change 1- SolARFramework|0.5.0|SolARFramework|bcomBuild|url_repo_artifactory
2- SolARModuleOpenCV|0.5.0|SolARModuleOpenCV|bcomBuild|url_repo_artifactory
3- SolARModuleFBOW|0.5.0|SolARModuleFBOW|bcomBuild|url_repo_artifactory
4- SolARModuleTools|0.5.0|SolARModuleTools|bcomBuild|url_repo_artifactory
1+ SolARFramework|0.5.1|SolARFramework|bcomBuild|url_repo_artifactory
2+ SolARModuleOpenCV|0.5.1|SolARModuleOpenCV|bcomBuild|url_repo_artifactory
3+ SolARModuleFBOW|0.5.1|SolARModuleFBOW|bcomBuild|url_repo_artifactory
54xpcf|2.1.0|xpcf|thirdParties|http://repository.b-com.com/
65boost|1.68.0|boost|thirdParties|http://repository.b-com.com/
76opencv|3.4.3|opencv|thirdParties|http://repository.b-com.com/
You can’t perform that action at this time.
0 commit comments