Skip to content
Digitisation & Imaging

Set up controlled lighting whenever consistency, colour accuracy or volume matters — which covers almost any project digitising more than a few dozen heritage objects to a defined standard. The signal that you need it is simple: if you cannot reproduce the same illumination tomorrow that you had today, your images will not be comparable and your colour targets will not hold. For a single quick reference snapshot, a copy stand by a north-facing window can suffice; for a defensible archival master, it cannot.

When is dedicated lighting actually worth it?

Weigh the setup against three factors: volume, colour requirements and ambient stability.

SituationControlled lighting?
One-off reference image, no colour claimOptional — window light may do
50+ objects to a consistent standardYes
FADGI/colour-accurate mastersYes, with calibrated target
Variable ambient/daylight roomYes — daylight drifts hour to hour
Texture/surface analysisYes, but raking, not flat

The cost is real — two matched LED panels, stands and polarisers — but it is a one-time outlay against thousands of consistent captures. The hidden cost of not doing it is post-processing every image individually and never quite matching them.

What angle should the lights be at?

For flat, reflective material — manuscripts, prints, maps — place two matched lights at roughly 45 degrees to the document plane, symmetrically on either side of the camera. That angle is the sweet spot: shallow enough to keep illumination even across the field, steep enough that specular glare bounces away from the lens rather than into it.

text
        camera (above, looking down)
            |
   light ───┼─── light
    \45°     |     45°/
     \       |       /
      \      |      /
   ====[ document plane ]====

Deliberately break this rule only when you want surface texture: a single raking light at a low angle (15-30 degrees) throws shadows across tooling, watermarks or impasto and is a technique in its own right.

How do I keep light safe for fragile material?

Light is cumulative damage, so the goal is the least light that gets a clean exposure. Use LED sources — they emit negligible UV and IR and run cool — keep lux low, expose briefly, and never leave the object lit between shots. Many institutions track a lux-hour budget for sensitive material; respecting it is part of the conservation duty, not an optional nicety. Dimmable panels let you trade aperture and ISO against intensity to stay within that budget.

Why is there a hotspot or glare in my image?

A bright blown patch is specular reflection — light hitting a glossy surface (varnish, photographic emulsion, glazed paper) and reflecting straight into the lens. Three fixes, in order of preference:

  1. Move the lights closer to 45 degrees so the reflection bounces away from the axis.
  2. Add cross-polarisation: a polarising filter on each light and one on the lens, rotated to cancel the reflection.
  3. Reposition the object or light to push the hotspot out of frame.

Cross-polarisation is the heavy tool — it can suppress glare on stubborn glossy surfaces almost entirely, at the cost of about two stops of light and slightly muted texture.

Can I just fix the lighting in software afterwards?

Only the mild cases. A gentle brightness gradient can be removed by flat-fielding against a blank reference frame shot under the same light:

python
import numpy as np, imageio.v3 as iio

img  = iio.imread("page.tif").astype(np.float32)
flat = iio.imread("blank_reference.tif").astype(np.float32)
flat /= flat.mean()                 # normalise illumination field
corrected = np.clip(img / flat, 0, 65535).astype(np.uint16)
iio.imwrite("page_flat.tif", corrected)

But software cannot recover detail from blown highlights, cannot undo colour shifts from mixed daylight-plus-tungsten sources, and cannot invent the texture a flat raking failure missed. Capture-time lighting is always cheaper and more faithful than rescue in post.

When should I deliberately NOT set up full lighting?

Skip the full rig when the object is so light-sensitive that any additional exposure is unjustified for the access value gained, when you genuinely need only a quick identification image, or when a vendor with a calibrated studio is doing the work for you. In those cases, a quick consistent ambient setup with a target shot for reference is the proportionate choice.

Key Takeaways

  • Use controlled lighting whenever volume, colour accuracy or ambient stability matter.
  • Two matched lights at symmetric 45 degrees give even, glare-free illumination of flat material.
  • Switch to a single low raking light only when you want to reveal surface texture.
  • Keep light minimal and UV/IR-free for fragile objects; track a lux-hour budget.
  • Cure hotspots by adjusting angle first, then cross-polarisation, then repositioning.
  • Flat-fielding fixes mild gradients only; blown highlights and colour shifts cannot be rescued.
  • A quick ambient setup with a target shot is the proportionate choice for one-off images.

Frequently Asked Questions

When is a controlled lighting setup worth the cost?

When you are imaging more than a few dozen objects to a consistent standard, when colour accuracy matters, or when ambient light is variable; for one-off snapshots a copy stand near a window may be enough.

What angle should copy lights be at?

Around 45 degrees to the document plane is the standard for flat reflective material, because it minimises specular glare while keeping illumination even; raking light at a low angle is used deliberately to reveal surface texture.

How much light intensity is safe for fragile material?

Keep cumulative exposure low: use the lowest practical lux and shortest exposure, avoid UV and infrared, and prefer LED sources whose output you can dim; many institutions cap sensitive material at strict lux-hour budgets.

Do I need two lights or can I use one?

Two matched lights at symmetric 45-degree angles give even illumination across the field and cancel each other's shadows; a single light almost always leaves a brightness gradient you will fight in post.

Why does my image have a bright hotspot or glare patch?

That is specular reflection from light hitting glossy areas near the lens axis; raise the light angle toward 45 degrees, add polarising filters on lights and lens, or reposition to move the reflection out of frame.

Can I just correct uneven lighting in software?

Mild gradients can be flat-fielded using a blank reference shot, but software cannot recover blown highlights or fix colour shifts from mixed sources, so fixing lighting at capture is always cheaper and more accurate.