1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Link: Advanced image filters for Flash Player

These filters aren’t really going to visually blow your mind – I think they’re a little more on the techie or specific-use side of things, but that being said, they are very clever & pretty unique so they deserve a mention!

Image processing library for Flash Player: http://blog.joa-ebert.com/imageprocessing-library/
It’s a load of cool filters for images in Flash, including some of the more fancy image enhancement tricks that I can’t say I’ve seen anywhere else, like contrast correction, HDR filters, that sort of thing.

I find the best place to find out all of the gory details with this is in the ASDocs, which lists everything. [http://je2050.joa-ebert.com/imageprocessing/]. Now, on it’s own it might not seem that groundbreaking, but when you combine some of these effects creatively you get some interesting results.  Take the Normalize filter as an example; not much to look at on it’s own, but I’m pretty sure I’ve seen some blog somewhere talking about the Normalize filter being awesome for colour correction on photos.  And I’m sure every webcam image could probably use a helping hand from the BrightnessCorrection class or the GammaCorrection class.

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Link: FlashSURF – complex image recognition in Flash Player

FlashSURF is an image recognition library for Flash, distinguishable from other projects like the QR code and face recognition libraries by the fact that it’s just too damn clever. It’s a full colour, high resolution image recognition library that works in real time off a video feed (such as a webcam).  And it comes as a compiled SWC for flash so it’s ready to be used now.  You should at least check out Eugene’s post on the stuff to get an idea of it’s capabilities.

Seriously, some people are just too damn clever.

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Minimal components: For when you don’t feel like using Flex.

Nothing wrong with Flex of course, but Mark’s experiments got me thinking about using Bit-101’s MinimalComps [google code] all over again.  What are they? Well, they’re a set of simple components – Buttons, Checkboxes, basic containers – that are very lightweight in terms of the the size they add to your final SWF, and the processing power that’s needed to render them.

Why use the components? Well the Flex framework gets a bad rap for being pretty hefty on the download, and can be chuggy on the processor too, if you’re not careful.  MinimalComps doesn’t have this problem because it doesn’t require the Flex framework, and is pretty much the epitomy of minimalist design, which looks cool when you’re throwing your tech demos out there.

Well, I thought I’d give it a shout out!

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Link: 10 useful tools for developing, evaluating or debugging web pages.

This link contains a slew of good tools for web development: http://www.webcredible.co.uk/user-friendly-resources/web-dev/web-development-tools.shtml

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Simple Box2D – Better, cleverer, more optimised.

^ This time, that’s an image – saves on the page rendering time!

Another update on the Box2D classes I’m working on.  No new features, but some pretty cool expansions and improvements to the library object creation.

If you check out the previous post, you’ll see that the the dynamically drawn shapes weren’t exactly perfect; nor were they very efficient.  Oh they worked fine, and traced the detail of the shape very well – but it took a decent chunk of system resources to animate and ended up with some overlaid shapes; which all made the Box2D a bit sluggish and the behaviours buggy.

Continue reading Simple Box2D – Better, cleverer, more optimised….

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Fixed: AIR update framework broken!

Arrgh! All of a sudden the AIR Update Framework stops working.  No explanation, no errors; nothing. Where you’d expect to see your update notification popping up, you get a window just like the one above – no content, just the default Flex blue background colour.

The problem is actually a pretty specific one, but it’s not going to fix itself.  Using the Flex 3.5 SDK and the AIR Update Framework together causes this issue – obviously some part of the Flex SDK has changed between Flex 3.4 and 3.5, and no-one tested the framework before releasing it!  The issue is fixed in Flex 4 and doesn’t occur in anything other than the 3.5 SDK – so upgrading / downgrading is one solution; or…

Hack a solution:

Continue reading Fixed: AIR update framework broken!…

1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

Link: Working with SQLite in AIR, with the help of ORM

If you don’t know what ORM is read the next paragraph, and it might help.  If you do, skip to the links below to learn a little more about how you can make ORM work with AIR and SQLite.

ORM stands for Object Relational Mapping, in basic terms the concept of representing your tables-based data as more familiar objects and classes. Not a big concept after all, it’s one that I’ve been using already in my AIR applications – albeit unwittingly and manually.  FlexORM is a project to assist and standardise this process, so it’s worth knowing about and trying out.

Read more about ORM:

http://www.adobe.com/newsletters/edge/october2009/articles/article7/index.html

http://www.adobe.com/newsletters/edge/december2009/articles/article7/index.html