Start a new topic
Solved

Setting an image with Python Bindings

  

res = SDK.set_image(
                    frame.data, frame.shape[1], frame.shape[0], tfsdk.COLORCODE.bgr)

 doesn't work on some versions opencv,  the solution is removing `.data`

 

res = SDK.set_image(
                    frame, frame.shape[1], frame.shape[0], tfsdk.COLORCODE.bgr)

 

Login or Signup to post a comment