Open
Description
Thank you for your great work.
this is my code:
import layoutparser as lp
import cv2
model = lp.PaddleDetectionLayoutModel('lp://PubLayNet/ppyolov2_r50vd_dcn_365e/config')
image = cv2.imread("paper-image.jpg")
layout = model.detect(image)
lp.draw_box(image, layout, box_width=3).show()
i noticed the value of layout is zero.