VisualWord.cpp
Go to the documentation of this file.
1 /*
2 Copyright (c) 2010-2016, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
3 All rights reserved.
4 
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of the Universite de Sherbrooke nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
20 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27 
30 #include "rtabmap/utilite/UStl.h"
31 
32 namespace rtabmap
33 {
34 
35 VisualWord::VisualWord(int id, const cv::Mat & descriptor, int signatureId) :
36  _id(id),
37  _descriptor(descriptor),
38  _saved(false),
39  _totalReferences(0)
40 {
41  if(signatureId)
42  {
43  addRef(signatureId);
44  }
45 }
46 
48 {
49 }
50 
51 void VisualWord::addRef(int signatureId)
52 {
53  std::map<int, int>::iterator iter = _references.find(signatureId);
54  if(iter != _references.end())
55  {
56  (*iter).second += 1;
57  }
58  else
59  {
60  _references.insert(std::pair<int, int>(signatureId, 1));
61  }
63 }
64 
65 int VisualWord::removeAllRef(int signatureId)
66 {
67  int removed = uTake(_references, signatureId, 0);
68  _totalReferences -= removed;
69  return removed;
70 }
71 
72 } // namespace rtabmap
int removeAllRef(int signatureId)
Definition: VisualWord.cpp:65
V uTake(std::map< K, V > &m, const K &key, const V &defaultValue=V())
Definition: UStl.h:260
Wrappers of STL for convenient functions.
std::map< int, int > _references
Definition: VisualWord.h:61
#define false
Definition: ConvertUTF.c:56
void addRef(int signatureId)
Definition: VisualWord.cpp:51
ULogger class and convenient macros.
VisualWord(int id, const cv::Mat &descriptor, int signatureId=0)
Definition: VisualWord.cpp:35


rtabmap
Author(s): Mathieu Labbe
autogenerated on Wed Jun 5 2019 22:43:41