Reader small image

You're reading from  Multimedia Programming with Pure Data

Product typeBook
Published inJul 2013
PublisherPackt
ISBN-139781782164647
Edition1st Edition
Right arrow
Author (1)
Bryan, Wai-ching CHUNG
Bryan, Wai-ching CHUNG
author image
Bryan, Wai-ching CHUNG

Bryan, Wai-ching CHUNG is an interactive media artist and design consultant in Hong Kong. His artworks have been exhibited at the World Wide Video Festival, Multimedia Art Asia Pacific, Stuttgart Film Winter Festival, Microwave International New Media Arts Festival and the China Media Art Festival. In the former Shanghai Expo 2010, he provided interactive design consultancy to various industry leaders in Hong Kong and China. Chung studied computer science in HK, interactive multimedia in London, and fine art in Melbourne. He also develops software libraries for the popular open source programming language Processing. He is the author of the book, Multimedia Programming with Pure Data. Currently, he is Assistant Professor in the Academy of Visual Arts, Hong Kong Baptist University, where he teaches subjects on interactive arts, computer graphics, and multimedia. His website is: http://www.magicandlove.com.
Read more about Bryan, Wai-ching CHUNG

Right arrow

Layering multiple images


The filters we learned in the previous section use only one input source. There are other GEM pixel effects that combine two images together. The logic is similar to the layer option in Photoshop layers. They are the pix_add, pix_subtract, pix_multiply, and pix_diff objects.

The following first example uses the pix_add effect that combines two images together according to their pixels' color values:

Note that the object requires two input images. The patch has two gemhead objects. Each gemhead will use a pix_image object to load its image. In the end, there is only one pix_texture object to map the resulting image to the rectangle. The pix_add object adds the color pixel values of the two images, with result clamped between 0 and 1. The pix_subtract object subtracts the color pixel value of one image by the others. The pix_multiply object multiplies the color pixel value of the two images. The pix_diff object computes the absolute value of the color pixel value difference...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Multimedia Programming with Pure Data
Published in: Jul 2013Publisher: PacktISBN-13: 9781782164647

Author (1)

author image
Bryan, Wai-ching CHUNG

Bryan, Wai-ching CHUNG is an interactive media artist and design consultant in Hong Kong. His artworks have been exhibited at the World Wide Video Festival, Multimedia Art Asia Pacific, Stuttgart Film Winter Festival, Microwave International New Media Arts Festival and the China Media Art Festival. In the former Shanghai Expo 2010, he provided interactive design consultancy to various industry leaders in Hong Kong and China. Chung studied computer science in HK, interactive multimedia in London, and fine art in Melbourne. He also develops software libraries for the popular open source programming language Processing. He is the author of the book, Multimedia Programming with Pure Data. Currently, he is Assistant Professor in the Academy of Visual Arts, Hong Kong Baptist University, where he teaches subjects on interactive arts, computer graphics, and multimedia. His website is: http://www.magicandlove.com.
Read more about Bryan, Wai-ching CHUNG