Appearance
To build a multispectral imaging rig you need five things working together: a full-spectrum monochrome camera, a sharp lens that transmits UV–NIR, a bank of narrowband LEDs spanning roughly 365–940 nm fired one band at a time, a rigid copy stand in a dark room, and a reflectance target for calibration. A capable DIY system costs a few thousand pounds rather than the tens of thousands a turnkey rig commands, and it captures pixel-registered bands because the camera never moves. This guide takes you from parts list to first calibrated stack.
What are the core components and why each one?
Each part exists to remove a specific source of error:
- Monochrome, full-spectrum sensor — records every band at native resolution without a Bayer mosaic discarding UV/IR.
- UV–NIR-transmitting lens — an ordinary coated lens blocks UV; a quartz-fluorite or dedicated lens passes it.
- Sequential narrowband LEDs — keep camera and focus fixed so bands register; far better than swapping filters.
- Rigid copy stand — any movement between bands becomes colour fringing.
- Dark room — narrowband and fluorescence captures need light-tight control.
- Reflectance target — turns raw counts into comparable, library-matchable reflectance.
How do I choose between filters and LEDs?
| Approach | Pros | Cons |
|---|---|---|
| Narrowband LEDs | No focus shift, cool running, fast band switching, easy to automate | Upfront LED bank cost, fixed band set |
| Filter wheel | Flexible band selection, white source | Focus shifts per filter, registration harder, slower |
| Liquid-crystal tunable filter | Continuous bands, no moving parts | Expensive, lower transmission, longer exposures |
For most archives building their first rig, sequential narrowband LEDs are the pragmatic default: they keep the optics fixed, which solves registration before it starts.
How do I lay out and wire the rig?
Mount two LED panels at roughly 45 degrees either side of the page to light evenly and avoid specular hotspots, with the camera looking straight down on a copy stand. Drive the LEDs from a microcontroller so each band fires while exactly one exposure is taken:
cpp
// Arduino sketch: cycle bands, trigger one exposure per band
const int bandPins[] = {2,3,4,5,6,7,8,9}; // one pin per LED band
const int shutter = 10; // optocoupler to camera trigger
const int N = sizeof(bandPins)/sizeof(int);
void setup() {
for (int i = 0; i < N; i++) pinMode(bandPins[i], OUTPUT);
pinMode(shutter, OUTPUT);
}
void loop() {
for (int i = 0; i < N; i++) {
digitalWrite(bandPins[i], HIGH); delay(200); // band on, settle
digitalWrite(shutter, HIGH); delay(50); // fire camera
digitalWrite(shutter, LOW); delay(800); // exposure window
digitalWrite(bandPins[i], LOW); delay(200);
}
delay(5000); // pause before next page
}Because the controller knows which band is lit, it can also write the wavelength into the filename — paradata for free.
How do I calibrate the rig before real captures?
Calibration is what separates a rig from a gadget. For every session:
- Shoot a dark frame (lens capped) to capture sensor bias.
- Shoot a flat field (blank diffuse target) per band to map lamp/lens unevenness.
- Image a reflectance standard (e.g. Spectralon or a known chart) in frame.
- Confirm focus under UV and NIR — the sharpest plane can differ; stop down to f/8–f/11 to cover the spread.
- Verify registration by overlaying two bands and checking edges for fringing.
Skip any of these and your beautiful stack is uncalibrated and unverifiable.
What does it cost, realistically?
A converted mirrorless body, a decent UV–NIR lens, a home-built eight-band LED bank, a copy stand and a reflectance target land in the low thousands of pounds — call it £3,000–£8,000 depending on lens quality and band count. Commercial turnkey systems with 16 bands, integrated software and certified calibration can cost ten times that. The DIY route trades convenience and certification for affordability, which is the right trade for many smaller archives.
What goes wrong when people build their first rig?
- Using a normal lens that silently blocks UV — half your bands underexpose.
- Flimsy mounting, so pages or camera drift between bands.
- Ambient light leaking in and contaminating narrowband frames.
- No microcontroller, so bands and frames get mislabelled by hand.
- Forgetting flat-field frames, so lamp hotspots masquerade as features.
Key Takeaways
- Core rig: full-spectrum monochrome camera, UV–NIR lens, sequential narrowband LEDs, copy stand, dark room, reflectance target.
- Prefer LEDs over filter wheels to keep focus fixed and bands registered.
- A microcontroller fires one band per exposure and labels frames automatically.
- Calibrate every session with dark, flat-field and reflectance-standard frames.
- A capable DIY rig costs roughly £3k–£8k versus tens of thousands turnkey.
- Most failures trace to the lens, mounting rigidity, stray light or missing calibration.
Frequently Asked Questions
What is the minimum equipment for a multispectral rig?
A monochrome camera with the hot-mirror removed, a quality lens, a set of narrowband LED panels covering UV to NIR, a copy stand, a dark room and a reflectance target. Everything else is refinement.
How much does a DIY rig cost?
A capable DIY rig built around a converted mirrorless camera and homemade LED panels can run roughly £3,000–£8,000, versus tens of thousands for a turnkey commercial system. Cost scales with band count and lens quality.
Why use narrowband LEDs instead of filters?
Sequential narrowband LEDs keep the camera and lens fixed, avoiding the focus shift and registration error that swapping filters introduces. They also run cooler and let you fire one band at a time cleanly.
Do I need a fully dark room?
Yes for UV fluorescence and ideally for all bands. Stray ambient light contaminates narrowband captures and ruins fluorescence work, so light-tight control is part of the rig, not an optional extra.
How do I synchronise the LEDs with the camera?
A microcontroller (e.g. Arduino) cycles each LED band on while triggering one exposure, then advances. This guarantees one band per frame and records which band each frame is, feeding your paradata automatically.
Can I convert a normal camera myself?
You can remove the internal hot-mirror/IR-cut filter to make a camera full-spectrum, but it is delicate sensor surgery. Many people pay a specialist conversion service rather than risk the sensor.