Skip to content

Commit b61fe4e

Browse files
committed
warning fixed
1 parent 177ed7c commit b61fe4e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

modules/rgbd/src/keyframe.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class KeyFrameDatabase
5151

5252
bool deleteKeyFrameByID(int keyFrameID);
5353

54-
int getSize();
54+
size_t getSize();
5555

5656
bool empty();
5757

modules/rgbd/src/large_kinfu.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// module's directory
77

88
#include "precomp.hpp"
9+
#include "loop_closure_detection.hpp"
910

1011
namespace cv
1112
{
@@ -234,7 +235,7 @@ bool LargeKinfuImpl<UMat>::update(InputArray _depth, InputArray _img)
234235

235236

236237
template<typename MatType>
237-
bool LargeKinfuImpl<MatType>::updateT(const MatType& depth, const Mat& img)
238+
bool LargeKinfuImpl<MatType>::updateT(const MatType& _depth, const Mat& _img)
238239
{
239240
CV_TRACE_FUNCTION();
240241

0 commit comments

Comments
 (0)