stable

pcl-1.15.0-3.fc43

FEDORA-2026-9715dce5c6 created by cottsay a month ago for Fedora 43

Add missing dependency from pcl-devel to libusbx-devel.

How to install

Updates may require up to 24 hours to propagate to mirrors. If the following command doesn't work, please retry later:

sudo dnf upgrade --refresh --advisory=FEDORA-2026-9715dce5c6

This update has been submitted for testing by cottsay.

a month ago

This update's test gating status has been changed to 'ignored'.

a month ago
User Icon lrossett commented & provided feedback a month ago
karma

Tested it with the following source code:

#include <iostream>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>

int main() {
    pcl::PointCloud<pcl::PointXYZ> cloud;

    // Create 5 sample points
    cloud.width = 5;
    cloud.height = 1;
    cloud.points.resize(cloud.width * cloud.height);

    for (std::size_t i = 0; i < cloud.points.size(); ++i) {
        cloud.points[i].x = 1024 * rand() / (RAND_MAX + 1.0f);
        cloud.points[i].y = 1024 * rand() / (RAND_MAX + 1.0f);
        cloud.points[i].z = 1024 * rand() / (RAND_MAX + 1.0f);
    }

    std::cout << "Generated " << cloud.points.size()
              << " points:" << std::endl;

    for (const auto& point : cloud.points) {
        std::cout << "("
                  << point.x << ", "
                  << point.y << ", "
                  << point.z << ")" << std::endl;
    }

    return 0;
}

compiled and executed:

$ g++ test_pcl.cpp -o test_pcl $(pkg-config --cflags --libs pcl_common pcl_io)
$ ./test_pcl 
Generated 5 points:
(0.352222, -0.151883, -0.106395)
(-0.397406, -0.473106, 0.292602)
(-0.731898, 0.667105, 0.441304)
(-0.734766, 0.854581, -0.0361733)
(-0.4607, -0.277468, -0.916762)

This update has been pushed to testing.

a month ago

This update can be pushed to stable now if the maintainer wishes

a month ago

This update has been submitted for stable by cottsay.

a month ago

This update has been pushed to stable.

a month ago

Please log in to add feedback.

Metadata
Type
bugfix
Karma
1
Signed
Content Type
RPM
Test Gating
Autopush Settings
Unstable by Karma
-2
Stable by Karma
2
Stable by Time
7 days
Dates
submitted
a month ago
in testing
a month ago
in stable
a month ago
approved
a month ago

Automated Test Results