Skip to content

Commit

Permalink
Merge pull request #406 from pliablepixels/master
Browse files Browse the repository at this point in the history
sync and allow aliases
  • Loading branch information
pliablepixels authored Jul 20, 2021
2 parents d041b4f + 257ae0d commit bd4513f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion hook/objectconfig.ini
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,9 @@ ml_sequence= {
'match_past_detections': '{{match_past_detections}}',
'past_det_max_diff_area': '5%',
'car_past_det_max_diff_area': '10%',
#'ignore_past_detection_labels': ['dog', 'cat']
#'ignore_past_detection_labels': ['dog', 'cat'],
# when matching past detections, names in a group are treated the same
'aliases': [['car','bus','truck','boat'], ['broccoli', 'pottedplant']]

},
'object': {
Expand Down
2 changes: 1 addition & 1 deletion hook/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
LICENSE = 'GPL'
INSTALL_REQUIRES = [
'numpy', 'requests', 'Shapely', 'imutils',
'pyzm>=0.3.52', 'scikit-learn', 'future', 'imageio',
'pyzm>=0.3.53', 'scikit-learn', 'future', 'imageio',
'imageio-ffmpeg','pygifsicle', 'Pillow', 'configupdater'
]

Expand Down
2 changes: 1 addition & 1 deletion hook/zm_detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

auth_header = None

__app_version__ = '6.1.26'
__app_version__ = '6.1.27'

def remote_detect(stream=None, options=None, api=None, args=None):
# This uses mlapi (https://github.com/pliablepixels/mlapi) to run inferencing and converts format to what is required by the rest of the code.
Expand Down
4 changes: 2 additions & 2 deletions hook/zmes_hook_helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "6.1.26"
VERSION=__version__
__version__ = "6.1.27"
VERSION = __version__
2 changes: 1 addition & 1 deletion zmeventnotification.pl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};

####################################
my $app_version = '6.1.26';
my $app_version = '6.1.27';
####################################

# do this before any log init etc.
Expand Down

0 comments on commit bd4513f

Please sign in to comment.