I just finished building a rig from scratch for around 600 euros. I decided on a Samsung NX1000 and built a motorized turntable both controlled from an Arduino. The platform has 28 marked positions picked up by a photocell that triggers a capture and rotates between positions automatically, with a chroma key screen for scripted masking.
I've learned a few lessons about the NX1000 in this setup so far:
- With the 20-50mm kit lens, the highest MTF and least flare is at f5.6 or f8.
- In Single Drive mode, full manual and SuperFine JPG, photos take 750ms to capture (including 200ms shutter press) on a UHS SDHC card (SanDisk Extreme Pro 95 Mbps).
- In Continuous Drive (low) mode, it can grab 12 photos in 3.5 seconds, then pauses 7.2 seconds to write them out.
- I need to use 4 x 400W halogen lamps with soft boxes to get decent exposures with continuous lighting.
I'm getting pretty good scans with just a single camera (around 40,000 points on a person), but need to make some improvements. It seems 2 cameras would be optimal to capture finer details. Here's what the trigger circuit looks like (pretty easy to adapt to trigger multiple cameras at once):

The Arduino sketch just needs this in the setup():
int cameraTriggerPin = 45;
pinMode(cameraTriggerPin, OUTPUT);
digitalWrite(cameraTriggerPin, LOW);
And you trigger a single capture with:
digitalWrite(cameraTriggerPin, HIGH); // Trigger camera
delay(200); // Wait 100ms+ for camera to detect trigger
digitalWrite(cameraTriggerPin, LOW); // Stop trigger
delay(550); // Wait for camera processing to recover
You could wire up the D- pin if you wanted to trigger auto-focus separately, but the NX1000 will focus before it snaps a photo anyway (if AF is enabled and AF Priority is on - but I recommend manual focus).
Practically all Micro USB cables and extensions (USB "On The Go" / OTG) out there only have 4 wires connected through. I've found this is the best place for 5-wire cables:
http://www.usbfirewire.com/uextendmicrob.htmlHere are the other parts to do this solderless:
http://proto-pic.co.uk/usb-microb-plug-breakout-board/http://proto-pic.co.uk/n-channel-mosfet-60v-30a/http://proto-pic.co.uk/68k-ohm-1-4-watt-resistor-pack-of-20/http://proto-pic.co.uk/breadboard-mini-self-adhesive/http://proto-pic.co.uk/solderless-headers-10-pin-straight/As Mala pointed out, the USB remote trigger works in modes other than WiFi, so you're limited to capturing to the SD card. But using a trigger is much better than the app-controlled WiFi Remote, since that mode has practically no control (full auto).
I really appreciate seeing all the work others have done. I can share more about my setup if anyone's interested.
Edit:Here is one way you can adapt this to trigger multiple NX1000 cameras at once. Please note I haven't tested this, and if you're using long USB cables the voltage drop might prevent it from working. Feedback appreciated:

Coadey