Skip to content

Commit 1d30d54

Browse files
committed
merge 3d
2 parents 2e3dfa9 + b9ad0d4 commit 1d30d54

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

modules/rgbd/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
set(the_description "RGBD algorithms")
22

3+
<<<<<<< HEAD
34
ocv_define_module(rgbd opencv_core opencv_3d opencv_imgproc opencv_dnn OPTIONAL opencv_features2d opencv_viz WRAP python)
5+
=======
6+
ocv_define_module(rgbd opencv_core opencv_3d opencv_imgproc OPTIONAL opencv_viz WRAP python)
7+
>>>>>>> next

modules/rgbd/src/large_kinfu.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ bool LargeKinfuImpl<MatType>::updateT(const MatType& depth, const Mat& img)
244244
else
245245
depth = _depth;
246246

247+
<<<<<<< HEAD
247248
Mat grayImg;
248249
if(!_img.empty())
249250
{
@@ -253,6 +254,8 @@ bool LargeKinfuImpl<MatType>::updateT(const MatType& depth, const Mat& img)
253254
grayImg = _img;
254255
}
255256

257+
=======
258+
>>>>>>> next
256259
cv::Ptr<OdometryFrame> newFrame = icp->makeOdometryFrame(noArray(), depth, noArray());
257260

258261
icp->prepareFrameCache(newFrame, OdometryFrame::CACHE_SRC);
@@ -309,6 +312,7 @@ bool LargeKinfuImpl<MatType>::updateT(const MatType& depth, const Mat& img)
309312
}
310313
//4. Update map
311314
bool isMapUpdated = submapMgr->updateMap(frameCounter, newFrame);
315+
<<<<<<< HEAD
312316

313317
//5. Loop Closure Detection
314318
// Before Optimize the PoseGraph, run loop closure first.
@@ -333,6 +337,8 @@ bool LargeKinfuImpl<MatType>::updateT(const MatType& depth, const Mat& img)
333337
}
334338
}
335339
}
340+
=======
341+
>>>>>>> next
336342

337343
if(isMapUpdated)
338344
{

0 commit comments

Comments
 (0)