HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ponta17

no profile record

Submissions

Show HN: I built A GUI for managing waypoints in large-scale robot navigation

github.com
1 points·by ponta17·6 เดือนที่ผ่านมา·4 comments

Show HN: Creating Multi-Page Manga with Google's Nano Banana Pro

github.com
3 points·by ponta17·8 เดือนที่ผ่านมา·0 comments

Show HN: AI Agent for a mobile robot in the real world

github.com
1 points·by ponta17·8 เดือนที่ผ่านมา·0 comments

Show HN: Signboard Detection Algorithm Using Only Point Cloud Data

github.com
2 points·by ponta17·10 เดือนที่ผ่านมา·0 comments

Show HN: Pixel Art Generator Using Genetic Algorithm

github.com
24 points·by ponta17·ปีที่แล้ว·13 comments

Show HN: I Built a MCP Server for Robot Operating System

github.com
5 points·by ponta17·ปีที่แล้ว·0 comments

Show HN: I built an AI agent for a mobile robot

github.com
3 points·by ponta17·ปีที่แล้ว·3 comments

Show HN: I built an AI agent for TurtleBot3

github.com
2 points·by ponta17·ปีที่แล้ว·0 comments

Show HN: Open a browser by clapping twice (inspired by Iron Man)

github.com
9 points·by ponta17·ปีที่แล้ว·5 comments

Show HN: I built an AI agent that turns ROS 2's turtlesim into a digital artist

github.com
30 points·by ponta17·ปีที่แล้ว·9 comments

comments

ponta17
·6 เดือนที่ผ่านมา·discuss
Nice work! I think this could be relevant outdoors as well, especially for robots using locally built maps rather than street maps. One challenge I'd expect, though, is real-time visualization of robot locations in outdoor environments, but if it works, it would be very valuable.
ponta17
·6 เดือนที่ผ่านมา·discuss
Good question.

You're right that Leaflet is great for GPS, but this tool is specifically for robots using SLAM-generated occupancy grids in a local coordinate frame. Even for long-distance navigation, many autonomous systems prefer these maps for higher precision and better integration with their local planners.
ponta17
·11 เดือนที่ผ่านมา·discuss
This is kinda addictive
ponta17
·12 เดือนที่ผ่านมา·discuss
Cool! I didn't get matched with anyone tho.
ponta17
·ปีที่แล้ว·discuss
I like it!
ponta17
·ปีที่แล้ว·discuss
Thanks for your comment and the great question.

Lowpass filtering with downsampling is definitely a more efficient way to simplify images compared to my approach. This project is an experimental demo of a genetic algorithm evolving random pixel patterns to approximate a target image.

I agree that true pixel art often requires artistic "reimagining" to stay visually appealing. Thanks for your feedback!
ponta17
·ปีที่แล้ว·discuss
Thanks for the honest feedback. Totally fair
ponta17
·ปีที่แล้ว·discuss
Thanks for pointing that out. You're absolutely right. What I'm doing here is definitely not pixel art in the traditional sense, and I now realize the term may have been misleading. My apologies for that.
ponta17
·ปีที่แล้ว·discuss
Thanks!
ponta17
·ปีที่แล้ว·discuss
Thank you for your feedback! You're absolutely right. This should be image reconstruction using the GA algorithm.
ponta17
·ปีที่แล้ว·discuss
I just tried it out. This is awesome!
ponta17
·ปีที่แล้ว·discuss
Yes, I will do that!
ponta17
·ปีที่แล้ว·discuss
Thanks for sharing! That's an awesome use case. I hadn’t thought of combining it that way, but it’s a great idea.
ponta17
·ปีที่แล้ว·discuss
Thanks! I'll try that
ponta17
·ปีที่แล้ว·discuss
Thanks a lot for the thoughtful feedback — I really appreciate it!

I think there might be a small misunderstanding regarding how the LLM is actually being used here (and in many agent-based setups). The LLM itself isn’t directly executing twist commands or handling motion; it’s acting as a decision-maker that chooses from a set of callable tools (Python functions) based on the task description and intermediate results.

In this case, yes — one of the tools happens to publish Twist commands, but that’s just one of many modular tools the LLM can invoke. Whether it’s controlling motion or running object detection, from the LLM’s point of view it’s simply choosing which function to call next. So the computational load really depends on what the tool does internally — not the LLM’s reasoning process itself.

Of course, I agree with your broader point: we should push toward more meaningful high-level tasks where LLMs can orchestrate complex pipelines — and I think your examples (like fetch-a-beer or map annotation via VLMs) are spot-on.

My goal with this project was to explore that decision-making loop in a minimal, creative setting — kind of like a sandbox for LLM-agent behavior.

Actually, I’m currently working on something along those lines using a TurtleBot3. I’m planning to provide the agent with tools that let it scan obstacles via 3D LiDAR and recognize objects through image processing, so that it can make more context-aware decisions.

Really appreciate the push for deeper use cases — that’s definitely where I want to go next!
ponta17
·ปีที่แล้ว·discuss
Thanks! Great question.

TurtleSim itself doesn't simulate real-world physics — it allows instant position updates when needed. In this project, the goal was to create a digital turtle artist, not to replicate physical realism. So when the agent wants to draw something, it puts the pen down and moves physically (i.e., using velocity commands). But when it doesn't need to draw and just wants to move quickly to another position, it uses a teleport function I provided as a tool.

That's why in the rainbow example, you might see the turtle "jump" between arcs — it's skipping the movement to get to the next drawing point faster.
ponta17
·ปีที่แล้ว·discuss
Thanks for the thoughtful question! The term “agent” definitely gets used in a lot of different ways, so I’ll clarify what I mean here.

In this project, an agent is an LLM-powered system that takes a high-level user instruction, reasons about what steps are needed to fulfill it, and then executes those steps using a set of tools. So it’s more than a single prompted LLM call — the agent maintains a kind of working state and can call external functions iteratively as it plans and acts.

Concretely, in turtlesim_agent, the agent receives an input like “draw a red triangle,” and then: 1. Uses the LLM to interpret the intent, 2. Decides which tools to use (like move forward, turn, set pen color), 3. Calls those tools step-by-step until the task is done.

Hope that clears it up a bit!