Skip to content
This repository was archived by the owner on Jul 20, 2023. It is now read-only.

Commit f9164e2

Browse files
authored
Merge pull request #4 from SolarFramework/feature/UnityPlugin
merge 5.1.0 version
2 parents 848e716 + 671b3bd commit f9164e2

File tree

9 files changed

+13
-18
lines changed

9 files changed

+13
-18
lines changed

CMakeLists.txt

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.7.2)
22

33
##################################################
4-
set (VERSION_NUMBER "0.5.0")
4+
set (VERSION_NUMBER "0.5.1")
55
project("SolARModuleFBOW")
66
set (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-
2517
install (FILES "${CMAKE_CURRENT_SOURCE_DIR}/xpcf_SolARModuleFBOW_registry.xml" DESTINATION $ENV{BCOMDEVROOT}/.xpcf/SolAR/ )
2618

2719
##################################################

SolARModuleFBOW.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ CONFIG -= qt
66
TARGET = SolARModuleFBOW
77
INSTALLSUBDIR = bcomBuild
88
FRAMEWORK = $$TARGET
9-
VERSION=0.5.0
9+
VERSION=0.5.1
1010

1111
DEFINES += MYVERSION=$${VERSION}
1212
DEFINES += TEMPLATE_LIBRARY

packagedependencies.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opencv|3.4.3|opencv|thirdParties|url_repo_artifactory
22
fbow|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
44
xpcf|2.1.0|xpcf|thirdParties|http://repository.b-com.com/amc-generic
55
boost|1.68.0|boost|thirdParties|http://repository.b-com.com/amc-generic
66
spdlog|0.14.0|spdlog|thirdParties|http://repository.b-com.com/amc-generic

src/SolARKeyframeRetrieverFBOW.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616

1717
#include "SolARKeyframeRetrieverFBOW.h"
18+
#include <core/Log.h>
1819

1920
namespace xpcf = org::bcom::xpcf;
2021

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
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

tests/ClosestKeyframeRetrieval/SolARTestModuleFBOWClosestKeyframeRetrieval.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TARGET = SolARTestModuleFBOWClosestKeyframeRetrieval
2-
VERSION=0.5.0
2+
VERSION=0.5.1
33

44
CONFIG += c++11
55
CONFIG -= qt

tests/ClosestKeyframeRetrieval/conf_ClosestKeyframeRetrieval.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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"/>
@@ -16,7 +16,7 @@
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"/>

tests/ClosestKeyframeRetrieval/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
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

4041
using namespace SolAR;

tests/ClosestKeyframeRetrieval/packagedependencies.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
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
54
xpcf|2.1.0|xpcf|thirdParties|http://repository.b-com.com/
65
boost|1.68.0|boost|thirdParties|http://repository.b-com.com/
76
opencv|3.4.3|opencv|thirdParties|http://repository.b-com.com/

0 commit comments

Comments
 (0)