Skip to main content

CenterNet implementation by Tensorflow 2

Project description

tf-centernet

PyPI version

CenterNet implementation with Tensorflow 2.

Install

# Not yet uploaded.
# pip instal tf-centernet

Example

CenterNet object detection

import numpy as np
import PIL.Image
import centernet

# Default: num_classes=80
obj = centernet.ObjectDetection(num_classes=80)

# Default: weights_path=None
# num_classes=80 and weights_path=None: Pre-trained COCO model will be loaded.
# Otherwise: User-defined weight file will be loaded.
obj.load_weights(weights_path=None)

img = np.array(PIL.Image.open('./data/sf.jpg'))[..., ::-1]

# The image with predicted bounding-boxes is created if `debug=True`
boxes, classes, scores = obj.predict(img, debug=True)

output

TODO

  • Object detection
  • Pre-trained model for object detection
  • Pose estimation
  • Pre-trained model for pose estimation
  • Training function and Loss definition
  • Training data augmentation

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-centernet-1.0.0.tar.gz (6.2 kB view hashes)

Uploaded Source

Built Distribution

tf_centernet-1.0.0-py3-none-any.whl (14.6 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