2D Skeleton Pose Estimation

Hi,

I have been able to successfully get the output of the 2d skeleton pose estimation by running the following command:
~/isaac/sdk$ bazel run packages/skeleton_pose_estimation/apps/openpose:openpose_inference

After that, I was wondering if it’s possible to run this for my own input images. I have generated synthetic data from Isaac Sim on Omniverse and I have some png files that I like to test the pose estimation on it.
when I tried this earlier the humans were not recognized properly and something else was being estimated wrongly. Is there a way to solve this? I thought the model was pre-trained and could already estimate the human poses in different pictures other than the sample image provided.

I could solve the problem by modifying “output_scale” : [320, 3200] to “output_scale” : [720, 1280] because my image had different dimensions.
Now my question is: is it possible to change the colour of the pose so it is easier to see the pose estimation?