Search found 1 match
- 2011-07-22T13:08:25-07:00
- Forum: Magick++
- Topic: ImageMagick and openMPI
- Replies: 0
- Views: 9398
ImageMagick and openMPI
I have a severe problem in my project. I need to send an image data to another node in the cluster. I read the images with ImageMagick, as like: Image testImage; // read in the file testImage.read("image.png"); And i send it as: MPI_Send( &testImage, sizeof(Image), MPI_BYTE, i , 100, MPI_COMM_WORLD ...