Video capture from webcam on Mac?

2006-06-15 Thread Joseph Chase
Is there a cross-platform solution for video capture from a webcam?

I am aware of the Win32 videocapture library, but am unaware of how to 
accomplish the same functionality on the Mac side.

Thanks in advance. 


-- 
http://mail.python.org/mailman/listinfo/python-list


Object Tracking Library

2006-04-07 Thread Joseph Chase
Does anyone know of any python libraries or examples for tracking objects 
across a series of images?

Any help is greatly appreciated. Thanks in advance. 


-- 
http://mail.python.org/mailman/listinfo/python-list


Problems posting with urlencode

2005-10-02 Thread Joseph Chase
I have the following form :


form action=/auction/create/ method=postplabel 
for=auction_createdCreated/labelbr //p
plabel for=auction_userUser/labelbr /input id=auction_user 
name=auction[user] size=30 type=text value= //p
plabel for=auction_auction_titleAuction title/labelbr /input 
id=auction_auction_title name=auction[auction_title] size=30 
type=text value= //p
plabel for=auction_auction_urlAuction url/labelbr /input 
id=auction_auction_url name=auction[auction_url] size=30 type=text 
value= //p
plabel for=auction_modification_recModification rec/labelbr 
/input id=auction_modification_rec name=auction[modification_rec] 
size=30 type=text value= //p
plabel for=auction_stateState/labelbr /input id=auction_state 
name=auction[state] size=30 type=text value= //pinput 
name=commit type=submit value=Create //form


I post the form data with the following calls:

params = urllib.urlencode({auction[user] :user, 
auction[auction_title]: auction_title,auction[auction_url]: auction_url, 
auction[modification_rec] :recommendation, auction[state]=: 
state,commit:Create})

print Storing
data = urllib.urlopen(self.baseUrl,params)


When I go and view the inserted record, the record exists, but the field 
values are null.  It is my thinking that the backend needs the id value 
for each input value; how do I add that data to the urlencode() call?

When I utilize the above form, all is inserted and all of the field values 
appear.  What data am I not accounting for with my program; for its obvious 
that the browser is sending something to the server that my application is 
not.

Thanks. 


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Django - Rails killer comes...

2005-07-16 Thread Joseph Chase
I can't wait to try this out.  We'll see how it stacks up next to ROR.

JZ [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 http://www.djangoproject.com/

 --
 JZ 


-- 
http://mail.python.org/mailman/listinfo/python-list


Monitoring Outgoing Connections?

2005-05-29 Thread Joseph Chase
Is it possible to write a client within Python that would trigger some sort 
of callback interface when the user is attempting to make an outgoing TCP/IP 
connection?  I'd like to accomplish this on a Windows XP box.

Is this something that could be accomplished with the Twisted framework, or 
am I going to have to dive in the platform specific API?

TIA. 


-- 
http://mail.python.org/mailman/listinfo/python-list