/usr/lib/python2.7/dist-packages/arrayfire/features.py is in python-arrayfire 3.3.20160624-2.
This file is owned by root:root, with mode 0o644.
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | #######################################################
# Copyright (c) 2015, ArrayFire
# All rights reserved.
#
# This file is distributed under 3-clause BSD license.
# The complete license agreement can be obtained at:
# http://arrayfire.com/licenses/BSD-3-Clause
########################################################
"""
Features class used for Computer Vision algorithms.
"""
from .library import *
from .array import *
import numbers
class Features(object):
"""
A container class used for various feature detectors.
Parameters
----------
num: optional: int. default: 0.
Specifies the number of features.
"""
def __init__(self, num=0):
self.feat = ct.c_void_p(0)
if num is not None:
assert(isinstance(num, numbers.Number))
safe_call(backend.get().af_create_features(ct.pointer(self.feat), c_dim_t(num)))
def num_features():
"""
Returns the number of features detected.
"""
num = c_dim_t(0)
safe_call(backend.get().af_get_features_num(ct.pointer(num), self.feat))
return num
def get_xpos():
"""
Returns the x-positions of the features detected.
"""
out = Array()
safe_call(backend.get().af_get_features_xpos(ct.pointer(out.arr), self.feat))
return out
def get_ypos():
"""
Returns the y-positions of the features detected.
"""
out = Array()
safe_call(backend.get().af_get_features_ypos(ct.pointer(out.arr), self.feat))
return out
def get_score():
"""
Returns the scores of the features detected.
"""
out = Array()
safe_call(backend.get().af_get_features_score(ct.pointer(out.arr), self.feat))
return out
def get_orientation():
"""
Returns the orientations of the features detected.
"""
out = Array()
safe_call(backend.get().af_get_features_orientation(ct.pointer(out.arr), self.feat))
return out
def get_size():
"""
Returns the sizes of the features detected.
"""
out = Array()
safe_call(backend.get().af_get_features_size(ct.pointer(out.arr), self.feat))
return out
|