Nawal Husnoo

Results 23 comments of Nawal Husnoo

Sorry I messed up - it was monodepth2 that worked with the right size image, I never got Midas to work! I'll have another look at your suggestions soon!

I tried with Collab free: ``` torch.cuda.OutOfMemoryError: CUDA out of memory. Tried to allocate 20.00 MiB (GPU 0; 14.75 GiB total capacity; 13.79 GiB already allocated; 2.81 MiB free; 13.93...

Sorry for necromancing this thread - but I was wondering if the routing can be done within the app (as opposed to the api call in webAPI_app.py). So for example...

Thank you so much! No hurry at all, happy to hack if you provide hints too! I tried it with the webApp example - instead of returning ok, I returned...

This seems relevant: https://github.com/rawpython/remi/issues/461 (where you basically say don't do it :P) But I think that view would be throwing away a really useful part of the web, which is...

I think a clean approach from the remi-using-developer perspective would be if the `def main(self):` could give the url as a string, for example, and then I'd choose to show...

This is both cool and horrific! I can imagine one way of misusing it - calling the url sets a flag and then redirects to the main page, which looks...

That's really cool! Thanks! It does do what I had in mind. A bit ugly in terms of the url going back to the root, but much better than no...

I even got the url parameters to work using the webAPI.py example: def page2(self,value1, value2): self.app_instance.set_root_widget(self.page2_widget) print('value1, value2:', value1, value2) http://127.0.0.1:8082/page_manager/page2?value1=hello&value2=world On Tue, 19 Dec 2023 at 23:46, Nawal Husnoo...

On a related note, I'm trying to write a plugin, which will have two buttons in the menus, that I want each to be called by a gesture. I can't...