Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ftl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Pope
ftl
Commits
07dc7863
Commit
07dc7863
authored
6 years ago
by
Nicolas Pope
Browse files
Options
Downloads
Patches
Plain Diff
Initial attempt to use ELAS library as algorithm
parent
3860ea19
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#9626
failed
6 years ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cv-node/CMakeLists.txt
+3
-1
3 additions, 1 deletion
cv-node/CMakeLists.txt
cv-node/include/ftl/algorithms/elas.hpp
+39
-0
39 additions, 0 deletions
cv-node/include/ftl/algorithms/elas.hpp
cv-node/src/algorithms/elas.cpp
+41
-0
41 additions, 0 deletions
cv-node/src/algorithms/elas.cpp
with
83 additions
and
1 deletion
cv-node/CMakeLists.txt
+
3
−
1
View file @
07dc7863
...
...
@@ -22,6 +22,7 @@ set(CVNODESRC
src/algorithms/rtcensus_sgm.cpp
src/algorithms/opencv_sgbm.cpp
src/algorithms/opencv_bm.cpp
src/algorithms/elas.cpp
)
if
(
LIBSGM_FOUND
)
...
...
@@ -43,12 +44,13 @@ endif (CUDA_FOUND)
add_executable
(
cv-node
${
CVNODESRC
}
)
add_dependencies
(
cv-node ftlnet
)
add_dependencies
(
cv-node libelas
)
if
(
CUDA_FOUND
)
set_property
(
TARGET cv-node PROPERTY CUDA_SEPARABLE_COMPILATION ON
)
endif
()
#target_include_directories(cv-node PUBLIC ${PROJECT_SOURCE_DIR}/include)
target_link_libraries
(
cv-node Threads::Threads
${
OpenCV_LIBS
}
${
LIBSGM_LIBRARIES
}
${
CUDA_LIBRARIES
}
glog::glog ftlnet
)
target_link_libraries
(
cv-node Threads::Threads
libelas
${
OpenCV_LIBS
}
${
LIBSGM_LIBRARIES
}
${
CUDA_LIBRARIES
}
glog::glog ftlnet
)
This diff is collapsed.
Click to expand it.
cv-node/include/ftl/algorithms/elas.hpp
0 → 100644
+
39
−
0
View file @
07dc7863
/*
* Copyright 2019 Nicolas Pope
*/
#ifndef _FTL_ALGORITHMS_ELAS_HPP_
#define _FTL_ALGORITHMS_ELAS_HPP_
#include
<opencv2/core.hpp>
#include
<opencv2/opencv.hpp>
#include
<elas.h>
#include
<ftl/disparity.hpp>
namespace
ftl
{
namespace
algorithms
{
/**
* LibELAS - Efficient Large-scale Stereo Matching
* @see http://www.cvlibs.net/software/libelas/
*/
class
ELAS
:
public
ftl
::
Disparity
{
public:
explicit
ELAS
(
nlohmann
::
json
&
config
);
void
compute
(
const
cv
::
Mat
&
l
,
const
cv
::
Mat
&
r
,
cv
::
Mat
&
disp
);
/* Factory creator */
static
inline
Disparity
*
create
(
nlohmann
::
json
&
config
)
{
return
new
ELAS
(
config
);
}
private
:
Elas
::
parameters
param_
;
Elas
*
elas_
;
};
};
};
#endif // _FTL_ALGORITHMS_ELAS_HPP_
This diff is collapsed.
Click to expand it.
cv-node/src/algorithms/elas.cpp
0 → 100644
+
41
−
0
View file @
07dc7863
/* Copyright 2019 Nicolas Pope */
#include
<ftl/algorithms/elas.hpp>
#include
<glog/logging.h>
using
ftl
::
algorithms
::
ELAS
;
using
cv
::
Mat
;
static
ftl
::
Disparity
::
Register
elass
(
"elas"
,
ELAS
::
create
);
ELAS
::
ELAS
(
nlohmann
::
json
&
config
)
:
Disparity
(
config
)
{
param_
.
postprocess_only_left
=
true
;
elas_
=
new
Elas
(
param_
);
}
void
ELAS
::
compute
(
const
cv
::
Mat
&
l
,
const
cv
::
Mat
&
r
,
cv
::
Mat
&
disp
)
{
//Mat left_disp;
//Mat right_disp;
Mat
lbw
,
rbw
;
cv
::
cvtColor
(
l
,
lbw
,
cv
::
COLOR_BGR2GRAY
);
cv
::
cvtColor
(
r
,
rbw
,
cv
::
COLOR_BGR2GRAY
);
disp
=
Mat
(
cv
::
Size
(
l
.
cols
,
l
.
rows
),
CV_32F
);
Mat
dispr
(
cv
::
Size
(
l
.
cols
,
l
.
rows
),
CV_32F
);
const
int32_t
dims
[
3
]
=
{
l
.
cols
,
l
.
rows
,
l
.
step
/
sizeof
(
float
)};
if
(
disp
.
step
/
sizeof
(
float
)
!=
lbw
.
step
)
LOG
(
WARNING
)
<<
"Incorrect disparity step"
;
auto
start
=
std
::
chrono
::
high_resolution_clock
::
now
();
elas_
->
process
(
lbw
.
data
,
rbw
.
data
,
(
float
*
)
disp
.
data
,
(
float
*
)
dispr
.
data
,
dims
);
std
::
chrono
::
duration
<
double
>
elapsed
=
std
::
chrono
::
high_resolution_clock
::
now
()
-
start
;
LOG
(
INFO
)
<<
"Elas in "
<<
elapsed
.
count
()
<<
"s"
;
//disp.convertTo(disp, CV_32F, 1.0f);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment