皆さん、質問があります。Jetson Nano で Object Detection python の例を実行できます。この場合は「ssh-mobilenet-v2」です。正常に動作しています...また、自分のデータセットをトレーニングし、.pb ファイルを持っています。「ssh-mobilenet-v2」の代わりにどのように使用できますか?
import jetson.inference
import jetson.utils
net = jetson.inference.detectNet("ssd-mobilenet-v2", threshold=0.5)
camera = jetson.utils.gstCamera(1280, 720, "0") # RPIcam
display = jetson.utils.glDisplay()
while display.IsOpen():
img, width, height = camera.CaptureRGBA()
detections = net.Detect(img, width, height)
display.RenderOnce(img, width, height)
display.SetTitle("Object Detection | Network {:.0f} FPS".format(net.GetNetworkFPS()))
ありがとう