Here’s a simple key handle in Pygame wheres you move a circle using keyboard. import pygame from pygame.locals import * def main(): x,y = (100,100)…
Here’s a simple key handle in Pygame wheres you move a circle using keyboard. import pygame from pygame.locals import * def main(): x,y = (100,100)…
Here a simple OpenCV example of separation of a image into its hue, saturation and value channels. #include #include #include int main( int argc, char…
This is a very simple example of how to open two images and display them added. I got two pictures at project Commons from Wikimedia…
This is a simple example of how pass edge detection in a video using OpenCV. It uses the built-in OpenCV Canny edge detector algorithm. #include…
humanidade, upload feito originalmente por Silveira Neto.
Here’s a simple video player that also performs facial detection thought the Open Computer Vision Library. Here’s a code developed using codes from nashruddin.com and…
I found this useful tip about how to convert videos to watch on Nokia n800 using Mencoder. mencoder input.ogg -vf scale=400:240 -oac mp3lame -ovc lavc…
Amazing video showing our DNA synthesis as a Turing-machine-like.
Hi guys from Mayflower! Thanks for the free Zend Framework poster. It’s great.
Using reflection to change the accessibility of a private object field and access it at runtime. import java.lang.reflect.Field; class Life { private int meaning =…