Skip to content

Commit c8471af

Browse files
committed
[ROS2] [Jazzy] Update OpenVINO installation steps for Ubuntu 24.04 and improve error message formatting in image processing servers
1 parent 5a77463 commit c8471af

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ubuntu-24.04-jazzy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ jobs:
4141
# https://docs.openvino.ai/2025/get-started/install-openvino/install-openvino-archive-linux.html
4242
sudo apt update && sudo apt install -y curl wget gnupg2 lsb-release
4343
wget https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.4/linux/openvino_toolkit_ubuntu24_2025.4.0.20398.8fdad55727d_x86_64.tgz
44-
tar -xf l_openvino_toolkit_ubuntu24_2025.4.0.20398.8fdad55727d_x86_64.tgz
45-
sudo mv l_openvino_toolkit_ubuntu24_2025.4.0.20398.8fdad55727d_x86_64 /opt/intel/openvino_2025
44+
tar -xf openvino_toolkit_ubuntu24_2025.4.0.20398.8fdad55727d_x86_64.tgz
45+
sudo mkdir -p /opt/intel
46+
sudo mv openvino_toolkit_ubuntu24_2025.4.0.20398.8fdad55727d_x86_64 /opt/intel/openvino_2025
4647
source /opt/intel/openvino_2025/setupvars.sh
4748
ls -lh /opt/intel/openvino_2025
4849

sample/src/image_object_server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ int main(int argc, char** argv)
4444
} catch (std::exception& e) {
4545
std::cout << e.what() << std::endl;
4646
} catch (...) {
47-
std::cout << "[ERROR] [frame_processing_server]: "
47+
std::cout << "[ERROR] [frame_processing_server]: "
4848
<< "exception caught" << std::endl;
4949
}
5050

sample/src/image_people_server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ int main(int argc, char** argv)
4444
} catch (std::exception& e) {
4545
std::cout << e.what() << std::endl;
4646
} catch (...) {
47-
std::cout << "[ERROR] [service_people_detection]: "
47+
std::cout << "[ERROR] [service_people_detection]: "
4848
<< "exception caught" << std::endl;
4949
}
5050

0 commit comments

Comments
 (0)