![]() |
IPSDK
4_1_0_2
IPSDK : Image Processing Software Development Kit
|
Application used to launch IPSDK Explorer. More...
Application used to launch IPSDK Explorer.
IPSDK Explorer is a Python application provided with IPSDK. Although it can be called directly from a python interpreter, this application provides a more user friendly approach to launch IPSDK Explorer as a standard binary file.
In addition, this application checks is a valid path to a python executable is defined. If not, the user is asked to specify one.
Please, keep in mind that this application purpose is to create a new process to launch the Explorer software in a Python environment. If an the program encountered an unhandled error and crashes, Windows users can find the log file in the directory C:<USER><VERSION><VERSION>_x64. Linux users will find this log in the directory $HOME/.local/ReactivIP/IPSDK_<VERSION><VERSION>_x64. The ile name has the format Explorer_YYYY-MM-DD_HH-mm-ss.log
It is also possible to call the application with argument, see below for more details.
The application can be called through a command line as follows:
<application_exe_filename> [--pythonPath <path_to_python_executable>]
Arguments:
--pythonPath valid path to python executable
(optional; WARNING: it a path already exists, it will be replaced by the new path). Please, avoid '\\'
--enableDebugMode enables debug mode (for Windows only).
Enabling debug mode does not hide the console (optional; the debug mode is disabled by default)To run IPSDK explorer, you need several modules. We recommend to create a specific environment if you fear to break an existing configuration. The versions we tested are:
A file called requirements.txt is provided to help configuring a python environment. This file is located in <IPSDK_ROOT_DIR>/python/Explorer for a ToolKit/Partner installation and in <IPSDK_ROOT_DIR>/Explorer in an IPSDKExplorer standalone installation, where <IPSDK_ROOT_DIR> is the IPSDK root installation directory. Assuming the current directory is IPSDK Explorer's folder, you can use this file to directly install all IPSDK Explorer's dependancies with the command:
pip install -r requirements.txt
1.8.14