-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to include upsampler into the install and provide an upsampler that takes images one by one for a for-loop #51
Comments
I see, are you looking for an iterator which gives you the interpolated
images for each new low framerate image?
…On Tue, May 17, 2022 at 5:15 PM gintautas12358 ***@***.***> wrote:
Hello devs,
Using your esim a lot in my project.
And though if it is possible to include upsampler into the install and
provide an upsampler that takes images one by one for a for-loop.
I am developing a esim plugin for MuJoCo and that would help :D
—
Reply to this email directly, view it on GitHub
<#51>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFBHKKA5O43352UODXL7MOTVKOZX3ANCNFSM5WFJKCCQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
exactly. It would be handy to have. |
Hi, I implemented a first version on https://github.com/uzh-rpg/rpg_vid2e/tree/upsampler_packager. Could you have a look? To test it you can use it as such
pip install upsampling/
from upsampler import Upsampler
upsampler = Upsampler(I0, t0) # init the upsampler with an RGB (height, width, channel) image, and first timestamp
for I, t in zip(images, timestamps):
# returns two lists, each with images up to and including I and t
upsampled_images, upsampled_timestamps = upsampler.upsample_adaptively(I, t) |
Looks great! Can't wait to try it! So I encountered some issues I got an import issue with fixed: also running the upsampler I get the error: so the pretrained_models are missing in the install directory |
Any new update on the matter? |
Hello devs,
Using your esim a lot in my project.
And though if it is possible to include upsampler into the install and provide an upsampler that takes images one by one for a for-loop.
I am developing a esim plugin for MuJoCo and that would help :D
The text was updated successfully, but these errors were encountered: