You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, while using the code in this repository I noticed an issue with the width and height parameters that impacts rectangular-shaped models:
1 - In client.py the shape is being passed as NCWH, rather than NCHW, which doesn't seem correct.
2- In preprocess the code clearly expects input_shape to be [height, width], while is being passed as [width, height] from client.py
3- In postprocess input_shape is used in a way that it's consistent to [width, height], based on the coordinates passed to BoungingBox ctor and the scaling. This is consistent with how they are being passed, but inconsistent with the preprocess method.
The text was updated successfully, but these errors were encountered:
Hello, while using the code in this repository I noticed an issue with the width and height parameters that impacts rectangular-shaped models:
1 - In client.py the shape is being passed as NCWH, rather than NCHW, which doesn't seem correct.
2- In preprocess the code clearly expects input_shape to be [height, width], while is being passed as [width, height] from client.py
3- In postprocess input_shape is used in a way that it's consistent to [width, height], based on the coordinates passed to BoungingBox ctor and the scaling. This is consistent with how they are being passed, but inconsistent with the preprocess method.
The text was updated successfully, but these errors were encountered: