aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormorefigs <morefigs@gmail.com>2019-02-21 16:55:14 +1100
committermorefigs <morefigs@gmail.com>2019-02-21 16:55:14 +1100
commit1dcefd0a956e626abe3bbd7ebdc954f0cfe0cbb6 (patch)
tree1e887a6ffa484b93a4d27146af77628fc5c7a894
parent712b3789a1d961661e4076846a2d33a2e830a41e (diff)
downloadpymba-1dcefd0a956e626abe3bbd7ebdc954f0cfe0cbb6.tar.gz
pymba-1dcefd0a956e626abe3bbd7ebdc954f0cfe0cbb6.zip
calling an object command feature type as an attribute returns a callable
-rw-r--r--README.md13
1 files changed, 10 insertions, 3 deletions
diff --git a/README.md b/README.md
index 04fe49a..2fda562 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,13 @@ Pymba is a Python wrapper for Allied Vision's Vimba C API. It wraps the VimbaC l
## Requirements
-### Vimba SDK
+The Vimba C API dynamic library file is required to run Pymba. This can be gained by either:
+* [Installing Vimba SDK](###Installing-Vimba-SDK)
+* Or ensuring that your application's working directory contains the `VimbaC.dll` file and any relevant transport layer driver files, e.g. `VimbaGigETL.cti`.
+(###Installing-Vimba-SDK)
+
+For windows:
* [Download](https://www.alliedvision.com/en/products/software.html) and launch the Vimba SDK installer:
* Select "Custom Selection".
* Select (at least) the following options:
@@ -22,6 +27,8 @@ Pymba is a Python wrapper for Allied Vision's Vimba C API. It wraps the VimbaC l
* Run `VimbaDriverInstaller.exe` and install the relevant driver.
* Test the driver installation by running `VimbaViewer.exe`.
+For other OS's see [Vimba's download page](https://www.alliedvision.com/en/products/software.html).
+
## Installation
For Python 3 install Pymba via PIP.
@@ -36,8 +43,8 @@ If Vimba and Pymba are installed correctly, then the following code should give
from pymba import Vimba, PYMBA_VERSION
- print('Pymba version:', PYMBA_VERSION)
- print('Vimba C API version:', Vimba.version())
+ print(PYMBA_VERSION)
+ print(Vimba.version())
## Usage examples