I know that "bus error" is often due to a programming errosr. But I really can not see such error in a three lines program :
int main(int argc, char** argv)
{
IplImage *src = cvLoadImage("/tmp/Name.tiff", CV_LOAD_IMAGE_COLOR);
IplImage* res = cvCreateImage( cvSize( 2, 2), IPL_DEPTH_8U, 3 );
cvSaveImage("/tmp/image.tiff", src);
return 0;
}
I compile with the following:
gcc -I/Library/Frameworks/OpenCV.framework/Versions/A/Headers /usr/local/lib/libopencv_* test.c
Execution gives bus error.
Very important: if I remove the second line (the call to cvCreateImage), it works with no problems.
I'm using opencv 2.3 and MacOs 10.8.5, gcc (i686-apple-darwin9-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5566)
-l, after your source file? (And do the headers you have there match to libraries you specify?) – Mat May 7 '12 at 11:56-f(ramework) option instead ? It's precisely made to deal with paths and libraries inside frameworks correctly – sansuiso May 7 '12 at 12:06