I realise that this question has been asked before. I've read the answers and tried the solution but it hasn't solved it for me.

I'm using OpenCV 2.1 in Ubuntu 10.10(32-bit) and Eclipse C IDE.

My Problem:

If i read a text line from a file, and store it in a char* variable and pass this to cvLoadImage, I get nothing. the text line i read from the file is a fully defined file path to a certain image.

here's the code:

FILE *f = fopen("./input.txt","r");
char img1[50];
fgets(img1,50,f);
char* img3 = strtok(img1,"\n");
IplImage* frame = cvLoadImage(img3);

the result is that frame is now 0x00000000 and no picture

BUT

If I pass the same text as a argument to the executable, i can store argv[1] into a char* and pass that to cvLoadImage() and it reads the image as expected.

here's the code:

char* img3 = argv[1];
IplImage* frame = cvLoadImage(img3);

I'm not sure what the cause of this is. :s

the string passed as argument and in file is exactly: (including quotes) "/home/atharva/Documents/FYP/1a.jpg"

Thanks

link|improve this question

also wanted to ask another question: Is there a better way to read a line from text file without the new line character or to determine the length and then store in a variable? thanks – AtharvaI Feb 10 '11 at 22:56
feedback

1 Answer

up vote 2 down vote accepted

You need to remove the quotes from the string in the file. The quotes are only needed for the shell's parser to get the path properly into the program's argv list in the first place -- and even then only really necessary if the file path has embedded spaces.

Since fgets() reads an entire line of text (up to the \n), there's no need to quote anything (although 50 chars isn't much for a file path -- you might want to increase that buffer size). And if it must be quoted in the file for some reason, then you need to remove them before passing it on to cvLoadImage().

link|improve this answer
@Chris Lutz: No, if the filename is larger than the buffer size strtok() will return the truncated filename. It will, however, return NULL if the input file contains an empty line. – caf Feb 10 '11 at 23:24
Thanks. Worked. its so simple, should have realised it – AtharvaI Feb 10 '11 at 23:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.