Open firatozdemir opened 3 years ago
I got the same error when trying to use the geometry
module.
Example:
import tensorflow_graphics as tfg
tfg.geometry.transformation.rotation_matrix_3d.from_quaternion(
quaternion
)
BUT, if I import geometry
directly, e.g.,
import tensorflow_graphics.geometry.transformation as tfg
tfgt.rotation_matrix_3d.from_quaternion(
quaternion
)
No error. Gives me the rotation matrix.
<tf.Tensor: shape=(1, 3, 3), dtype=float32, numpy=
array([[[-0.8486657 , 0.52784616, -0.03383656],
[ 0.52141696, 0.8241547 , -0.22111858],
[-0.08883003, -0.20529874, -0.9746597 ]]], dtype=float32)>
Hi, Any update on why this happens when tensorflow_graphics is installed from source? I had the same error as @firatozdemir but manage to solve it as @HotThoughts suggested. Any idea why?
Current latest stable release (v.1.0.0) is too outdated and has bugs which are fixed in the master branch.
I'm attempting to install from source, but the instructions are possibly outdated. I tried:
which did not give any errors, and I can import library and get
tfg.__version__='2021.6.7'
, however most modules are missing. For example,tfg.geometry
returnsCan you update instructions / point towards what's an obvious step I'm missing?