zoukankan      html  css  js  c++  java
  • 【openCV学习笔记】【3】高斯模糊一张图片(_cvSmooth相关编译错误)

    代码如下:

    #include <iostream>
    #include <opencv/highgui.h>
    #include <opencv/cv.h>
    
    
    void example(IplImage* image)
    {
        // Create some windows to show the input
        // and output images in.
        //
        cvNamedWindow("Example2_4-in", CV_WINDOW_AUTOSIZE);
        cvNamedWindow("Example2_4-out", CV_WINDOW_AUTOSIZE);
        
        // Create a window to show our input image
        //
        cvShowImage("Example2_4-in", image);
        
        // Create an image to hold the smoothed output
        //
        IplImage* out = cvCreateImage(
                                      cvGetSize(image),
                                      IPL_DEPTH_8U,
                                      3
                                      );
        printf("%d %d", cvGetSize(image).height, cvGetSize(image).width);
        
        // Do the smoothing
        //
        cvSmooth(image, image, CV_GAUSSIAN, 3, 3);
        //cvSmooth(out, out, CV_GAUSSIAN, 3, 3);
        
        // Show the smoothed image in the output window
        //
        cvShowImage("Example2_4-out", out);
        
        // Be tidy
        //
        cvReleaseImage(&out);
        
        // Wait for the user to hit a key, then clean up the windows
        //
        cvWaitKey(0);
        cvDestroyWindow("Example2_4-in");
        cvDestroyWindow("Example2_4-out");
        
    }
    
    int main(int argc, char** argv)
    {
        IplImage* img = cvLoadImage("/Users/apple/Pictures/openCV/standard_img/lena.jpg");
        cvNamedWindow("Example1", CV_WINDOW_AUTOSIZE);
        cvShowImage("Example1", img);
        example(img);
        //  cvWaitKey(0);
        cvReleaseImage(&img);
        cvDestroyWindow("Example1");
    }

    起初编译时出现错误:

    Undefined symbols for architecture x86_64:
      "_cvSmooth", referenced from:
          _main in main.o
    ld: symbol(s) not found for architecture x86_64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

    在stackoverflow上一个回答非常给力。

    http://stackoverflow.com/questions/9219612/undefined-symbols-cvsmooth-in-opencv2-3-1-on-mac

    Add libopencv_imgproc.dylib to your Xcode project and you should be off to the races.

  • 相关阅读:
    USACO Meteor Shower
    小技巧—取模防负
    CSP-S2019 D2T1 Emiya家今天的饭
    重谈DFS序、时间戳和欧拉序
    JDOJ 1842 Magictree
    CSP-S2019 D1T1 格雷码
    洛谷 P3919 【模板】可持久化线段树 1(可持久化数组)
    node+express api编写实战(一):环境安装及启动
    宝塔pureftpd设置FTP后,可连接,但无法上传、新建、覆盖文件的解决方法
    flex布局、css3选择器
  • 原文地址:https://www.cnblogs.com/turtle920/p/4909215.html
Copyright © 2011-2022 走看看