I share my experience
Computer
Computer related
TinyOgg! Watch Flash videos and enjoy freedom
Jan 6th
Free Image from search engine to use
Dec 31st
Sprixi site is one of the best search sites for free photos. It is very fast and provides high quality images and clear distinct from the rest of the other search sites, the site draws Sprixi search results from Flickr pictures and OpenClipArt.org and other sites that allow image review and upload .
Click to continue reading “Free Image from search engine to use”
Another un social networking
Dec 30th
This is another un-social networking solution which is focusing on deleting your data and friends from the famous social network Facebook. I think we are witness of a new wave of revolting people who really care about the privacy and social values in the real world.
Seppukoo means in Japanese “let’s make suicide”. I don’t understand this tendency to use such shocking words which I think are not adapted to the situation or the goal of the service. In the blog we presented “suicide machine” and now Seppukoo.
It is a kind of strange to find the same meaning and the same message in these two services. I hope that people don’t take the message as it is and misunderstand that it is a suicide in the virtual world or internet and it does not have any relationship with the real world.
PS: Thanks to Karim for drawing my attention to this service.
Color interpolation in OpenCV
Dec 23rd
I could not find in Internet a function which can return a RGB color value between two colors So I had to do it myself. I hope it will be useful for someone.
CvScalar interpolate(CvScalar c1, CvScalar c2, double value){
if( value < = 0.0 ){ return c1; }
if( value >= 1.0 ){ return c2; }
int red = cvRound((1.0 - value) * c1.val[2] + value * c2.val[2]);
int green = cvRound((1.0 - value) * c1.val[1] + value * c2.val[1]);
int blue = cvRound((1.0 - value) * c1.val[0] + value * c2.val[0]);
return CV_RGB(red, green, blue);
}




