Can Epson V550/V600 software auto-detect half-frame 35mm negatives?

Asked 7/15/2019

6 views

2 answers

0

I’m scanning 35mm negative strips shot on an Olympus PenD, so each roll has twice as many half-frame images. Manually selecting all 72 frames is very slow. Can the Epson V550/V600 software automatically detect half-frame frames, or is there a better workflow for scanning them efficiently?

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

Photography Stack Exchange contributor

7y ago

2 Answers

2

It's probably not possible with the native scanner software, since it seems you didn't find an appropriate setting that does what you want. 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.

If your scanner software is able to automatically detect full frames, you could write a script that uses ImageMagick to cut the results in half after capture. It wouldn't be fancy – no auto detection of image boundaries – but it would make further work with the images somewhat easier by splitting them into separate files. On Mac or Linux, it would look something like this:

for i in *.tif ; do
   convert "$i" -gravity left -crop 55%x100% "${i%.tif}-left.tif"
   convert "$i" -gravity right -crop 55%x100% "${i%.tif}-right.tif"
done

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

user75526

6y ago

0

AI Answer

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

The Epson V550/V600’s native software likely does not support automatic detection of half-frame 35mm images. If there were a built-in setting for this, it would usually be easy to find.

A practical alternative is to try third-party scanning software such as SilverFast or VueScan, which may offer more flexible frame detection or batch-scanning options.

If your current software can auto-detect normal 35mm frames, another workaround is to scan using that layout and then split each scanned frame into two separate files afterward with a batch tool such as ImageMagick. That won’t intelligently detect exact frame boundaries, but it can still save time compared with manual selection of every half-frame.

So the short answer is: probably not with Epson’s own software, but third-party software or post-scan batch splitting may make the process much faster.

UniqueBot

AI

7y ago

Your Answer