CenterNet implementation by Tensorflow 2
Project description
tf-centernet
CenterNet implementation with Tensorflow 2.
Install
pip instal tf-centernet
Example
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)
Pose estimation
import numpy as np
import PIL.Image
import centernet
# Default: num_joints=17
pe = centernet.PoseEstimation(num_joints=17)
# Default: weights_path=None
# num_joints=17 and weights_path=None: Pre-trained COCO model will be loaded.
# Otherwise: User-defined weight file will be loaded.
pe.load_weights(weights_path=None)
# Adjust this for the better prediction
pe.score_threshold = 0.1
img = np.array(PIL.Image.open('./data/chi.jpg'))[..., ::-1]
# The image with predicted keypoints is created if `debug=True`
boxes, keypoints, scores = pe.predict(img, debug=True)
TODO
- Object detection
- Pre-trained model for object detection with Hourglass-104
- Pose estimation
- Pre-trained model for pose estimation with Hourglass-104
- DLA-34 backbone and pre-trained models
- Training function and Loss definition
- Training data augmentation
Project details
Release history Release notifications | RSS feed
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.6.tar.gz
(8.2 kB
view details)
Built Distribution
File details
Details for the file tf-centernet-1.0.6.tar.gz
.
File metadata
- Download URL: tf-centernet-1.0.6.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78b1808323452f07887986723d6f2d77030fbc08b7dc119af0f6ac20750b9e08 |
|
MD5 | 7cef97fe760c6ada6510b3db5853296e |
|
BLAKE2b-256 | 37bf1586ba35fe2612333978fb778fa12b6ae563af3bc659df40295ce6f14b89 |
File details
Details for the file tf_centernet-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: tf_centernet-1.0.6-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50180f29181ef0b96f67683d07db5a5fb241f42f306f8bf2a66465e4c2198c22 |
|
MD5 | 503180c3179b75019bfdab3af9ece504 |
|
BLAKE2b-256 | f553febbe24f1a2e8084d921f6c3996da7a4d0a5296a64f42b25e6ee4cda0c0e |