← Back to list

AMR vs. AGV Explained

(Without the Fluff)

Agneya Pathare · 2026-06-01 05:21 · 0 claps · 3.4 min read
#robotics #robotics-automation #autonomous-cars #factory-automation #automation
Open on Medium ↗
Wiki topics: AGT · AI Agents

AMR vs. AGV Explained

(Without the Fluff)

I remember my first “warehouse automation” project. It was basically a glorified garage with too many pallets and a bootstrapping budget that made a ramen diet look luxurious. I spent three weeks researching robots because I was tired of moving boxes manually at 2 AM.

I almost pulled the trigger on a “cheap” AGV system until I realized that if someone left a coffee mug on the floor, the robot would just sit there and stare at it until the death of the universe.

If you’re a founder or a dev trying to figure out which “moving thing” to buy for your startup’s logistics, you’ve probably hit a wall of jargon. Let’s break down the AMR vs. AGV debate like we’re at a bar, not a board meeting.

The Bottom Line (TL;DR)

  • AGV (Automated Guided Vehicle): Think of it like a train. It follows a fixed track (magnetic tape, wires, or QR codes). If something is on the tracks, it stops. Great for heavy, repetitive loops in stable environments.
  • AMR (Autonomous Mobile Robot): Think of it like a Tesla (on a good day). It uses LiDAR and cameras to “see” and route itself. If a box is in the way, it goes around it. Best for dynamic, busy spaces where layouts change.
  • The Winner for Startups: AMR. Lower setup costs (no floor surgery required) and much higher flexibility as you scale.

What is an AGV and why do people still use them?

An Automated Guided Vehicle (AGV) is essentially a robot on a leash. It has very “low-resolution” intelligence. It knows how to follow a line and how to stop if its bumper hits something.

Why search for AGVs?

  • You are moving extremely heavy loads (think 5-ton car chassis).
  • Your floor layout will never change (literally, you’re bolting things down).
  • You want the lowest unit cost and don’t mind spending $50k on floor infrastructure.

What makes an AMR “Autonomous”?

An Autonomous Mobile Robot (AMR) is the cool kid on the block. It uses SLAM (Simultaneous Localization and Mapping). Instead of following a tape, it builds a digital map of your room using lasers (LiDAR) and then says, “Okay, I’m here, the shelf is there, I’ll take the shortest path.”

Why search for AMRs?

  • Zero infrastructure: You don’t have to tape up your floors like a crime scene.
  • Collaboration: They can work alongside humans without being a safety hazard.
  • Laziness (The good kind): You can change its destination in a web UI in 10 seconds.

How do you build a “path” for these things?

If we were to look at the “brain” of these two, the code logic would look something like this:

The AGV Logic (The “Follower”)

# Simplified AGV movement
def move_agv(path_strip):
    while robot.is_on(path_strip):
        if sensor.detect_obstacle():
            robot.stop() # Wait for a human to move the box
            alert_manager("I'm stuck again.")
        else:
            robot.drive_forward()

Simple, predictable, but incredibly fragile.

The AMR Logic (The “Thinker”)

# Simplified AMR movement
def move_amr(destination, map):
    current_path = path_planner.get_route(current_pos, destination, map)

    for step in current_path:
        if sensor.detect_obstacle():
            # The 'Aha!' moment
            map.update_temp_obstacle()
            new_path = path_planner.recalculate(current_pos, destination, map)
            execute_path(new_path)
        else:
            robot.drive_step(step)

The AMR treats an obstacle as a data point, not a dead end.

Why is AMR cheaper for a startup (even if the robot costs more)?

Here is where most “beginner” guides lie to you. They say AGVs are cheaper. Hardware-wise? Yes. You can get a basic AGV for $15k, while a decent AMR might start at $30k–$50k.

But as a founder, you have to look at the Total Cost of Ownership (TCO):

  • Installation: AGVs require you to shut down your floor for days to install tape or magnets. AMRs can be unboxed and “mapping” within 2 hours.
  • Maintenance: Floor tape peels. Magnets get demagnetized. QR codes get scratched by forklifts. AMRs just need a software update and a lens wipe.
  • Flexibility: If you move to a bigger warehouse, you pick up the AMR and take it with you. The AGV’s infrastructure stays in the old building’s floor.

FeatureAGV (The Train)AMR (The Uber)NavigationMagnetic Tape / QR CodesLiDAR / SLAM / AIObstacle HandlingStops & WaitsReroutes & ContinuesSetup TimeWeeks (Infrastructure)Hours/Days (Software)Initial CostLower (Hardware)Higher (Hardware)Scaling CostExpensive (New Tape)Zero (New Map)

My “In-the-Trenches” Gotchas

When I first deployed an AMR, I learned two things the hard way:

  • Mirrors are the Devil: LiDAR uses light. Mirrors reflect light. My robot thought the reflection of the hallway was a never-ending void and tried to drive into it. Pro tip: Put some frosted tape at “eye level” for the robot on any glass or mirrors.
  • WiFi Dead Zones: AMRs are smart, but they aren’t “offline first” geniuses. If your warehouse has a corner where the WiFi dies, your robot will just stand there like a confused toddler. Invest in your mesh network before you invest in the bot.

The Wrap-Up: What’s Next?

If you’re just starting out, don’t buy an AGV. It’s legacy tech that only makes sense for massive, static factories. Go with an AMR. The flexibility to change your mind and your layout — is worth every extra penny in the upfront cost.


메타데이터
post_id
2ca1aeef3d9e
slug
amr-vs-agv-explained-2ca1aeef3d9e
url
https://medium.com/@agneya/amr-vs-agv-explained-2ca1aeef3d9e
canonical_url
https://medium.com/@agneya/amr-vs-agv-explained-2ca1aeef3d9e
author_url
https://medium.com/@agneya
status
ok
fetched_at
2026-06-10 21:21:38