Multi-Camera-Live-Object-Tracking
Multi-Camera-Live-Object-Tracking copied to clipboard
Cannot feed value of shape (1, 160, 224, 3) for Tensor 'input_1:0', which has shape '(?, 608, 608, 3)'
To test out the app i found some open source stream rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov The i run app.py and than camera_client_0.py the flask app shows in logs Cannot feed value of shape (1, 160, 224, 3) for Tensor 'input_1:0', which has shape '(?, 608, 608, 3)'
Does anybody faced this issue?
any idea? i got the same??
I encountered the same issue and solved the issue.
in the yolo.py file, the size is fixed at line number 36.
self.model_image_size = (416, 416) # fixed size or (None, None)
Change the size according to your one.