Table of contents
...
Note |
---|
Development with SDK ver.1.80 or later is only supported in the GUI environment of Linux OS. We cannot support development in Windows OS or CUI environments even if problems occur. Please use it for trial purposes until you install Linux OS. |
...
Code Block |
---|
sudo apt install unzip |
Note |
---|
Be sure to copy the SDK zip file into Ubuntu before extracting the zip file. If you extract it on another OS such as Windows and then move it to Ubuntu, it will not work properly. |
The preparation of the Docker environment on Linux OS is now complete. Proceed to "Prepare the build environment".
...
Code Block |
---|
sudo apt install unzip |
...
Note |
---|
Be sure to copy the SDK zip file into Ubuntu before extracting the zip file. If you extract it on another OS such as Windows and then move it to Ubuntu, it will not work properly. |
The preparation of the Docker environment on Windows OS is now complete. Proceed to "Prepare the build environment."
...
Info |
---|
・We cannot support operation in a CUI environment even if you contact us. ・If you develop using anything other than Visual Studio Code in a GUI environment, we cannot support it, so we recommend using Visual Studio Code. ・You must use When starting an ubuntu 18.04-based container with Visual Studio Code 1.85 or earlier. You will also need to downgrade the .devcontainer extension to 0.327.088 or later versions, an "Connect to an OS version not supported by Visual Studio Code?" message is displayed. Please press the allow button. |
For Windows, please download from the link below.
Visual Studio Code - Code Editing. Redefined
...
Code Block |
---|
sudo snap install --classic code |
You can downgrade the .devcontainer extension from below.
...
Next, install the Visual Studio Code Dev Containers extension. First, start Visual Studio Code. On Linux, you can start it by typing code in the terminal. Select extensions from the left menu and enter "Dev Containers" in the search window.
...
Code Block |
---|
cd [any folder] unzip iPRO_CAMERA_SDK_Vx_xx_Container.zip |
Info |
---|
Please replace the zip file name with the obtained SDK file. |
Change to the extracted directory.
Code Block |
---|
cd ${SDK_DIR} |
Using Visual Studio Code in a GUI environment
Start Visual Studio Code in ${SDK_DIR}
.
Code Block |
---|
code . |
Click the >< mark at the bottom left of the screen to open the command palette, then select "Reopen in Container".
...
Building the Docker image will begin according to .devcontainer/Dockerfile.
You can check the progress by clicking "Starting Dev container (Show logs)" at the bottom right.
Info |
---|
Please be patient as it may take some time the first time. |
...
Note |
---|
Be sure to copy the SDK zip file into Ubuntu before extracting the zip file. If you extract it on another OS such as Windows and then move it to Ubuntu, it will not work properly. |
Info |
---|
Please replace the zip file name with the obtained SDK file. |
Please place your developer license (development.key) in the SDK/conf folder.
...
Change to the extracted directory.
Code Block |
---|
cd ${SDK_DIR} |
Using Visual Studio Code in a GUI environment
Start Visual Studio Code in ${SDK_DIR}
.
Code Block |
---|
code . |
Info |
---|
If you are using Docker Desktop, start Visual Studio Code and open the |
Click the >< mark at the bottom left of the screen to open the command palette, then select "Reopen in Container".
...
Open the Terminal tab at the bottom right. Make sure that "bash" is displayed on the right side.
...
If bash is not displayed, press the "+" to the right of the section that says "Dev Containers" and select bash.
...
Building the Docker image will begin according to .devcontainer/Dockerfile.
You can check the progress by clicking "Starting Dev container (Show logs)" at the bottom right.
Info |
---|
Please be patient as it may take some time the first time. |
...
Preparation is complete when "Dev Container: iPRO Camera SDK" is displayed to the right of the >< mark at the bottom left of the screen.
...
Open the Terminal tab at the bottom right. Make sure that "bash" is displayed on the right side.
...
If bash is not displayed, press the "+" to the right of the section that says "Dev Containers" and select bash.
...
Configure the environment before making.
If you want to build an extension app for ambaCV2X
Info |
---|
Please check below for the SoC (ambaCV2X or ambaCV5X) of the camera you will be using. Installation conditions for applications - Technology Partner FAQ (En) - Confluence (atlassian.net) |
If you want to build an extension app for ambaCV2X
Code Block source setup_env.sh ipro-ambaCV2X
If you want to build an extension app for ambaCV5X
Code Block source setup_env.sh ipro-ambaCV5X
Info |
---|
When restarting the PC, you will need to configure the environment again before making. If you cannot make, please make sure that you have configured the environment. |
...
If you are creating a Python app for CV2x developed with SDK ver.1.80 or earlier and want to create an app for CV52 with SDK ver.2.00 or later, please also refer to this. |
Now you can build the app. As an example, if you want to build C/C++ skeleton_sample_app, move to the target directory and run make as shown below.
Code Block |
---|
cd ${SDK_DIR}/src/adamapp/skeleton_sample_app/
make |
Build the ambaCV2X and ambaCV5X extension apps into one file
This article explains how to combine ambaCV2X and ambaCV5X applications into one file. If there is no need to combine them into one file, there is no problem if you do not perform this. Build the ambaCV2X and ambaCV5X apps in advance. As an example, if you build Python's sqlite_app, the following files will be generated.
SQLiteSampleAppPy_V0_1_ambaCV2X.ext
SQLiteSampleAppPy_V0_1_ambaCV2X.zip
SQLiteSampleAppPy_V0_1_ambaCV5X.ext
SQLiteSampleAppPy_V0_1_ambaCV5X.zip
Nowapp, move to the target directory as shown below and run make pack.
Code Block |
---|
cd ${SDK_DIR}/src/adamapp-py/sqlite_app/
make pack |
If successful, the ambaCV2X and ambaCV5X apps will be combined into one file.
SQLiteSampleAppPy_V0_1_ambaCV2X5X.ext
SQLiteSampleAppPy_V0_1_ambaCV2X5X.zip
The above files are available for ambaCV2X and ambaCV5X cameras.
...
and run make as shown below.
Code Block |
---|
cd ${SDK_DIR}/src/adamapp/skeleton_sample_app/
make |
Build the ambaCV2X and ambaCV5X extension apps into one file
Please see here for details.
Operation check
Install the app in the .ext file you created on the camera and check that it works. Here, access the camera from a web browser as shown below and try installing it.
...