Tried two pc with different cuda&python versions, build the env from zero, build pytorch3d(0.6.1) from src, when I run Inference Demo, the output video is same as the input video.
After added '--draw_bbox', the boxed detected can see.
I tried different render_choice , same results.
Trying to debug but may not spend a lot time on it.
Details
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/smplx/body_models.py:137: DeprecationWarning: Please use `csc_matrix` from the `scipy.sparse` namespace, the `scipy.sparse.csc` namespace is deprecated.
data_struct = Struct(**pickle.load(smpl_file,
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/chumpy/ch.py:20: DeprecationWarning: Please use `LinearOperator` from the `scipy.sparse.linalg` namespace, the `scipy.sparse.linalg.interface` namespace is deprecated.
from scipy.sparse.linalg.interface import LinearOperator
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/chumpy/ch.py:1203: DeprecationWarning: inspect.getargspec() is deprecated since Python 3.0, use inspect.signature() or inspect.getfullargspec()
want_out = 'out' in inspect.getargspec(func).args
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/chumpy/__init__.py:11: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
from numpy import bool, int, float, complex, object, unicode, str, nan, inf
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/chumpy/__init__.py:11: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
from numpy import bool, int, float, complex, object, unicode, str, nan, inf
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/chumpy/__init__.py:11: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
from numpy import bool, int, float, complex, object, unicode, str, nan, inf
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/chumpy/__init__.py:11: DeprecationWarning: `np.complex` is a deprecated alias for the builtin `complex`. To silence this warning, use `complex` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.complex128` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
from numpy import bool, int, float, complex, object, unicode, str, nan, inf
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/chumpy/__init__.py:11: DeprecationWarning: `np.object` is a deprecated alias for the builtin `object`. To silence this warning, use `object` by itself. Doing this will not modify any behavior and is safe.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
from numpy import bool, int, float, complex, object, unicode, str, nan, inf
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/chumpy/__init__.py:11: DeprecationWarning: `np.unicode` is a deprecated alias for `np.compat.unicode`. To silence this warning, use `np.compat.unicode` by itself. In the likely event your code does not need to work on Python 2 you can use the builtin `str` for which `np.compat.unicode` is itself an alias. Doing this will not modify any behaviour and is safe. If you specifically wanted the numpy scalar type, use `np.str_` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
from numpy import bool, int, float, complex, object, unicode, str, nan, inf
/home/user/miniconda3/envs/open-mmlab/lib/python3.8/site-packages/chumpy/__init__.py:11: DeprecationWarning: `np.str` is a deprecated alias for the builtin `str`. To silence this warning, use `str` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.str_` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
from numpy import bool, int, float, complex, object, unicode, str, nan, inf
100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 4/4 [00:10<00:00, 2.72s/it]
Tried two pc with different cuda&python versions, build the env from zero, build pytorch3d(0.6.1) from src, when I run Inference Demo, the output video is same as the input video.
After added '--draw_bbox', the boxed detected can see.
I tried different
render_choice
, same results.Trying to debug but may not spend a lot time on it.