LogicalErrorException on genicam call
See original GitHub issueHi,
When I started the callback.py from samples directory in the repository I gave an error in 18th line:
>>> genicam.Register(camera.GainRaw.Node, callback)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/dmirecki/miniconda3/envs/test/lib/python3.5/site-packages/pypylon/pylon.py", line 3768, in __getattr__
return self.GetNodeMap().GetNode(attribute)
File "/home/dmirecki/miniconda3/envs/test/lib/python3.5/site-packages/pypylon/genicam.py", line 1472, in GetNode
return _genicam.INodeMap_GetNode(self, Name)
_genicam.LogicalErrorException: Node not existing (file 'genicam_wrap.cpp', line 16600)
Do you have any idea what went wrong?
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:8
Top Results From Across the Web
Basler camera / pypylon: Logical error exception - Imaginghub
Hi, I've encountered a strange error in my python application. The function RetrieveResult(5000, pylon.TimeoutHandling_ThrowException).
Read more >Resolving the 'NodeMapFactory must be preprocessed before ...
Open ArenaView and connect to your camera. This will allow Arena SDK to cache the camera's XML file into the GENICAM_CACHE_V3_1 folder.
Read more >Basler pylon 2.0 - Media Performance Group
4.34 GenICam::LogicalErrorException Class Reference . . . . . . . . . . . . . . . . . . ....
Read more >How to use the pypylon.pylon.GrabStrategy_LatestImageOnly ...
To help you get started, we've selected a few pypylon examples, based on popular ways it is used in public projects. Secure your...
Read more >GENICAM_NAMESPACE Namespace Reference
GenICam's exception class. ... DECLARE_EXCEPTION (LogicalErrorException) ... Retrieve the path of the GenICam logging properties file. More.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hi,
The open has to be an uppercase Open. ( Relict from the C++ naming conventions used in pylon)
The error you see is the dynamic node lookup trying to find a node with the name open
Thies
satputeamit notifications@github.com schrieb am Fr., 10. Aug. 2018, 13:00:
You own a Basler USB3Vision camera. This camera respects the SFNC2.0 standard regarding the names of all features.
The code, that you use is possibly an example for a GigEVision device. [ Which is SFNC 1.x ]
If you want to modify your code use below tables.
There is also the feature “migrationModeEnable” on the USB3 Transportlayer to do the conversion on the fly…
excerpt from pylon C++ manual: