본문 바로가기
작업

error: conversion from ‘const cv::Mat’ to non-scalar type IplImage {aka _IplImage}’ requested

by 저녁추천좀 2020. 6. 25.
/usr/local/include/dlib/opencv/cv_image.h:37:29: error: conversion from ‘const cv::Mat’ to non-scalar type ‘IplImage {aka _IplImage}’ requested
             IplImage temp = img;

cv_image.h의 37번째 라인 수정

            IplImage temp = img;

에서

            IplImage temp = cvIplImage(img);

'작업' 카테고리의 다른 글

ubuntu sudo chrome  (0) 2020.08.03
NVIDIA cuda X server error  (0) 2020.07.30
ubuntu16.04 g++6 설치  (0) 2020.06.12
CircleCI 로 내 git private repo 를 submodule로 사용하기  (0) 2020.06.09
ubuntu 16.04 chrome이 열리지 않을 때  (0) 2020.06.04