This file is indexed.

/usr/share/pyshared/mousetrap/ocvfw/commons.py is in gnome-mousetrap 0.4-2ubuntu1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-

# Ocvfw
#
# Copyright 2009 Flavio Percoco Premoli
#
# This file is part of Ocvfw.
#
# Ocvfw is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License v2 as published
# by the Free Software Foundation.
#
# Ocvfw is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ocvfw.  If not, see <http://www.gnu.org/licenses/>>.

"""Ocvfw Global Vars."""

__id__        = "$Id$"
__version__   = "$Revision$"
__date__      = "$Date$"
__copyright__ = "Copyright (c) 2008 Flavio Percoco Premoli"
__license__   = "GPLv2"

import os
import debug

abs_path = os.path.abspath(os.path.dirname(__file__))

haar_cds = { 'Face'  :  "%s/haars/haarcascade_frontalface_alt.xml" % abs_path,
             'Eyes'  :  "%s/haars/frontalEyes35x16.xml" % abs_path,
             #'Eyes'  :  "../ocvfw/haars/haarcascade_eye_tree_eyeglasses.xml",
             'Mouth' :  "%s/haars/Mouth.xml" % abs_path}

colors = { "gray" : { "ch" : 1 },
           "rgb"  : { "ch" : 3 },
           "bgr"  : { "ch" : 3 }}

# CV common lib
cv = None

# Highgui common lib
hg = None

def get_ch(color):
    return colors[color]["ch"]

def singleton(cls):
    instances = {}
    def getinstance():
        if cls not in instances:
            instances[cls] = cls()
            debug.debug("Commons", "New Singleton Add (%s)" % cls)
        return instances[cls]
    return getinstance