svjack's picture
Upload SPIGA with huggingface_hub
9390e2c
raw
history blame
475 Bytes
# Demo libs
import spiga.demo.visualize.layouts.plot_basics as pl_basic
import spiga.demo.visualize.layouts.plot_bbox as pl_bbox
import spiga.demo.visualize.layouts.plot_landmarks as pl_lnd
import spiga.demo.visualize.layouts.plot_headpose as pl_hpose
class Plotter:
def __init__(self):
self.basic = pl_basic.BasicLayout()
self.bbox = pl_bbox.BboxLayout()
self.landmarks = pl_lnd.LandmarkLayout()
self.hpose = pl_hpose.HeadposeLayout()