aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-08-23VIMBA_HOME environment variable added as potential path for locating the ↵Sven
VimbaC.dll (Windows only)
2017-08-13Merge pull request #52 from CrocodileDandy/mastermorefigs
Changed the import of vimbastructure
2017-08-12Changed the import of vimbastructure to ensure a relative import within the ↵CrocodileDandy
package
2017-07-20Merge pull request #50 from jrast/feature/VmbFeatureCommandIsDonemorefigs
Implemented VmbFeatureCommandIsDone
2017-07-19Implemented VmbFeatureCommandIsDoneJürg Rast
2017-06-29updated print statementsMore Figs
2017-06-29Merge pull request #49 from fstarr/morefigs-prmorefigs
Update vimbadll.py
2017-06-29Update vimbadll.pyfstarr
Changed old style `print` statement to Python 3 compatible version.
2017-05-05Merge pull request #45 from fearthesmear/vimba2_1morefigs
Added armv7hf and aarch64 support, using code from @DanielArnett in #16
2017-05-05Delete LICENSEmorefigs
2017-05-05Create LICENSE.mdmorefigs
2017-04-20Added armv7hf and aarch64 support, using code from @DanielArnett in #16Mark Smearcheck
2017-03-04Merge branch 'master' of https://github.com/morefigs/pymbaSam Myers
2017-03-04py3 changesSam Myers
2017-03-04Merge pull request #38 from jrast/bugfix/getInterfaceInfosCrashmorefigs
Fixed _getIntrerfaceInfos() to avoid python crash
2017-02-08Merge pull request #43 from Gloweye/patch-1morefigs
Fix for retrieving list of interfaces.
2017-02-06Fix for retrieving list of interfaces.Gloweye
Sending in None as reference explicitly tells the DLL we're only interested in the number of interfaces available. I was having crashes with this request otherwise. Note: I tested and verified this with Vimba 2.0. Perhaps the issue doesn't arise with older versions, but the documentation seems to indicate that this is the intended method all along.
2016-09-16Merge pull request #36 from jrast/feature/frameCallbackmorefigs
Correct Signature for frame callback
2016-06-15BugFix: fixed crash during _getInterfaceInfos() callJürg Rast
2016-06-15Correct Signature for frame callbackJürg Rast
2016-05-16Update setup.pymorefigs
2016-05-16Merge pull request #35 from jrast/bugfix/cameraInfoCachemorefigs
Don't cache cameraInfos
2016-05-16used warning instead of print statementmorefigs
2016-05-16removed numpy as a strict requirementmorefigs
2016-05-16Merge pull request #37 from jrast/feature/FrameToNumpymorefigs
Direct conversion from frame data to numpy array
2016-05-12Direct conversion from framedata to numpy arrayJürg Rast
2016-05-12Don't cache cameraInfosJürg Rast
2016-05-04Merge pull request #31 from jrast/jrast-windows-dll-searchmorefigs
Better DLL search, including support for Vimba 2.0
2016-05-02Better DLL search, including support for Vimba 2.0Juerg Rast
2016-03-26Merge pull request #27 from edmundchong/patch-1morefigs
Update vimbaobject.py - fix > v1.3 crashing on _getFeatureInfos()
2016-03-25Update vimbaobject.pyedmundchong
This is to fix the problem of Python crashing (#23, #19) for Vimba versions later than 1.3, proposed by Bill at AVT. The earlier fix "can corrupt random memory up to 999* the size of the FeatureInfo struct"
2016-03-07Changed listLength arg morefigs
Changed listLength arg from 0 to 999 to avoid error in Vimba 1.4.
2015-12-03Merge pull request #20 from derricw/mastermorefigs
Search for Windows DLL instead of hard-coding.
2015-12-02Added IO Error for dll not foundDerric Williams
2015-12-02windows dll searchDerric Williams
vimbadll now searches for highest version windows dll instead of being hardcoded to 1.3
2015-07-10Merge pull request #17 from tribeiro/mastermorefigs
Fixes PIXEL_FORMATS names for types BayerGR8 and BayerGR12.
2015-07-10Adds back BayerRGs (along with BayerGR) to PIXEL_FORMATS for compatibility.Tiago Ribeiro de Souza
2015-07-10Fixes PIXEL_FORMATS name for types BayerGR8 and BayerGR12. They had RG ↵Tiago Ribeiro de Souza
instead of GR on vimbaframe.py, which caused an exception when using this pixel formats.
2015-02-25Added callback functionality to queueFrameCapturemorefigs
2015-02-25Added callback function typemorefigs
2015-02-25Updated version number to look for vimba version 1.3morefigs
2015-01-29Added non context manager examplemorefigs
2015-01-29Merge pull request #11 from fmder/vimba-contextmorefigs
Vimba context manager fixing issue #10
2015-01-29Merge pull request #12 from fmder/vimba-errormorefigs
Print the error message to console
2015-01-28Initialized the error message for clearer outputFrançois-Michel De Rainville
The exception now prints the message to console output: [...] raise VimbaException(errorCode) pymba.vimbaexception.VimbaException: Operation is invalid with the current access mode.
2015-01-26Fixed imports in READMEsFrançois-Michel De Rainville
2015-01-26Updated README.md as well for with statementFrançois-Michel De Rainville
2015-01-26Updated tests to use the with statementFrançois-Michel De Rainville
2015-01-26Updated README to use the with statementFrançois-Michel De Rainville
2015-01-26Added context management to the Vimba objectFrançois-Michel De Rainville
Allows clean shutdown when an exception is unhandled.