Tag Archive for 'Augmented Reality'

AR without programming in 5 minutes

If you want to try it by yourself you need to compile some additional patches from here.

Pranav Mistry: Projected augmented reality concepts

3D Projection on Buildings

Projection on Buildings from NuFormer Digital Media on Vimeo.

Markless AR with real objects

HSV Threshold using pixelblender

It can be very usefully for a blob tracking technics

Example

Usage

// HSV PIXEL BLENDER FILTER
[Embed("HSV_Threshold.pbj", mimeType="application/octet-stream")]
private var hsvShader:Class;
private var hsv:Shader = new Shader(new hsvShader as ByteArray);

...

/// RED /// /// /// /// /// /// /// /// /// //

hsv.data.HueMin.value = [275.0]
hsv.data.HueMax.value = [ 35.0]
hsv.data.SatMin.value = [ 40.0]
hsv.data.SatMax.value = [100.0]
hsv.data.ValMin.value = [ 40.0]
hsv.data.ValMax.value = [100.0]

yourBitmapData.applyFilter(yourBitmapData, yourBitmapData.rect, new Point(0,0), new ShaderFilter(hsv));

Shader source