【发布时间】:2015-01-27 00:51:28
【问题描述】:
我正在尝试使用 Magick++ 库编译我的 C++ 代码,以使用 openMPI 以分布式方式操作图像,当我尝试编译它时遇到一些错误。
这是我的代码:
#include "mpi.h"
#include <stdio.h>
#include <iostream>
#include <Magick++.h>
using namespace std;
using namespace Magick;
int main(int argc, char **argv){
int rank, numtask;
InitializeMagick(*argv);
Image image;
try {
// Read a file into image object
image.read( "test_image.jpg" );
image.type( GrayscaleType );
Blob blob;
image.magick( "JPEG" ); // Set JPEG output format
image.write( &blob );
}
catch( Exception &error_ ){
cout << "Caught exception: " << error_.what() << endl;
return 1;
}
//Now in the "distributed enviroment" I just print an hello world to test it.
MPI_Init(&argc,&argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &numtask);
cout<<"HelloWorld\n";
MPI_Finalize();
}
这是我在 shell 上输入的命令
mpiCC openmpi_project.cc -o openmpi_project
这是shell的输出
openmpi_project.cc:(.text+0x1d): 未定义的引用 "Magick::InitializeMagick(char const*)"
openmpi_project.cc:(.text+0x29): 未定义的引用 "魔术::Image::Image()"
openmpi_project.cc:(.text+0x5d): 未定义的引用 "Magick::Image::read(std::string const&)"
openmpi_project.cc:(.text+0x86): 未定义的引用 "Magick::Image::type(MagickCore::ImageType)"
openmpi_project.cc:(.text+0x92): rundefined 引用 "魔术::Blob::Blob()"
openmpi_project.cc:(.text+0xc6): 未定义的引用 "Magick::Image::magick(std::string const&)"
openmpi_project.cc:(.text+0xf1): 未定义的引用 "Magick::Image::write(Magick::Blob*)"
openmpi_project.cc:(.text+0xfd): 未定义的引用 "魔术::Blob::~Blob()"
openmpi_project.cc:(.text+0x158): 未定义的引用 "魔术::Image::~Image()"
openmpi_project.cc:(.text+0x1d3): 未定义的引用 "魔术::Blob::~Blob()"
openmpi_project.cc:(.text+0x261): 未定义的引用 "魔术::Image::~Image()"
/tmp/ccqFzUdy.o:(.gcc_except_table+0x58): 未定义的引用 “Magick::Exception 的类型信息”
【问题讨论】:
-
你链接到
imagemagick了吗? -
可能不会。我按照网站上的说明安装了 ImageMagick.tr.gz,然后将该库包含在我的项目中。如何检查或执行?
标签: c++ imagemagick openmpi magick++