CvFileStorage. How to save our custom structures with OpenCV functions
In this tutorial we go to show how to save our custom structures with opencv functions.
We go to imagine we have this structure in our program.
In this tutorial we go to show how to save our custom structures with opencv functions.
We go to imagine we have this structure in our program.
In Computer Vision works in a lot of cases with gray images because there are a lot of motives. But human vision don’t perceives the gray levels so well as color levels.
Then if we need show a image to a person, we can color it. But, how is the best way to coloring gray image?
There [...]
Neuroph is a Neural network for image recognition in java. In netbeans dzone are a netbeans/java tutorial for image recognition with neuroph library.
Today is born the new e-learning platform. Chamilo!
Chamilo is a new project that opts for open source in a radical way. It aims at bringing you the best e-learning and collaboration platform in the open source world.
In this tutorial i go to explain how to image segmentation or detect objects byred color, in this case by red color.
This task is simple, but there are some things we must known.
Now i go to explain and get a demo code for segmentation, how to determine if each image pixel is red or no, [...]
In unix the end of line is different than other systems. More times we edit windows files and when open in VI/VIM we see the ^M character at end of lines.
We can remove this characters with a simply search and replace of vim with this command:
:%s/^M//g
The ^M character is not valid write first ^ character [...]
Today i try install OpenCv in my MacOs Snow Leopard 10.6 and have this error:
error: CPU you selected does not support x86-64 instruction set
The searching in google have the solution
go to opencv folder and edit configure file, searchi prescott and replace the line
DEFAULT_CXXFLAGS=”-g -march=prescott -ffast-math -fomit-frame-pointer $DEFAULT_CXXFLAGS”
with this:
DEFAULT_CXXFLAGS=”-g -march=i686 -m32 -ffast-math -fomit-frame-pointer $DEFAULT_CXXFLAGS”
But when [...]
Piponazo have a wonderful spanish tutorial explianing how use Exuberant CTags in vim with a opencv as example and some tips for correct import ctags of opencv.
Exuberant Ctags tutorial. “La plaga Tux”
Thanks Piponazo.
This tutorial explain the basics of background substraction. First of all we need define what is a background and what is a foreground.
We consider a background the pixels of image without motion. And a foreground the pixels with motion. Then the simplest background model assume each background pixel his brightness varies independently with normal distribution. [...]
This is the question: can be Blender a powerful tool for computer vision with OpenCv.
Blender is now a powerful suite of 3d content creation, where have a various characteristich as animation, composit, shade, model, texture, interactive … And OpenCV is ga powerful realtime library for computer Vision.
Then my goal is provide a new and powerfull [...]
Last comments