Kin3ct

Created by [KavEn06] • Started on July 20, 2025

Handheld DIY 3D scanner that repurposes an Xbox Kinect and a Raspberry Pi

Kin3ct Creation Journal

Total time spent: 17h


July 20th – Can I even make this? Is this even possible?

Hi hi, this is my devlog/journal for my new idea: a handheld 3D scanner using a Kinect and Raspberry Pi!

The idea is to build something like a portable(ish) 3D scanner that can capture point clouds live while scanning, so you can actually see what you’re scanning in real‑time, instead of just dumping a bunch of photos and waiting hours to process them later. That was the whole point from the start — not just “photogrammetry from a camera,” but an actual live‑processing scanner.

Early research / what I found:

At first I thought about just using photogrammetry: take a video, import it later, and run it through Meshroom or COLMAP. But that doesn’t really fit the goal: I want the data to be processed live, so I can immediately see what I captured and clean it up later. So photogrammetry became more of a backup option, but not the main plan.

Then I found Skanect, which sounded promising: it can take data from a Kinect and build a mesh in real‑time. My idea was to run Raspbian on the Pi and install Skanect, using a Kinect driver like libfreenect to get the depth data. But after digging deeper, I realized Skanect (and pretty much every similar program) only runs on x86 processors — not on ARM, which is what Raspberry Pis use. Same story for RecFusion, ReconstructMe, etc.

RTAB‑Maps! (MY SAVIOUR)

After some more digging, I found RTAB‑Map, an open‑source SLAM and mapping library that does support ARM, and can work with the Kinect through libfreenect2. Even better, RTAB‑Map can do live SLAM: it builds a 3D map while you scan. Then I can import the point cloud later on my PC and clean it up properly for CAD or Blender.

So now the idea is: - Use Kinect + Raspberry Pi 5 + RTAB‑Map + libfreenect2
- Save maps to SSD or USB drive
- Clean them up later on a real PC

Choosing the Kinect: v1 vs v2

There are two main versions:
- Xbox 360 Kinect (v1)
- Xbox One Kinect (v2) image

The Kinect v2 is better because: - Higher resolution depth sensor - Wider field of view - Better depth accuracy and less noise

Downside: both require a special 12V power adapter to run over USB. It’s not a huge deal since adapters are available online, but it is an extra cost :/

Which RPi?

I decided that the Raspberry Pi 5 would be my best option as, - It has way more processing power than Pi 4 → better for running RTAB‑Map - USB 3.0 ports → needed to handle Kinect v2’s high bandwidth - Can easily add an SSD for storage, which makes it practical to do lots of scans without swapping SD cards every time

Power challenge:

The Kinect v2 is very power hungry. Making this completely battery‑powered (with step‑up converters) is possible, but battery life would probably be terrible. Having a cable for power isn’t the end of the world, since no one’s realistically going to use this to scan a whole house (and it obviously won’t be commercial grade anyway).

image

(This is how the adapter looks)

Basicallyyy

After digging through lots of dead ends, I finally landed on: - Kinect v2 + Raspberry Pi 5 - RTAB‑Map to do live SLAM - libfreenect2 as the driver - Save to SSD, clean up on PC

Total Time Spent Today: ~5h (Quite tragic that this took this long)


July 21 – BOM and Starting CAD

Hi hi, devlog time again!

Today I spent a bit of time putting together an actual BOM so I could see roughly what this thing will cost and what parts I really need.
The list isn’t final (obviously) but it helps me get an idea if it’s even reasonable before I get too carried away designing stuff.

BOM (Unfinished)

Item Purpose Source Price
Raspberry Pi 5 Main compute unit PiShop $85
7 inch LCD Display + Touch Display & user interface AliExpress $40
Kinect v2 + Adapter Depth camera for scanning Self-Sourced $60
Push Button Physical controls (start/stop etc.) AliExpress $2
Custom PCB Connects buttons, SSD, etc. JLCPCB TBD
3D Printed Case Holds everything together Self-Sourced $0
NVMe SSD Storage for scan data Owned $0
Total CAD $187
Total USD $138

CAD

After I got the BOM together, I started working in Onshape to see how this thing could actually look and come together.

I decided to take some inspiration from the Revopoint Miraco scanner, mainly because I really like that it’s a proper two‑handed scanner. It just seems way easier to hold steady and move around whatever you’re scanning, instead of trying to grip a box in one hand.

image

Here's the CAD model, it’s still midway through, but you can already see the vision I’m going for, kinda inspired by the Miraco scanner, with the two‑handed grip and the screen right in front. I feel like I have enough room to shove both the adapter and the Pi into the shell without any problems.

image

I’ve just went with this model and kept refining it, and a couple hours later it’s starting to look quite polished now!!!! :D

image
image

Total Time Spent Today: ~6h


July 22nd – more cad

Spent today doing more CAD stuff!

First pic is just me turning the model into a proper shell with a wall thickness of 2.6mm, and I added standoffs for the Raspberry Pi and the screen. Also made sure all the parts actually fit inside (which they very clearly do so far, yay).

image

Side note: the random yellow block in the model is just the Kinect adapter — I couldn’t find a proper CAD model for it, so that’s what its gonna be lol.

You might be wondering “kavin where’s the Kinect gonna go?!?!?!”

It’s actually gonna go right at the bottom of the scanner, which is why i didn't do any fillets or anything down there so then it mates up nicely with the kinect.

Here’s the model of the mount I made for it :D

image

image

Total Time Spent Today: ~3h


July 23rd – even more cad

Today wasn’t much, I just decided to finish up this CAD model.

I added ribs inside the shell where the grips are so it feels sturdier in the hand, and also added some buttons to the right side of the screen for easy control of shortcuts.

It’s nothing huge, but it does make it feel more like a proper handheld scanner and less like just an empty box lol.

image

image

image

(IT'S ACTUALLY LOOKING LIKE A PROPER SCANNER WOOOOOOO)

I also imported the sketch that I used to make the holes in the shell into KiCAD, so that I know where to place the push buttons on the PCB. (I just exported the sketch as a DXF and imported it into KiCAD's PCB editor)

image

Total Time Spent Today: ~2h


July 28th – pcb and finishing steps

Made a simple 4‑button PCB today that connects straight to the Pi.

image image

I also imported it into Onshape so I could figure out the final position for the Pi inside the case. As you can see in the screenshot, everything lines up perfectly, but the USB headders on the Pi doesn't allow the Pi to get close enough to the PCB.

image image

I just put a small cutout in the corner of the pcb, which allowed me to move the Pi closer to the PCB by 6.7mm. (Which SHOULDDDD be close enough)

image image

Total Time Spent Today: ~1h