search for: highgui

Displaying 5 results from an estimated 5 matches for "highgui".

Did you mean: highger
2012 Nov 09
3
Crash - cause 'memory not mapped'
i'm using the following c++ code using namespace std; #include <iostream> #include <stdio.h> #include <opencv/cv.h> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv/highgui.h> #include <opencv/cv.h> #include <R.h> #include <Rinternals.h> #include <Rmath.h> extern "C" { SEXP FiltroGaus(SEXP size1_r, SEXP size2_r, SEXP sigma_r) { int size1 = INTEGER(size1_r)[0]; int size2 = INTEG...
2012 Nov 08
2
unable to load shared object - opencv
...c++ in R, it loads an image and write it with a different name (i know it ), and then write "Hello, World". The file is names prova2.cpp (is the first time i try to use c++ ) #include <stdio.h> #include <opencv/cv.h> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv/highgui.h> #include <opencv/cv.h> #include <R.h> #include <Rinternals.h> extern "C" SEXP provaR(void) { cv::Mat gravit; gravit=cv::imread("imm.jpg"); cv::imwrite("imm_dop.jpg",gravit); Rprintf("Hello, Worl...
2013 Feb 19
0
[LLVMdev] LLVM/Clang 3.1: Add a new include path in a clang C++ based parser
Hi, I'm having troubles to add a custom include path to a clang based C++ parser. I'd like to properly support this opencv code under Linux: ... #include "cv.h" #include "highgui.h" ... This is what I'm using: TheCompInst->getHeaderSearchOpts().AddPath(StringRef("/usr/include/opencv"),clang::frontend::Quoted ,false, true, false, false, false); Note: I have tried also with clang::frontend::Angled without success. Can you see the problem? Could you...
2013 Feb 19
0
[LLVMdev] LLVM/Clang 3.1: Add a new include path in a clang C++ based parser
Hi, I'm having troubles to add a custom include path to a clang based C++ parser. I'd like to properly support this opencv code under Linux: ... #include "cv.h" #include "highgui.h" ... This is what I'm using: TheCompInst->getHeaderSearchOpts().AddPath(StringRef("/usr/include/opencv"),clang::frontend::Quoted ,false, true, false, false, false); Note: I have tried also with clang::frontend::Angled without success. Can you see the problem? Could you...
2006 Aug 24
1
trying to encode/decode videos using libtheora
...ied 2 things: to record a .ogg file and to write a libtheora decoder, using the encoded ogg_packets present in memory. The source code is here: http://opensvn.csie.org/ribamar/projects/streaming/cvaenc.c (it has a makefile in http://opensvn.csie.org/ribamar/projects/streaming/Makefile and requires highgui and opencv to compile, in debian and ubuntu with universe it must be trivial to install them with apt-get install libhighgui-dev libcv-dev) 1) generating the ogg files: ./cvaenc > a.ogg It generates this ogg file: http://opensvn.csie.org/ribamar/projects/streaming/a.ogg but mplayer can't...