tub-rip / event_based_optical_flow

The official implementation of "Secrets of Event-based Optical Flow" (ECCV2022 Oral and IEEE T-PAMI 2024)
GNU General Public License v3.0
138 stars 13 forks source link

How do I output trace results in ros format(ros topic) #10

Closed SharineLee closed 1 year ago

shiba24 commented 1 year ago

Hi @SharineLee , your request to output ros format makes sense. Can you tell me how to you want to save the results?

SharineLee commented 1 year ago

Hi @SharineLee , your request to output ros format makes sense. Can you tell me how to you want to save the results?

I wish this code can be wrapped to a ros node.

If this node is called 'feature_tracker'.

In the testing phase,

I wish feature_tracker can subscribe this topic:

And I wish feature_tracker can publish this topic:

shiba24 commented 1 year ago

@SharineLee Thank you for the idea, I like it. First of all, let me clarify this is a dense optical flow estimation method. So if you meant by "feature_tracker" as the velocity (2-dimensional displacement speed) for some sparse points (pixels) in the image plane, the dense optical flow estimation might be "overkill" - too expensive.

Yet, if you want to try to integrate this module into your ROS node, I'm happy to help you. That was on my personal todo list but I was too busy to do that. Also, please see my replies for your other issues if this code really matches your use-case. #11 #12

Best