I wrote pieces of code two different ways: using 2-dimensional array as matrix, and using boost::ublas::matrix. When I'm adding this object to in the first case it is working, but in the second I'm getting a segmentation fault. I want to use the second way, so if anybody knows why am I getting the segfault I'll be grateful.
The code:
img.h
#include <Magick++.h>
#include <string>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/io.hpp>
using namespace boost::numeric::ublas;
using namespace std;
using namespace Magick;
class Img
{
public:
Img();
Img(const string path2file);
unsigned int width, height;
string filename;
private:
typedef struct pix
{
Quantum R;
Quantum G;
Quantum B;
} pix;
matrix<pix> p;
pix **pixels;
string format;
};
img.cpp
Img::Img(const string path2file)
{
Image file;
unsigned int i, j;
Color pixel;
file.read(path2file);
filename = path2file;
width = file.size().width();
height = file.size().height();
// begin of first way
pixels = (pix**)malloc(sizeof(pix*)*height);
for(i=0 ; i<height ; ++i)
pixels[i] = (pix*)malloc(sizeof(pix)*width);
for(i=0 ; i<height ; ++i)
{
for(j=0 ; j<width ; ++j)
{
pixel = file.pixelColor(j, i);
pixels[i][j].R = pixel.redQuantum();
pixels[i][j].G = pixel.greenQuantum();
pixels[i][j].B = pixel.blueQuantum();
}
}
// end of first way
// begin of second way
p.resize(height, width);
for(i=0 ; i<height ; ++i)
{
for(j=0 ; j<width ; ++j)
{
pixel = file.pixelColor(j, i);
p(i, j).R = pixel.redQuantum();
p(i, j).G = pixel.greenQuantum();
p(i, j).B = pixel.blueQuantum();
}
}*/
}
// end of second way
I'm pretty sure that this code isn't the cause of the segfaults. But when I use it in the main program I'm getting segfaults (only for second way, first is working):
main.cpp
#include <iostream>
#include <stdio.h>
#include "img.h"
#include <vector>
using namespace std;
int main(void)
{
std::vector<Img> files;
files.push_back(Img("files/mini.bmp"));
return 0;
}
Imgobject by itself instead of adding it to the vector directly. That will help you determine whether adding the object to the vector is really the problem, as you said it is. – Rob Kennedy Jan 14 '11 at 21:13matrixthe way to you are building it first. Then you can worry about whether you are copying it correctly second. (By the way, the pointer version is probably more efficient since it's not copying a whole matrix; make sure your destructor frees the memory though. And don't usemalloc()in a C++ program!) – chrisaycock Jan 14 '11 at 21:45