You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current rendering methods of Visualizer are slow, making it challenging to support real-time applications such as MMPose's webcam demonstrations. Could you please enhance the rendering methods by incorporating an OpenCV backend, similar to how the show method operates. We have tested the Visualizer rendering method, which includes drawing human poses on images using draw_circles and draw_lines functions, and found that the average speed for drawing a single human pose is 0.1 seconds. By utilizing OpenCV to implement the rendering methods, we have observed an increase in speed over 100 times faster.
Any other context?
No response
The text was updated successfully, but these errors were encountered:
Hi @Om-Doiphode, you might have to create a new class of Visualizer and overwrite the required methods using OpenCV. You can take reference from OpencvBackendVisualizer at open-mmlab/mmpose#2283 which has already implemented some methods. It might be helpful in guiding your implementation.
What is the feature?
The current rendering methods of
Visualizer
are slow, making it challenging to support real-time applications such as MMPose's webcam demonstrations. Could you please enhance the rendering methods by incorporating an OpenCV backend, similar to how theshow
method operates. We have tested theVisualizer
rendering method, which includes drawing human poses on images usingdraw_circles
anddraw_lines
functions, and found that the average speed for drawing a single human pose is 0.1 seconds. By utilizing OpenCV to implement the rendering methods, we have observed an increase in speed over 100 times faster.Any other context?
No response
The text was updated successfully, but these errors were encountered: