1

こんにちは、aruco を使用するとエラーが発生します。チュートリアルの作業から例を取得しようとしています。チュートリアルに従ってすべてを行いましたが、次のようになります。

    /home/pi/Programs/markerDetection/markerDetection.cpp: In function ‘int main(int, char**)’:
/home/pi/Programs/markerDetection/markerDetection.cpp:26:104: error: invalid initialization of reference of type ‘cv::Ptr<cv::aruco::Dictionary>&’ from expression of type ‘cv::aruco::Dictionary’
   aruco::detectMarkers(inputImage, dictionary, markerCorners, markerIds, parameters, rejectedCandidates);
                                                                                                        ^
In file included from /home/pi/Programs/markerDetection/markerDetection.cpp:6:0:
/home/pi/opencv/include/opencv2/aruco.hpp:176:19: note: in passing argument 2 of ‘void cv::aruco::detectMarkers(cv::InputArray, cv::Ptr<cv::aruco::Dictionary>&, cv::OutputArrayOfArrays, cv::OutputArray, const cv::Ptr<cv::aruco::DetectorParameters>&, cv::OutputArrayOfArrays)’
 CV_EXPORTS_W void detectMarkers(InputArray image, Ptr<Dictionary> &dictionary, OutputArrayOfArrays corners,
                   ^
CMakeFiles/marker.dir/build.make:54: recipe for target 'CMakeFiles/marker.dir/markerDetection.cpp.o' failed
make[2]: *** [CMakeFiles/marker.dir/markerDetection.cpp.o] Error 1
CMakeFiles/Makefile2:60: recipe for target 'CMakeFiles/marker.dir/all' failed
make[1]: *** [CMakeFiles/marker.dir/all] Error 2
Makefile:76: recipe for target 'all' failed
make: *** [all] Error 2

私のコードは次のとおりです。

#include "opencv2/opencv.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/imgcodecs.hpp"
#include "opencv2/videoio/videoio.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/aruco.hpp"
#include <vector>

using namespace cv;
using namespace std;

int main (int argc, char** argv)
{
        VideoCapture cap;

        if(!cap.open(0)){
                return 0;
        }
        for(;;){
                Mat inputImage;
                cap >> inputImage;
                vector< int > markerIds;
                vector< vector<Point2f> > markerCorners, rejectedCandidates;
                aruco::DetectorParameters parameters;
                aruco::Dictionary dictionary = aruco::getPredefinedDictionary(aruco::DICT_6X6_250);
                aruco::detectMarkers(inputImage, dictionary, markerCorners, markerIds, parameters, rejectedCandidates);
                Mat outputImage;
                aruco::drawDetectedMarkers(outputImage, markerCorners, markerIds);
                if(inputImage.empty()) break;
                imshow("Webcam", outputImage);
                if(waitKey(1) >= 0) break;
        }

        return 0;
}

インクルードが多すぎて、コードに何らかの作業が必要であることはわかっていますが、コンパイルする必要があるだけで、そこで何が起こっているのかわかりません。機能が変わった?

4

3 に答える 3

0

インクルードファイルがいくつかありませんでした。これらは私が今持っているものです:

#include "opencv2/aruco.hpp"
#include <iostream>
#include <stdio.h>
#include <opencv2/highgui.hpp>
#include "opencv2/imgcodecs.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/core.hpp"
#include "opencv2/videoio/videoio.hpp"
#include <vector>

ライブラリは次のとおりです (これらは Project-> Properties->settings->Linker->Input に含まれています):

opencv_core450.lib
opencv_highgui450.lib
opencv_objdetect450.lib
opencv_videoio450.lib
opencv_imgproc450.lib
opencv_imgcodecs450.lib
opencv_aruco450.lib
opencv_core450d.lib
opencv_highgui450d.lib
opencv_objdetect450d.lib
opencv_videoio450d.lib
opencv_imgproc450d.lib
opencv_imgcodecs450d.lib
opencv_aruco450d.lib

私が知る限り、opencv_aruco450.lib は適切に保存されていませんでした。これは私の問題でした。

于 2021-03-02T12:13:03.050 に答える
0

私はあなたと同じ問題を抱えていました。トリックを行ったのは次のとおりです。

それ以外の:

aruco::DetectorParameters parameters;
aruco::Dictionary dictionary=aruco::getPredefinedDictionary(aruco::DICT_6X6_250);

使用する:

cv::Ptr<aruco::DetectorParameters> parameters;
cv::Ptr<aruco::Dictionary> dictionary=aruco::getPredefinedDictionary(aruco::DICT_6X6_250);

お役に立てば幸いです。

于 2016-05-09T18:24:59.117 に答える