File size: 13,676 Bytes
7b853a5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | /*
* SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#include "AnimProcessing/Utility.h"
#ifdef _WIN32
#pragma warning(push)
#pragma warning(disable : 4623 4191 4686 4868 5219 4191 4355)
#endif
#include <pybind11/pybind11.h>
#include <pybind11/numpy.h>
#include <pybind11/stl.h>
#ifdef _WIN32
#pragma warning(pop)
#endif
namespace py = pybind11;
float strip_nan_inf(float x) noexcept
{
if (std::isnan(x)) return 0;
if (std::isinf(x)) return 0;
return x;
}
void correct_motion(
py::array_t<float> &rootTranslations,
py::array_t<float> &jointRotations,
const py::array_t<float>& rootTranslationsTarget,
const py::array_t<float>& jointRotationsTarget,
const py::array_t<float>& fullPoseMask,
const py::array_t<float>& leftHandMask,
const py::array_t<float>& rightHandMask,
const py::array_t<float>& leftFootMask,
const py::array_t<float>& rightFootMask,
const py::array_t<float>& rootMask,
const py::array_t<float>& contacts,
const py::list& joint_parents,
const py::list& joint_ref_translations,
const py::list& joint_ref_rotations,
int left_hand_idx,
int right_hand_idx,
int left_foot_idx,
int right_foot_idx,
float contact_threshold,
float root_margin,
bool has_double_ankle_joints
)
{
if(joint_parents.size() != joint_ref_translations.size())
{
throw std::runtime_error("correct_motion python bindings: joint_parents and joint_ref_translations must have the same size");
}
if(joint_parents.size() != joint_ref_rotations.size())
{
throw std::runtime_error("correct_motion python bindings: joint_parents and joint_ref_rotations must have the same size");
}
if(left_hand_idx < 0 || right_hand_idx < 0 || left_foot_idx < 0 || right_foot_idx < 0)
{
throw std::runtime_error("correct_motion python bindings: left_hand_idx, right_hand_idx, left_foot_idx, and right_foot_idx must be non-negative");
}
if(left_hand_idx >= joint_parents.size() || right_hand_idx >= joint_parents.size() || left_foot_idx >= joint_parents.size() || right_foot_idx >= joint_parents.size())
{
throw std::runtime_error("correct_motion python bindings: left_hand_idx, right_hand_idx, left_foot_idx, and right_foot_idx must be less than the number of joints");
}
std::vector<Math::Transform> defaultPose(joint_parents.size());
for (size_t i = 0; i < joint_ref_translations.size(); ++i)
{
if (!py::isinstance<py::list>(joint_ref_translations[i]))
{
throw std::runtime_error("correct_motion python bindings: Expected joint_ref_translations to be a list of lists");
}
py::list inner_list = joint_ref_translations[i].cast<py::list>();
if (inner_list.size() != 3) {
throw std::runtime_error("correct_motion python bindings: Expected joint_ref_translations to be a list of lists, length 3");
}
if (
!py::isinstance<py::float_>(inner_list[0]) ||
!py::isinstance<py::float_>(inner_list[1]) ||
!py::isinstance<py::float_>(inner_list[2])
)
{
throw std::runtime_error("correct_motion python bindings: Expected joint_ref_translations to be a list of lists, length 3, float values");
}
if (!py::isinstance<py::list>(joint_ref_rotations[i]))
{
throw std::runtime_error("correct_motion python bindings: Expected joint_ref_rotations to be a list of lists");
}
py::list inner_list_rot = joint_ref_rotations[i].cast<py::list>();
if (inner_list_rot.size() != 4) {
throw std::runtime_error("correct_motion python bindings: Expected joint_ref_rotations to be a list of lists, length 4");
}
if (
!py::isinstance<py::float_>(inner_list_rot[0]) ||
!py::isinstance<py::float_>(inner_list_rot[1]) ||
!py::isinstance<py::float_>(inner_list_rot[2]) ||
!py::isinstance<py::float_>(inner_list_rot[3])
)
{
throw std::runtime_error("correct_motion python bindings: Expected joint_ref_rotations to be a list of lists, length 4, float values");
}
defaultPose[i].SetTranslation(Math::Vector(
inner_list[0].cast<float>(),
inner_list[1].cast<float>(),
inner_list[2].cast<float>()));
defaultPose[i].SetRotation(Math::Quaternion(
inner_list_rot[0].cast<float>(),
inner_list_rot[1].cast<float>(),
inner_list_rot[2].cast<float>(),
inner_list_rot[3].cast<float>()
));
}
std::vector<int> joint_parents_vec(joint_parents.size());
for (size_t i = 0; i < joint_parents.size(); ++i)
{
if (!py::isinstance<py::int_>(joint_parents[i]))
{
throw std::runtime_error("correct_motion python bindings: Expected joint_parents to be a list of ints");
}
joint_parents_vec[i] = joint_parents[i].cast<int>();
if (joint_parents_vec[i] >= (int)joint_parents.size())
{
throw std::runtime_error("correct_motion python bindings: joint_parents must be a list of ints, and all values must be less than the number of joints");
}
}
size_t num_joints = defaultPose.size();
size_t gen_length = fullPoseMask.size();
if(
leftHandMask.size() != (int)gen_length ||
rightHandMask.size() != (int)gen_length ||
leftFootMask.size() != (int)gen_length ||
rightFootMask.size() != (int)gen_length ||
rootMask.size() != (int)gen_length
)
{
throw std::runtime_error("correct_motion python bindings: all masks must have the same size");
}
if(rootTranslations.size() != 3 * (int)gen_length)
{
throw std::runtime_error("correct_motion python bindings: rootTranslations has the wrong size");
}
if(jointRotations.size() != 4 * (int)num_joints * (int)gen_length)
{
throw std::runtime_error("correct_motion python bindings: jointRotations has the wrong size");
}
if(rootTranslationsTarget.size() != 3 * (int)gen_length)
{
throw std::runtime_error("correct_motion python bindings: rootTranslationsTarget has the wrong size");
}
if(jointRotationsTarget.size() != 4 * (int)num_joints * (int)gen_length)
{
throw std::runtime_error("correct_motion python bindings: jointRotationsTarget has the wrong size");
}
std::vector<Animation::ContactInfo> endEffectorPins(4);
endEffectorPins[0].jointIndex = left_hand_idx;
endEffectorPins[0].hintOffset = Math::Vector(0.0f, 0.0f, -0.1f);
endEffectorPins[1].jointIndex = right_hand_idx;
endEffectorPins[1].hintOffset = Math::Vector(0.0f, 0.0f, -0.1f);
endEffectorPins[2].jointIndex = left_foot_idx;
endEffectorPins[2].hintOffset = Math::Vector(0.0f, 0.0f, 0.1f);
endEffectorPins[3].jointIndex = right_foot_idx;
endEffectorPins[3].hintOffset = Math::Vector(0.0f, 0.0f, 0.1f);
endEffectorPins[0].contactMask.reserve(gen_length);
endEffectorPins[1].contactMask.reserve(gen_length);
endEffectorPins[2].contactMask.reserve(gen_length);
endEffectorPins[3].contactMask.reserve(gen_length);
for(size_t i = 0; i < gen_length; ++i)
{
endEffectorPins[0].contactMask.push_back((1.0f - fullPoseMask.at(i)) * leftHandMask.at(i));
endEffectorPins[1].contactMask.push_back((1.0f - fullPoseMask.at(i)) * rightHandMask.at(i));
endEffectorPins[2].contactMask.push_back((1.0f - fullPoseMask.at(i)) * leftFootMask.at(i));
endEffectorPins[3].contactMask.push_back((1.0f - fullPoseMask.at(i)) * rightFootMask.at(i));
}
std::vector<Animation::ContactInfo> contactInfo(2);
auto footTranslation = Animation::JointLocalToGlobal(
joint_parents_vec,
right_foot_idx,
defaultPose
).GetTranslation();
contactInfo[0].jointIndex = right_foot_idx;
contactInfo[0].hintOffset = Math::Vector(0.0f, 0.0f, 0.1f);
contactInfo[0].minHeight = footTranslation.GetY();
footTranslation = Animation::JointLocalToGlobal(
joint_parents_vec,
left_foot_idx,
defaultPose
).GetTranslation();
contactInfo[1].jointIndex = left_foot_idx;
contactInfo[1].hintOffset = Math::Vector(0.0f, 0.0f, 0.1f);
contactInfo[1].minHeight = footTranslation.GetY();
auto& rContacts = contactInfo[0].contactMask;
auto& lContacts = contactInfo[1].contactMask;
rContacts.resize(fullPoseMask.size());
lContacts.resize(fullPoseMask.size());
for (int i = 0; i < fullPoseMask.size(); ++i)
{
// don't flag it as a contact if it's been masked:
rContacts[i] = rightFootMask.at(i) ? 0 : contacts.at(4 * i + 2);
lContacts[i] = leftFootMask.at(i) ? 0 : contacts.at(4 * i + 0);
// Flag the heel as a contact if the toe is a contact:
rContacts[i] = std::min((rightFootMask.at(i) ? 0 : contacts.at(4 * i + 3)) + rContacts[i], 1.0f);
lContacts[i] = std::min((leftFootMask.at(i) ? 0 : contacts.at(4 * i + 1)) + lContacts[i], 1.0f);
}
int left_toe_idx = -1;
int right_toe_idx = -1;
for(int i = 0; i < num_joints; ++i)
{
if(joint_parents_vec[i] == left_foot_idx)
{
left_toe_idx = i;
}
if(joint_parents_vec[i] == right_foot_idx)
{
right_toe_idx = i;
}
}
if(left_toe_idx != -1 && right_toe_idx != -1)
{
auto toeTranslation = Animation::JointLocalToGlobal(
joint_parents_vec,
right_toe_idx,
defaultPose
).GetTranslation();
contactInfo.resize(4);
contactInfo[2].jointIndex = right_toe_idx;
contactInfo[2].contactType = Animation::kOneBone;
contactInfo[2].minHeight = toeTranslation.GetY();
contactInfo[3].jointIndex = left_toe_idx;
contactInfo[3].contactType = Animation::kOneBone;
contactInfo[3].minHeight = toeTranslation.GetY();
auto& rToeContacts = contactInfo[2].contactMask;
auto& lToeContacts = contactInfo[3].contactMask;
// fill up the ankle contacts:
rToeContacts.resize(fullPoseMask.size());
lToeContacts.resize(fullPoseMask.size());
for (int i = 0; i < fullPoseMask.size(); ++i)
{
// don't flag it as a contact if it's been masked:
rToeContacts[i] = rightFootMask.at(i) ? 0 : contacts.at(4 * i + 3);
lToeContacts[i] = leftFootMask.at(i) ? 0 : contacts.at(4 * i + 1);
}
}
auto setTransforms = [gen_length, num_joints](
std::vector< std::vector<Math::Transform> > &poses,
const py::array_t<float> &rootTranslations,
const py::array_t<float> &jointRotations
)
{
for (size_t f = 0; f < gen_length; ++f)
{
poses[f][0].SetTranslation({
strip_nan_inf(rootTranslations.at(3*f+0)),
strip_nan_inf(rootTranslations.at(3*f+1)),
strip_nan_inf(rootTranslations.at(3*f+2))
});
}
for (size_t f = 0; f < gen_length; ++f)
{
for (size_t j = 0; j < num_joints; ++j)
{
// x y z w order:
Math::Quaternion q(
strip_nan_inf(jointRotations.at(4 * (num_joints * f + j) + 1)),
strip_nan_inf(jointRotations.at(4 * (num_joints * f + j) + 2)),
strip_nan_inf(jointRotations.at(4 * (num_joints * f + j) + 3)),
strip_nan_inf(jointRotations.at(4 * (num_joints * f + j) + 0))
);
q.Normalize();
poses[f][j].SetRotation(q);
}
}
};
std::vector< std::vector<Math::Transform> > posesFixed(gen_length, defaultPose);
setTransforms(posesFixed, rootTranslations, jointRotations);
std::vector< std::vector<Math::Transform> > posesTarget(gen_length, defaultPose);
setTransforms(posesTarget, rootTranslationsTarget, jointRotationsTarget);
std::vector<float> fullPoseMask_vec;
std::vector<float> rootMask_vec;
for (size_t f = 0; f < gen_length; ++f)
{
fullPoseMask_vec.push_back(fullPoseMask.at(f));
rootMask_vec.push_back(rootMask.at(f));
}
Animation::CorrectMotion(
posesFixed,
posesTarget,
fullPoseMask_vec,
rootMask_vec,
contactInfo,
endEffectorPins,
joint_parents_vec,
defaultPose,
contact_threshold,
root_margin,
has_double_ankle_joints
);
for (size_t f = 0; f < gen_length; ++f)
{
auto t = posesFixed[f][0].GetTranslation();
rootTranslations.mutable_at(3*f+0) = t.GetX();
rootTranslations.mutable_at(3*f+1) = t.GetY();
rootTranslations.mutable_at(3*f+2) = t.GetZ();
}
for (size_t f = 0; f < gen_length; ++f)
{
for (size_t j = 0; j < num_joints; ++j)
{
auto q = posesFixed[f][j].GetRotation();
// w x y z order
jointRotations.mutable_at(4 * (num_joints * f + j) + 0) = ((float*)&q)[3];
jointRotations.mutable_at(4 * (num_joints * f + j) + 1) = ((float*)&q)[0];
jointRotations.mutable_at(4 * (num_joints * f + j) + 2) = ((float*)&q)[1];
jointRotations.mutable_at(4 * (num_joints * f + j) + 3) = ((float*)&q)[2];
}
}
}
PYBIND11_MODULE(_motion_correction, m) {
m.doc() = "Motion Correction Python bindings";
m.def("correct_motion", &correct_motion);
}
|