6
Python opencv bindings don't workview story

http://www.daniweb.com – Hi! I'm trying to use the opencv bindings of Python. I tried the following code: from opencv.highgui import * from opencv.cv import * cam = 'cam' cvNamedWindow(cam) cap = cvCreateCameraCapture(0) while cvWaitKey(1) != 27:   img=cvQueryFrame(cap)   cvShowImage(cam,img) (General)

5
Using opencv libraries in c/c++ extensions for pythonview story

http://www.daniweb.com – Hi! I am trying to convert my c/c++ code into a python module. The code captures an image which it then runs some algorithms upon. For a start, I am trying to write a code that just captures an image. I am using opencv for the image capture (in the c/c++ code). In the compiling options, I compile the file with the opencv functions using the following options: (General)

4
HardwareMap - Lists computers,services on the local network and hardware connected to your computerview story

http://www.ubuntugeek.com – (HowTos)

5
Sorting results based on values retrieved from a 'lookup table'view story

http://www.daniweb.com – I'm hoping to get some help with sorting database results based on the results themselves. I have two tables in this example, one being 'product_category_lookup.table' and the other 'products.table'. (General)

5
Upload photos from Picasa to Facebook directlyview story

http://gamblis.com – If you are both Picasa and Facbook users, you may need this Picasa plugin called Picasa Uploader to upload photos directly into your Facebook account. You can also select which album should be the photos to be placed. (Distributions)

5
"My computer" help!view story

http://www.daniweb.com – I can not open my computer. When i click My computer, nothing comes up and i think it keeps searching. heres an link for an image. (General)

3
Multi category image gallery actionscript exampleview story

http://www.daniweb.com – I was wondering if any one can show me an simple action script example of how to implement a image gallery that has multi image category built from an xml file generate by php. I have successfully made an image gallery with, action xml, php, and mysql, but I'm having the hardest time figuring out how take the application to multi category. (General)

4
Byte array in session variableview story

http://www.daniweb.com – I have an asp FileUpload and an asp Button on a page. When i click the button, i want the bytes of the file which was supposedly uploaded to be stored in a session variable. Only problem is that they aren't stored. How should i do this? There's also a text box with some text in it, need that too. protected void UploadButton_Click(object sender, EventArgs e) (General)

3
C++ game spritesview story

http://www.daniweb.com – I have this sprite that I am printing out sf::Image aNimat; if(!aNimat.LoadFromFile("images/fish.png")) std::cout<<"File not found fish.png"<<std::endl; however I want to print it out at random places and in random numbers. Can anyone suggest how I would go about it? (General)

3
How to Load a Jpeg file into an MSSQL Image field?view story

http://www.daniweb.com – I have a form (Delphi 2010) that includes several data controls, including a DBImage. All these are hooked to a underlying MSSQL 2005 database and table. I'm using ADOConnection and ADO Table for ease of use. (General)