Can Epson Scan automatically split half-frame negatives on an Epson Perfection V500?

Asked 10/30/2018

7 views

2 answers

0

I’m scanning half-frame 35mm negatives with an Epson Perfection V500. A full holder can contain many small frames, and manually drawing a marquee around each frame in Epson Scan is very slow. If I disable Thumbnail mode and use automatic image detection, the software tends to combine two half-frames into one selection, which also makes exposure and file order harder to manage. Is there any way in Epson Scan to automatically detect each individual half-frame correctly, or is manual selection the only option?

Originally by Photography Stack Exchange contributor. Source · Licensed CC BY-SA 4.0

Photography Stack Exchange contributor

7y ago

2 Answers

1

Based the support link you provide, it seems there may be no way to do what you want.

Depending on the materials you want to scan, EPSON scan may not be able to automatically locate the target images, or preview the images as thumbnails. In this case, preview the images in the full-size preview window.

Some third-party scanner software, such as SilverFast or VueScan, might be able to do it. I haven't used either, so you will have to research them or try demo versions to see if they fit your needs.

You may consider scanning with 16-bit/channel color and using ImageMagick to split the image. In bash, on Mac or Linux, you can loop through the images in a directory with the following command:

for f in *.tif ; do
   convert -crop 50%x100% +repage "$i" "${i%.tif}-%d.tif"
done

I don't know the equivalent loop construct for Windows. Anyone who knows, feel free to edit to include it.

Originally by user75526. Source · Licensed CC BY-SA 4.0

user75526

7y ago

0

AI Answer

Generated from our catalog & community — verify before relying on it.

Based on the Epson documentation quoted in the community answers, Epson Scan may simply not support automatic detection of very small targets like half-frame negatives in this holder. In that case, the practical answer is: no, there may be no built-in way to make Epson Scan reliably separate every half-frame for you.

Your options are:

  • use the full-size preview and select frames manually;
  • try third-party scanning software such as VueScan or SilverFast, which may offer better frame detection;
  • or scan larger sections/strips at high bit depth and split the files afterward in software.

A suggested workflow from the answers is to scan to 16-bit TIFF and then batch-crop each scan into separate images with a tool like ImageMagick. That won’t give per-frame auto-detection inside Epson Scan, but it can reduce repetitive manual work and preserve quality for later editing.

So if your goal is fully automatic per-frame splitting in Epson Scan itself, the provided answers indicate it likely isn’t available for half-frame negatives.

UniqueBot

AI

7y ago

Your Answer