corners

HTML + CSS fancy box planning

Hi. I've got box in PSD (not PNG) which looks like this: I don't know how to crop it into box. I mean - it has to be class, because there'll be few types, with diffrent width (and of various heights of color bar too). With content it has to look like this: So - how much images it'll take? Sorry about this obscure brief - but I just...

Using Jquery.Corner to achieve bordered bevels?

Using this: http://malsup.com/jquery/corner/ I set up my nested divs so the container acts as a border like so: $('#top').corner("bevel 68px").parent().css('padding', '1px').corner('bevel 70px'); <div id="ctop"> <div id="top"> //stuff </div> </div> Now this works with rounded corners, the borders run along the edge. However,...

Wall detection algorithm

What would be the sanest/simplest approach to do wall detection on static images? It doesn't have to be in real-time. Right now I'm using corner detection, but is there a simpler way to detect only the walls and discard all the smaller irrelevant corners detected in foreground objects? edit Target images are standard pictures of indoo...

Implementing a Harris corner detector

I am implementing a Harris corner detector for educational purposes but I'm stuck at the harris response part. Basically, what I am doing, is: Compute image intensity gradients in x- and y-direction Blur output of (1) Compute Harris response over output of (2) Suppress non-maximas in output of (3) in a 3x3-neighborhood and threshold ou...

System.Drawing.Pen - CompoundArray problem

Hello. Im trying to draw objects (in this case lines) that have same geometry. Since they would appear on top of each other i have found that using CompoundArray property i can visualize the offset as desired. The code is just a test code, so if some one wants to have a look let me know. Can some1 explain why im getting this weird glitc...