def get_supports_imaging(self):
		if self.dev:
			return pyf.fp_dev_supports_imaging(self.dev) == 1
		raise "Device not open"
Ejemplo n.º 2
0
 def supports_imaging(self):
     """If true, the device can return an image of the finger."""
     if self.dev:
         return pyf.fp_dev_supports_imaging(self.dev) == 1
     raise "Device not open"
Ejemplo n.º 3
0
	def supports_imaging(self):
		"""If true, the device can return an image of the finger."""
		if self.dev:
			return pyf.fp_dev_supports_imaging(self.dev) == 1
		raise "Device not open"