search for: opencv

Displaying 20 results from an estimated 37 matches for "opencv".

Did you mean: opencl
2013 Jul 30
0
CEBA-2013:1118 CentOS 6 opencv FASTTRACK Update
...Errata and Bugfix Advisory 2013:1118 Upstream details at : https://rhn.redhat.com/errata/RHBA-2013-1118.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: fb7055f2fcc955ae29a1a70cb4d2817c9c0844072cc6c4512b1dd2c07736ad65 opencv-2.0.0-12.el6.i686.rpm 112dab445e16aeed580a75a8ebea8a82b12f12fd6869a036f9b47f8de027171f opencv-devel-2.0.0-12.el6.i686.rpm 970386795a2beae78ab9536dea9ac3fe54acef4ac07c0966f2bfe3129baaf490 opencv-devel-docs-2.0.0-12.el6.noarch.rpm 322240955728dda1860a765469682d380dfae155e09d22b1c78e9bba6500b920 op...
2012 Nov 08
2
unable to load shared object - opencv
Hi all i'm trying to use the opencv's function into R. i wrote a simple script, just for try to understand how use 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> #inc...
2011 Jul 25
5
OpenCV and Ruby on Rails
Can I use OpenCV with Ruby on Rails? If so, how can I do that? Or, what resources do you recommend for that? Thanks. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to...
2013 Jul 30
0
CentOS-announce Digest, Vol 101, Issue 18
...1. CEBA-2013:1109 CentOS 6 xorg-x11-drv-mga Update (Johnny Hughes) 2. CEBA-2013:1112 CentOS 6 net-snmp Update (Johnny Hughes) 3. CESA-2013:1114 Important CentOS 6 bind Update (Johnny Hughes) 4. CESA-2013:1115 Important CentOS 5 bind97 Update (Johnny Hughes) 5. CEBA-2013:1118 CentOS 6 opencv FASTTRACK Update (Johnny Hughes) 6. CEBA-2013:1117 CentOS 6 python-urlgrabber FASTTRACK Update (Johnny Hughes) ---------------------------------------------------------------------- Message: 1 Date: Mon, 29 Jul 2013 11:53:32 +0000 From: Johnny Hughes <johnny at centos.org> Subject...
2011 Feb 15
3
[LLVMdev] Possible LLVM or DragonEgg bug
I'm getting the following error when compiling OpenCV 2.0 with OpenMP and SSE intrinsics enabled with GCC+DragonEgg(newest SVN version): /usr/lib64/ccache/c++ -Wall -Wno-long-long -pthread -ffunction-sections -D_GLIBCXX_PARALLEL -fopenmp -D__STDC_CONSTANT_MACROS -fplugin=/home/John/Documents/Project/DragonEgg/dragonegg/dragonegg.so -O3 -DNDEBUG...
2013 Mar 17
2
[LLVMdev] Running cross compiled binaries for ARM on gem5
Thanks Renato and Giang. I was able to run a simple HelloWorld program on gem5 (in SE mode) by using -target -arm-none-linux-gnueabi as the option during cross compilation. I am trying to cross compile some Computer Vision algorithms, which use OpenCV libraries, and I tried using the same command line options - clang++ *-emit-llvm -static -c -Wall -g -O0 -mfpu=vfp -mfloat-abi=soft -march=armv7-a -target arm-none-linux-gnueabi* -DCLOCK_GETTIME_TIMING -DOPENCV_2_4 -c ../MEVBench/Benchmarks/FeatureExtraction/FeatureExtraction.cpp -I/home/silky...
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...
2011 Feb 17
1
[LLVMdev] Possible LLVM or DragonEgg bug
...5:14 PM To: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Possible LLVM or DragonEgg bug This is hopefully fixed in the latest version of dragonegg. Thanks for reporting it! Ciao, Duncan. On 15/02/11 20:54, sabaliauskas g. (gs5g08) wrote: > I'm getting the following error when compiling OpenCV 2.0 with OpenMP and SSE intrinsics enabled with GCC+DragonEgg(newest SVN version): > > /usr/lib64/ccache/c++ -Wall -Wno-long-long -pthread -ffunction-sections -D_GLIBCXX_PARALLEL -fopenmp -D__STDC_CONSTANT_MACROS -fplugin=/home/John/Documents/Project/DragonEgg/dragonegg/dragonegg.so -O3...
2006 Jul 24
1
WebCam with OpenCV
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: enc_dec.zip Type: application/zip Size: 10525 bytes Desc: not available Url : http://lists.xiph.org/pipermail/theora/attachments/20060724/6355cb1b/enc_dec.zip
2011 Feb 16
0
[LLVMdev] Possible LLVM or DragonEgg bug
This is hopefully fixed in the latest version of dragonegg. Thanks for reporting it! Ciao, Duncan. On 15/02/11 20:54, sabaliauskas g. (gs5g08) wrote: > I'm getting the following error when compiling OpenCV 2.0 with OpenMP and SSE intrinsics enabled with GCC+DragonEgg(newest SVN version): > > /usr/lib64/ccache/c++ -Wall -Wno-long-long -pthread -ffunction-sections -D_GLIBCXX_PARALLEL -fopenmp -D__STDC_CONSTANT_MACROS -fplugin=/home/John/Documents/Project/DragonEgg/dragonegg/dragonegg.so -O3...
2011 Mar 15
1
How to make sure R's g++ compiler uses certain C++ flags when making a package
I am trying to use some code from opencv in an r package, using Rcpp to build the package. When I compile the c code on my machine, it works fine. However, when I try to include it in my package, it gives me a bunch of error messages like: "error: opencv2/core/operations.hpp: No such file or directory" Does anyone know how to...
2013 Mar 18
0
[LLVMdev] Running cross compiled binaries for ARM on gem5
On 17 March 2013 22:40, SArora <silkyar at umich.edu> wrote: > However, this errors out saying > > > /home/silky/VecProject/opencv/OpenCVInstall/arm/include/opencv2/core/mat.hpp:117:9: > error: cannot compile this atomic library call yet > CV_XADD(refcount, 1); > ^~~~~~~~~~~~~~~~~~~~ > > /home/silky/VecProject/opencv/OpenCVInstall/arm/include/opencv2/core/operations.hpp:61:38: > note: expanded...
2013 Mar 11
0
[LLVMdev] Running cross compiled binaries for ARM on gem5
Hi Silky, If I got correctly, you seem to be trying to run a bare-metal image on your model, but you compile with linux-gnueabi GCC. I don't know if that will make a difference, but I'd try to use none-eabi GCC toolchain and set the -target armv7a-none-eabi just in case. On 10 March 2013 00:26, Silky Arora <silkyar at umich.edu> wrote: > Most of the search results talk about
2016 Jul 24
2
Vision por computador
Saludos a todos y todas estoy comandando a estudiar vision por computador con opencv y python, que paquete recomendarian para empezar a experimentar esta area con R. Saludos cordiales [[alternative HTML version deleted]]
2013 Mar 10
2
[LLVMdev] Running cross compiled binaries for ARM on gem5
Hi, I am trying to optimize some benchmarks using LLVM and run them on gem5 simulator (build for ARM). I am using Sourcery Codebench cross-compiler for ARM on my x-86 machine. My steps up till now have been using the following commands. 1. clang -static -emit-llvm -march=armv7-a -mfloat-abi=soft -target arm-elf a.cpp -c -integrated-as \
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 clan...
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 clan...
2008 Apr 08
1
anoncvs.mindrot.org changes
Hi, I have just converted anoncvs.mindrot.org from using GNU CVS to OpenCVS. The latter is quite a bit nicer to run as an anoncvs server, and it doesn't require write access to the repository like GNU CVS seems to. The only visible change from this should be that checkouts of particular tags or dates should now work (I didn't know they failed until today). If yo...
2013 Mar 18
2
[LLVMdev] Running cross compiled binaries for ARM on gem5
On 03/18/2013 10:28 AM, Renato Golin wrote: > On 17 March 2013 22:40, SArora <silkyar at umich.edu > <mailto:silkyar at umich.edu>> wrote: > > However, this errors out saying > > /home/silky/VecProject/opencv/OpenCVInstall/arm/include/opencv2/core/mat.hpp:117:9: > error: cannot compile this atomic library call yet > CV_XADD(refcount, 1); > ^~~~~~~~~~~~~~~~~~~~ > /home/silky/VecProject/opencv/OpenCVInstall/arm/include/opencv2/core/operations.hpp:61:38: >...
2006 Oct 28
0
Need help - Install Driver for Video Capture Card
...eo card. I have physically installed two video capture card on two different computers. Both running Linux CentOS release 4.4 (final), and kernel 2.6.9-42.0.3.ELsmp. The first computer is Pentium D 3.00 GHz, 1Gbyte RAM. The second computer is AMD Athlon 2800+, 1 Gbyte RAM. I succesfully installed opencv-0.9.7 on both computers with gtk+ 2.x, libjpeg, zlib, libpng, libtiff, ffmpeg, dc1394, raw1394 and V4L pre-installed. Opencv running very well on both computers. I installed Hauppauge ImpactVCB (model 558) on Pentium D machine, while on Athlon machine, I installed I-O Data GV-VCP2M/PCI. After phy...