Skip to main content

SiamMask implementation by Tensorflow 2

Project description

tf-siammask

PyPI version Upload Python Package

SiamMask implementation with Tensorflow 2.

Install

pip install tf-siammask

Example

import numpy as np
import PIL.Image
import siammask

sm = siammask.SiamMask()

# Weight files are automatically retrieved from GitHub Releases
sm.load_weights()

# Adjust this parameter for the better mask prediction
sm.box_offset_ratio = 1.5

img_prev = np.array(PIL.Image.open('data/cat1.jpg'))[..., ::-1]
box_prev = np.array([[227, 184], [381, 274]])
img_next = np.array(PIL.Image.open('data/cat2.jpg'))[..., ::-1]

# Predicted box and mask images is created if `debug=True`
box, mask = sm.predict(img_prev, box_prev, img_next, debug=True)

Test data

Previous frame Next frame
File name ./data/cat1_with_box.jpg ./data/cat2.jpg
Image cat cat

Predicted mask for ./data/cat2.jpg

mask

TODO

  • Bounding-box regression
  • Mask refinement network
  • Pre-trained model for Tensorflow 2.0
  • Training code
  • Object tracking code

Reference

@inproceedings{wang2019fast,
    title={Fast online object tracking and segmentation: A unifying approach},
    author={Wang, Qiang and Zhang, Li and Bertinetto, Luca and Hu, Weiming and Torr, Philip HS},
    booktitle={Proceedings of the IEEE conference on computer vision and pattern recognition},
    year={2019}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tf-siammask-1.0.4.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

tf_siammask-1.0.4-py3-none-any.whl (15.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page