Re: Chroma Keyer / 'Green Screen'
On 19 Jan 2008 01:43:40 -0700, "Adrian" <adrian99@xxxxxxxxx> wrote:
Hello all,
Does anyone know of any good articles on the theory of Chroma
keyers, Background Extraction, Color Keying, 'Green Screen', type
of effects?
I have been searching for a while but I have not found very many
at all..
I don't know of any articles bhe the prinicple is simple: Replace
pixels of a certain color with the corresponding pixels from another
image.
You probably want a bit of flexibility in the definition of the color
to account for shadows and the like.
Lets say your chroma-key color is blue. Look at the RGB values of the
pixel.
If (Blue > 50) And (green / blue < .1) and (red / blue < .1) then
SubsistutePixel;
.
Relevant Pages
- Re: Extract partial image from larger image, performance question
... This means decoding the LZW compression in the first instance. ... Find great Windows Forms articles in Windows Forms Tips and Tricks ... However when I call the LockBits method on the loaded image (so I can copy ... the needed pixels into the smaller image) it takes about 8 seconds. ... (microsoft.public.dotnet.framework.drawing) - How to convert image from Format1bppIndexed to Format24bppRgb?
... 10000x10000 pixels are fine when I make calls to FromImage, DrawImage, ... Find great Windows Forms articles in Windows Forms Tips and Tricks ... (microsoft.public.dotnet.framework.drawing) - Re: Two newbie questions
... Remember that the printer bounds are declared in 100ths of an inch. ... pixel count if you want to use pixels at-all. ... Find great Windows Forms articles in Windows Forms Tips and Tricks ... (microsoft.public.dotnet.framework.drawing) - Re: DrawImage and NearestNeighbor bug?
... > Find great Windows Forms articles in Windows Forms Tips and Tricks ... >> I am drawing an image, stretched, with interpolation set to ... >> I created a checkboard of 5x5 pixels and painted it in a panel. ... >> rounding error in the interpolation code to me, but maybe it's by design? ... (microsoft.public.dotnet.framework.drawing) - Re: brightness vb.net images
... such an image is due to dithering of pixels. ... Find great Windows Forms articles in Windows Forms Tips and Tricks ... Answer those GDI+ questions with the GDI+ FAQ ... (microsoft.public.dotnet.framework.drawing) |
|