Click here to Skip to main content
15,915,019 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
AnswerRe: Error while sending e-mail Pin
adslccn19-Dec-09 17:05
adslccn19-Dec-09 17:05 
Questionregarding reading elements to array from dialog Pin
sriharichowdary10-Dec-09 22:23
sriharichowdary10-Dec-09 22:23 
AnswerRe: regarding reading elements to array from dialog Pin
cjoki22-Dec-09 4:29
cjoki22-Dec-09 4:29 
Questiona block problem Pin
mark_zxy10-Dec-09 16:35
mark_zxy10-Dec-09 16:35 
AnswerRe: a block problem Pin
shawndeprey10-Dec-09 17:12
shawndeprey10-Dec-09 17:12 
GeneralRe: a block problem Pin
mark_zxy10-Dec-09 18:36
mark_zxy10-Dec-09 18:36 
GeneralRe: a block problem Pin
shawndeprey11-Dec-09 1:57
shawndeprey11-Dec-09 1:57 
Questionhow to implement live video streaming for website in ubuntu ? Pin
Mahanthesh8-Dec-09 15:29
Mahanthesh8-Dec-09 15:29 
AnswerRe: how to implement live video streaming for website in ubuntu ? Pin
Mahanthesh8-Dec-09 16:37
Mahanthesh8-Dec-09 16:37 
GeneralRe: how to implement live video streaming for website in ubuntu ? Pin
cjoki9-Dec-09 7:55
cjoki9-Dec-09 7:55 
Questionredirecting to a web page using a loop [modified] Pin
ankitjain11104-Dec-09 22:15
ankitjain11104-Dec-09 22:15 
AnswerRe: redirecting to a web page using a loop Pin
ankitjain11104-Dec-09 22:53
ankitjain11104-Dec-09 22:53 
GeneralRe: redirecting to a web page using a loop Pin
cjoki7-Dec-09 7:41
cjoki7-Dec-09 7:41 
Questionhow can I bound execution of sql query on button click action ? Pin
hande5430-Nov-09 7:15
hande5430-Nov-09 7:15 
AnswerRe: how can I bound execution of sql query on button click action ? Pin
cjoki30-Nov-09 7:35
cjoki30-Nov-09 7:35 
AnswerRe: how can I bound execution of sql query on button click action ? Pin
abushahin28-Dec-09 7:35
abushahin28-Dec-09 7:35 
QuestionExtend PHPMyAdmin Token Pin
Marc Firth30-Nov-09 0:42
Marc Firth30-Nov-09 0:42 
AnswerRe: Extend PHPMyAdmin Token Pin
Marc Firth9-Dec-09 23:17
Marc Firth9-Dec-09 23:17 
AnswerRe: Extend PHPMyAdmin Token Pin
kpkammer24-Mar-10 4:59
kpkammer24-Mar-10 4:59 
GeneralRe: Extend PHPMyAdmin Token Pin
Marc Firth7-Apr-10 2:29
Marc Firth7-Apr-10 2:29 
QuestionHow can I send e-mail with gmail account Pin
hande5429-Nov-09 23:34
hande5429-Nov-09 23:34 
AnswerRe: How can I send e-mail with gmail account Pin
Marc Firth30-Nov-09 0:48
Marc Firth30-Nov-09 0:48 
AnswerRe: How can I send e-mail with gmail account Pin
Marc Firth30-Nov-09 0:50
Marc Firth30-Nov-09 0:50 
GeneralRe: How can I send e-mail with gmail account Pin
hande5430-Nov-09 7:07
hande5430-Nov-09 7:07 
Questionopencv in codeblocks - compile error Pin
__erfan__29-Nov-09 21:37
__erfan__29-Nov-09 21:37 
hi i am using codeblocks and i want to use opencv to capture video and image and ... .

this is the program :

//------------------------------------
#include < iostream >

using namespace std;

#include "cv.h"
#include "highgui.h"

int main()
{
IplImage* img;
img = cvLoadImage("lena.bmp", 1);
cvNamedWindow("window", 1);
cvShowImage("window", img);
cvWaitKey(0);
cvDestroyWindow("window");
cvReleaseImage(&img);
return 0;
}
//------------------------------------

but there is a compilation error :

../../../../../../usr/local/lib/libcxcore.so||undefined reference to `gzeof'|
../../../../../../usr/local/lib/libcxcore.so||undefined reference to `gzopen'|
../../../../../../usr/local/lib/libcxcore.so||undefined reference to `gzclose'|
../../../../../../usr/local/lib/libcxcore.so||undefined reference to `gzrewind'|
../../../../../../usr/local/lib/libcxcore.so||undefined reference to `gzgets'|
../../../../../../usr/local/lib/libcxcore.so||undefined reference to `gzputs'|
||=== Build finished: 6 errors, 0 warnings ===|


i used this instructions to install the downloaded package : (OpenCV-2.0.0.tar.bz2)
1. tar -xjf OpenCV-2.0.0.tar.bz2

2. mkdir opencv.build

3. cd opencv.build

4a. cmake [<extra_options>] ../OpenCV-2.0.0 # CMake-way

or

4b. ../OpenCV-2.0.0/configure [<extra_options>] # configure-way

5. make -j 2

6. sudo make install

7. sudo ldconfig # linux only

and i set the codeblocks envierment parameters as is shown in this page :
http://opencv.willowgarage.com/wiki/CodeBlocks

any suggestion?!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.