MMPoseInferrer outputs an iterator, and you need to use next(result) to extract the results from it.
#Make key point predictions result = inferencer(frame_rgb) #Output key point results (can be processed or saved as needed) print(next(result))