Символ .pdb не загружается, хотя я добавил настройки Сервиса -> Отладка - PullRequest
1 голос
/ 27 апреля 2020

enter image description here Я работаю над своими проектами, но весь код, который я сделал, не будет работать из-за символов Unloaded .pdb. Подскажите что мне делать: (

это код

#include <iostream>
#include "opencv2/opencv.hpp"
#include "opencv2/core.hpp"

using namespace cv;
using namespace std;

int main()
{
    bool showLogTransformedHuMoments = true;
    string filename("D:\KULIAH\TA\database\F1\frame_v_thres.jpg");
    Mat im1 = imread(filename, IMREAD_GRAYSCALE);
    threshold(im1, im1, 0, 255, THRESH_OTSU);

    Moments moment = moments(im1, false);

// Calculate Hu Moments calculates the Hu moment
double huMoments[7];
HuMoments(moment, huMoments);

// Print Hu Moments
cout << filename << ": ";

for (int i = 0; i < 7; i++)
{
    if (showLogTransformedHuMoments)
    {
        // Log transform Hu Moments to make squash the range
        cout << -1 * copysign(1.0, huMoments[i]) * log10(abs(huMoments[i])) << " ";
    }
    else
    {
        // Hu Moments without log transform.
        cout << huMoments[i] << " ";
    }
}
// One row per file
cout << endl;
}

это ошибка:

'matchshapes.exe' (Win32): Unloaded 'C:\Windows\System32\winmmbase.dll'
'matchshapes.exe' (Win32): Unloaded 'C:\Windows\System32\winmmbase.dll'
'matchshapes.exe' (Win32): Unloaded 'C:\Windows\System32\atig6txx.dl
...