Re: Good libraries for network programming (not asynchronous)

2009-09-23 Thread Tvrtko
On Sep 24, 4:36 am, Jeff McNeil wrote: > I know this probably isn't overly helpful, but Twisted allows you to > defer a blocking call to a thread using a 'deferToThread' construct. > It exists so that you can run otherwise synchronous calls in an async. > manner. I'm already using this, but the l

Good libraries for network programming (not asynchronous)

2009-09-23 Thread Tvrtko
recently found the diesel project which is much nicer, but still asynchronous. I'm looking for something that will manage all threads and connections and be between me and a raw socket. I know about the socketserver from standard library and I'm asking if there is anything else.

Re: Poor man's OCR: need performance improvement tips

2005-09-25 Thread tvrtko . sokolovski
Imagine a large matrix with dimensions [W,H], and a lots of smaller matrices with dimensions [p,q1], [p,q1], [p,q2], [p,q1], ... I have to slide a small window [p,q] horizontally over a larger matrix. After each slide I have to compare smaller matrices with the data from larger matrix (as defined b