image processing with inbuilt libraries.
-
can image processing application b developed with the inbuilt libraries???i mean without using CIMG or other this kind ov libraries??? if anybody has done it...can they gimme the code of how to read and process an image???im doing a project in image processing,the project is conversion of monochrome film to colored! can v read a video im VC++?how to go abt it??? waitin for a prompt reply...my deadline is round the corner... thanx... Evil Bluez
-
can image processing application b developed with the inbuilt libraries???i mean without using CIMG or other this kind ov libraries??? if anybody has done it...can they gimme the code of how to read and process an image???im doing a project in image processing,the project is conversion of monochrome film to colored! can v read a video im VC++?how to go abt it??? waitin for a prompt reply...my deadline is round the corner... thanx... Evil Bluez
You are asking too many things,and you are also not clear about requirments too.:confused::confused: 1 For image processing there are no inbuilt libraries with visual studio. you need to write your own. 2 What you need to do with image ? which processing are required . Find it first , then search it in internet or post here. 3 What you mean by reading a video ?? just fopen and read ? or do you need to get the frames ? Both are possible . Next time when you post something please THINK. :-D
If u can Dream... U can do it
-
can image processing application b developed with the inbuilt libraries???i mean without using CIMG or other this kind ov libraries??? if anybody has done it...can they gimme the code of how to read and process an image???im doing a project in image processing,the project is conversion of monochrome film to colored! can v read a video im VC++?how to go abt it??? waitin for a prompt reply...my deadline is round the corner... thanx... Evil Bluez
-
You are asking too many things,and you are also not clear about requirments too.:confused::confused: 1 For image processing there are no inbuilt libraries with visual studio. you need to write your own. 2 What you need to do with image ? which processing are required . Find it first , then search it in internet or post here. 3 What you mean by reading a video ?? just fopen and read ? or do you need to get the frames ? Both are possible . Next time when you post something please THINK. :-D
If u can Dream... U can do it
1. sumbody just replied that i shud use openCV...but shud i use tht even if just wanna read an image pixel by pixel and do the following work on it??? 2. lemme giv u this one in detail a. im gonna read frames from a film. b. quantize them so that im left with lesser gray scale values c. then develop my own colormap d. apply this colormap e. frames back to movie 3. yes i need the frames..now how can i do that??? Evil Bluez
-
1. sumbody just replied that i shud use openCV...but shud i use tht even if just wanna read an image pixel by pixel and do the following work on it??? 2. lemme giv u this one in detail a. im gonna read frames from a film. b. quantize them so that im left with lesser gray scale values c. then develop my own colormap d. apply this colormap e. frames back to movie 3. yes i need the frames..now how can i do that??? Evil Bluez
So which your movie format ? mpeg ? wmv? . In that case you case use direct show filter graphs. Then you will get the yuv / RGB frames as a byte array. So you can do whatever you need. Then for saving this frames you need to again encode it to the original format. Hope this helps. If you don't know directshow search in google , you can find many tutorials.:-D if you movie is an uncomprssed file (like raw avi)you can just use videoinfoheader structure and parse the file.you will get each frames. hoeps this helps
If u can Dream... U can do it