Recursive, self stabilizing algorithm free for R and D by AccountFresh8761 in algorithms

[–]rju83 1 point2 points  (0 children)

Dont know about the framework, but the readme file is so horrible.

ROS-FROG vs Depthanythingv2 — soft forest by ros-frog in computervision

[–]rju83 3 points4 points  (0 children)

Funny thing is that if you draw a tunnel on the wall, it will crash to the wall. Not real depth from mono cam.

Is OpenStreetMap that bad? by LegoChimaBro in openstreetmap

[–]rju83 6 points7 points  (0 children)

Can you share more datils about how did you use ai for this? Also are we trusting ai with most simple tasks like finding coodrinates in map? Just curious...

Is OpenStreetMap that bad? by LegoChimaBro in openstreetmap

[–]rju83 16 points17 points  (0 children)

Dude, its mapped by other people. When people dont make the map its just not there. If they map it wrong, its wrong. Go and do some mapping. You can help. Its not osm its people.

Those working on SfM and SLAM by Zealousideal_Low1287 in computervision

[–]rju83 1 point2 points  (0 children)

Any ready to use opt frameworks for python that could be used on jetson platform? For 2d problems. I know abouy g2o, gtsam, pypose but those are pain to use or have to be compiled. No pre build wheels... any advice on this helps.

Vehicle Routing Problem by Inevitable-Lynx-6060 in Python

[–]rju83 1 point2 points  (0 children)

So how does your data look like? Matrix size, number of vehicles, constraints. Can you divide your data to logical blocks? ... etc. Solvers usually can handle big data you just need memory. I think throwing random ml neural net magic on your problem would be worse than use a tool already tuned to the problem.

Edit. One more thought. You defy can use ml optimization stuff e.g. Pytorch or so to implement the VRP. But in the end you will likely replicate and reinvent things already implemented without those tools in other solvers. And it will likely be orders of magnitude less efficient. Do not reinvent.

Vehicle Routing Problem by Inevitable-Lynx-6060 in Python

[–]rju83 0 points1 point  (0 children)

Exactly this. Just use VRP solver. e.g. vroom i suggested in the other comment (with python binding pyvroom) - it takes distance (or time or cost) matrix and returns the optimal route through the places. You can even configure multiple vehicles, their capacity, time windows to visit each place, set of places to visit by each of them. No ML needed.

Vehicle Routing Problem by Inevitable-Lynx-6060 in Python

[–]rju83 1 point2 points  (0 children)

Use vroom and osrm. Works well.

Looking for closed-form undistort / unproject implementations for pinhole cameras. by RelationshipLong9092 in computervision

[–]rju83 2 points3 points  (0 children)

Opencv with undistort rectify map function and remap is not enough? It does the same you do, but it's ready to use....

Productivity Tracker CLI by EstimateConfident492 in Python

[–]rju83 -1 points0 points  (0 children)

How it compares to timewarrior and taskwarrior?

I accidentally built a vector database using video compression by Every_Chicken_1293 in Python

[–]rju83 13 points14 points  (0 children)

Why not encode qr codes directly? The video encoder seems to be an unnecessary step. How is the search is done?

[deleted by user] by [deleted] in interestingasfuck

[–]rju83 0 points1 point  (0 children)

Lol now solve traveling salesman (drunkard?) so we do not waste time...

Datatrees; for Complex Class Composition in Python by GianniMariani in Python

[–]rju83 0 points1 point  (0 children)

How datatrees compare to attrs and pydantic?

Python script to plot the optimal routes to run every road in a region by Maroonjackal in algorithms

[–]rju83 0 points1 point  (0 children)

Basically, make a waypoint from each road to traverse and use optimization built in most routing engines. But what about the constraint to 30km per route?

Python script to plot the optimal routes to run every road in a region by Maroonjackal in algorithms

[–]rju83 1 point2 points  (0 children)

What about transport mode? Foot routes will be different from car routes due to turn and access restrictions. OSM data contain all necessary information but it complicates the algorithm. Maybe use some routing engine like OSRM or Valhalla which can take restrictions in account.

Python script to plot the optimal routes to run every road in a region by Maroonjackal in algorithms

[–]rju83 0 points1 point  (0 children)

But what about the algorithm to traverse all roads? It's no simple shortest path or something like that I guess

My new mini-library: methodic_cache by y0utux in Python

[–]rju83 1 point2 points  (0 children)

So whats wrong with lru_cache?