0

我使用 Sane 的命令行实用程序 ( scanimage) 来从我的扫描仪的透明单元扫描胶片。这是我一直在成功使用的命令:

scanimage --device-name pixma:04A9190D \
--source 'Transparency Unit' \
--resolution "4800" \
--format "tiff" \
--mode "color" \
-l "80.6" -x "56.2" -t "25.8" -y "219.2" \
> scan.tiff

我决定将其移至 Python 代码,pyinsane以便与我的图像处理工作流程进一步集成。这应该在 Python 代码中给出以下内容:

import pyinsane.abstract as pyinsane
device = pyinsane.get_devices()[0]

device.options['resolution'].value = 4800
device.options['mode'].value = 'Color'
device.options['source'].value = 'Transparency Unit'

# Setting coordinates to non-integers fails
device.options['tl-y'].value = 25.8
device.options['tl-x'].value = 80.6
device.options['br-y'].value = 219.2
device.options['br-x'].value = 56.2

scan_session = device.scan(multiple=False)
try:
    while True:
        scan_session.scan.read()
except EOFError:
    pass
image = scan_session.images[0]

但是我的第一次尝试没有成功,因为我不知道如何设置扫描坐标pyinsane。如您所见,我找到了合适的选项,但我不知道它们的单位是什么。scanimage默认情况下,坐标以毫米为单位,但pyinsane只接受整数。我尝试使用像素坐标无济于事。我想知道坐标参数采用什么单位,以及我是否以正确的顺序使用它们。

4

2 回答 2

1

pyinsane 的选项描述实际上说这些值以毫米为单位:

Option: br-x
  Title: Bottom-right x
  Desc: Bottom-right x position of scan area.
  Type: <class 'pyinsane.rawapi.SaneValueType'> : Fixed (2)
  Unit: <class 'pyinsane.rawapi.SaneUnit'> : Mm (3)
  Size: 4
  Capabilities: <class 'pyinsane.rawapi.SaneCapabilities'> :[ Automatic, Soft_select, Soft_detect,]
  Constraint type: <class 'pyinsane.rawapi.SaneConstraintType'> : Range (1)
  Constraint: (0, 14160319, 0)
  Value: 20

但他们不是!我将br-x变量的最大范围除以扫描仪扫描区域的宽度,得到数字 65536(即 2^16)。将坐标设置为毫米值乘以 65536 即可。也许这些值定义了步进电机的步数?

也不是说虽然 scanimage 将-xand-y开关解释为宽度和长度,and-l开关解释-t为偏移量,但 pyinsane 采用右下角 x ( br-x)、左上角 y ( tl-y) 等。

于 2016-09-12T11:47:26.170 回答
0

Pyinsane 按原样报告 Sane 报告的内容。Sane 会报告司机的报告。根据我的经验,所有驱动程序的行为方式并不完全相同,这可能解释了这个奇怪的单元(换句话说,它可能是驱动程序的错误)。我以前从来没有真正担心过这个单位。当我有时间的时候,我会在我的扫描仪上检查它所说的内容。

无论如何,我不确定为什么它会说“mm”,因为根据我的经验,这里的单位实际上总是像素(同样,文档说它可以是“mm”,所以我需要检查)。如果要扫描特定尺寸,则应查看分辨率(每英寸点数),然后进行数学运算以计算出您期望的像素尺寸。

于 2016-10-07T14:31:06.510 回答