Open DilaraAlbayrak opened 5 years ago
Can you be more specific? I have clicked given url and could not find the Gain example. Of course, it exists but it is an extensive menu and couldn't find direct link to the api.
For the docs accessed with the commands, is there a way for me to save it as text/pdf? It is not user friendly as it is.
Here's a specific link to the Gain example: https://docs.baslerweb.com/index.htm#t=en%2Fgain.htm Sample code is at the bottom of the page.
I also found some API information in a folder within Pylon Viewer, located here on the computer: C:\Program Files\Basler\pylon 6\Development\Documentation\PylonCppSDK
In a Debian install the C++ docs seem to end up here:
file:///opt/pylon5/share/doc/C++/index.html
I haven't found a pdf yet. Definitely not user-friendly.
Do you expect more of a "book-style" documentation?
The referenced index.html is the entry to the C++ API documentation on Linux. As pypylon is a python binding to our C++ API, All concepts are the same. For camera features accessed by pypylon, you should check docs.baslerweb.com to get your model-specific details.
Do you expect more of a "book-style" documentation?
The referenced index.html is the entry to the C++ API documentation on Linux. As pypylon is a python binding to our C++ API, All concepts are the same. For camera features accessed by pypylon, you should check docs.baslerweb.com to get your model-specific details.
Thanks for your prompt response! The C++ documentation is relatively good, and it works well to document the Python API. What I think is unfriendly to the user is that in order to find the documentation I had to:
?
menu entry.Then, since the documentation is in a series of web pages instead of a pdf it's more difficult to search. That's a relatively minor issue for me. If I could make one request it's that the SDK documentation be hosted online somewhere. (I realize that's not the responsibility of the pypylon repo, but just thought I'd say this while I have your attention).
Thanks for the feedback. We'll check better ways to link pypylon users to pylon c++ docu. The HTML based documentation has a quite good integrated search. It is in the top right of the screen.
is there currently a way to get the documentation without installing the software?
Basler's C++ API documentation is viewable at https://docs.baslerweb.com/pylonapi/cpp/ now.
We now have for every feature in the product documentation python c c++ and c# documentation
There are multiple documentation sources:
The camera features are provided dynamically by the camera itself [ genicam interface ] So you have to lookup the docmentation on https://docs.baslerweb.com
The syntax between C++ and python is nearly identical. So you can always use the C++ help snippets in the online-documentation
Example for Gain for an USB camera
Example for Gain for a GigE camera
The pypylon core, grabbing video and controlling the camera has integrated python docu:
pydoc pypylon.pylon
pydoc pypylon.genicam
although some of the docstrings do still reveal some of their C++ heritage ;-)