0

So I am able to compile and execute this c++ program which uses OpenCV on Nvidia hardware.

#include <cudnn.h>
#include <iostream>
#include <opencv2/opencv.hpp>

cv::Mat ldimag(const char* image_path){
    cv::Mat image = cv::imread(image_path);
    image.convertTo(image, CV_32FC3);
    cv::normalize(image, image, 0, 1, cv::NORM_MINMAX);
    return image;
}

int main(void){
    cudnnHandle_t cudnn;
    cudnnCreate(&cudnn);
    cv::Mat image = ldimag("conure.jpg");
    return 0;
}

However i get the following OpenCV-related warnings when it compiles;

enter image description here

Environment:

  • Ubuntu 18.04
  • Nvidia Jetson Xavier NX
  • ARM64
  • OpenCV 4.2.0

I do not want to ignore these warnings. Anybody understand this issue?

Christoph Rackwitz
  • 11,317
  • 4
  • 27
  • 36
Mostafa Mohsen
  • 43
  • 1
  • 12