RSS
 

Archive for October, 2009

Online audio editor

22 Oct

Use Myna to remix music tracks and audio clips. Apply sound effects and record your own voice or instruments!

httpvh://www.youtube.com/watch?v=_3-VWMKpQiI

 

Online Excel Viewer

22 Oct

View your spreadsheets online by either of the following options. The supported file formats are: MS Excel (.xls), CSV (.csv) and OpenOffice Calc (.sxc) Documents.

 

Easy Online Word Processor

22 Oct

Create documents on the fly without having to sign up or login. You can export them in different formats too.

 

Online image editor

22 Oct

I discovered a good service to edit images online.

 

OpenCV: Converting image type

21 Oct

We can use the standard cvLoadImage and cvSaveImage to implement a image type converted using OpenCV library.

cvLoadImage and cvSaveImage support these image formats:
* Windows bitmaps – BMP, DIB;
* JPEG files – JPEG, JPG, JPE;
* Portable Network Graphics – PNG;
* Portable image format – PBM, PGM, PPM;
* Sun rasters – SR, RAS;
* TIFF files – TIFF, TIF.

For example, to implement JPG to TIFF converter:

IplImage* img = cvLoadImage( "blabla.jpg",1);
cvSaveImage( "blabla.tif", img );

[ad#AdBrite inline]

 
No Comments

Posted in OpenCV