Sunday, January 22, 2012
Final Entry
This being my first computer science class I am very pleased with what I have accomplished. Being able to write some filters was as exciting as playing with pictures was. I am very pleased with my final centerpiece. It is almost exactly what I was going for. It ended up having fairies instead of animals but I have totally stepped into the wonderful world of Disney. I had a couple of missteps with placing a foreground, mostly because I thought of it as swapping a background. It was also time consuming to place each individual fairy and to make sure they had good sizing. Writing down coordinates was very helpful. I ended up making another piece that could have been a centerpiece too. It has the northern lights and a silhouette of an ice-skater. There isn't a lot of deep meaning in my centerpiece but it is absolutely fun to look at. I have made it my profile picture on facebook. I have had a lot of fun in this class and look forward to taking more computer science in the future.
Thursday, January 19, 2012
There is something satisfying about seeing a project come together. after sitting at a computer for several hours at a time I am finally satisfied with my centerpiece. Placing 15 images into one big one is time consuming... I'm now looking at doing some more little pieces for the portfolio. Color is still fun to play with :)
Wednesday, January 18, 2012
YAY!
filter to place a foreground into a background...its made for a gray screen rather than a green screen.
def placeFore( big, lil, x, y ):
cWid = getWidth( big )
xLim = x + getWidth(lil)
if xLim > cWid:
xLim = cWid
cHt = getHeight( big )
yLim = y + getHeight( lil )
if yLim > cHt:
yLim = cHt
xlil = 0
for j in range( x,xLim ):
ylil = 0
for k in range( y, yLim ):
p = getPixel(lil, xlil, ylil )
if getRed(p)== getBlue(p)== getGreen(p) and 100<getRed(p)<255:
pass
else:
newColor = getColor(p)
setColor( getPixel( big, j,k), newColor )
ylil = ylil + 1
xlil = xlil + 1
def placeFore( big, lil, x, y ):
cWid = getWidth( big )
xLim = x + getWidth(lil)
if xLim > cWid:
xLim = cWid
cHt = getHeight( big )
yLim = y + getHeight( lil )
if yLim > cHt:
yLim = cHt
xlil = 0
for j in range( x,xLim ):
ylil = 0
for k in range( y, yLim ):
p = getPixel(lil, xlil, ylil )
if getRed(p)== getBlue(p)== getGreen(p) and 100<getRed(p)<255:
pass
else:
newColor = getColor(p)
setColor( getPixel( big, j,k), newColor )
ylil = ylil + 1
xlil = xlil + 1
Tuesday, January 17, 2012
fixed...and otherwise
HE HAS RIPPLES!!! |
I am annoyed at the birds... they are not cooperating. I am trying to modify swapbg so that it will detect gray instead of green and it will place a smaller picture in a larger picture like placeInCanvas does. I have gotten it to change the gray background but the small picture stays small and the coloring in the background is too dark. grrrrrrr.
what colour are your bits?
The person who wrote this is very long winded. I think that I understand what they are trying to get at but parts of the post seem contradictory. How is it that there is no colour but viruses are detected by their colour? Perhaps I was misunderstanding what they meant by colour not existing. I don't know that colour is as important as content but I can see that it could be important with some writing and phraseology.
an Attempt at putting ripples at his feet...
Monday, January 16, 2012
non-obvious Patent
Firstly, looking back is not a fair way to evaluate how obvious something is. Regardless, there are at least two ways to think of how obvious it could have been. One, how big of a jump was it to get to from where we were and two, how many people would see the need for the new software? Based on the tools that we have been given that can tile and detect color there is not a very large jump to put the technology together especially since people made regular mosaics before photomosaics. There is a small jump between making a mosaic and making it with all photos and another small jump from making a photomosaic to deciding to make it an automated process (we like to make machines that can "do" things for us). Those two jumps make the software seem easy to look for. Joseph Francis made a photomosaic without the software and it seems to me that the next step should have been obvious.
Saturday, January 14, 2012
Plan
I'm going to insert some of these cartoon animals into a picture of me. Instead of making a green screen for them I am going to atempt to replace the white wih my background which may or may not work exacty the way I want it to because they have white eyes. My goal is to have the picture look like I'm reading to or playing with the animals. First I need to crop my pictures down to specific animals that I can easily put on the background using the crop function. I'm gone to modify the swapbg so that I can use the smaller pictures and so that I can change the picture without a green background.
I found out that the clips actually have a gray background which should make it easier to isolate the animals.
Thursday, January 12, 2012
Wednesday, January 11, 2012
Tiles (sort of)
I like this effect. It is fun to have a floating tree on the upper left. It reminds me that it is a good thing for trees to be a-symmetrical because they can hold peoples interest longer.I could add color to the tiles but I think the contrast in this picture is neat.
I need to modify tile so that it doesn't have to be one picture. It would make this a lot easier. :)
I need to modify tile so that it doesn't have to be one picture. It would make this a lot easier. :)
Tuesday, January 10, 2012
Monday, January 9, 2012
Response to Carr
Although it would be like having a “magic” book, I don’t think that it is a good idea to mess with books as we do other digital media. I like to be able to read books as the author intended them, even if they don’t write in the style that I most enjoy. I think the ability to change the contents of a book based on analysis of reader reaction will cause the books to end up reading the same way. I think they would lose originality even more so than today where story plots are passed around frequently. On the upside though, I would never have to buy another book if enough authors decided to keep tweaking their books (of course they may start losing money over that). I think that textbooks would be too easy to abuse. People could erase importantevents if they wanted to or they could easily switch a book back and forth so that parents wouldn’t really know what their children were learning. It could become hard to trust books in the same way that we can’t always trust pictures today. I think that it is important to keep our books from becoming unstable. It would become a big problem if our primary sources became unreliable.
Project
As of yet I have not had an inspired moment about the centerpiece for the project. I think I may use some of my own pictures but I need to go home to retrieve them. I like to play with color especially when it stands out and may do something with that. I have some pictures of places around Danville that I could use. It might be intriguing to try to make my own photo mosaic using jython. Then again that would be quite challenging and wouldn't necessarily use very many of the tools that we have. I'm just not sure at the moment.
Sunday, January 8, 2012
First Impressions
I have really enjoyed my first week of Multimedia bit by bit. There is always time to experiment. On the day of our quiz I overheard Jessica's idea about making one color pop out while everything else in a picture turned gray. I was so intrigued by the idea that I wrote a filter that could take all the colors out except blue. the most amazing thing is that it works (to a certain degree). On pictures without purple the filter works really well but when the pictures have purple the purple stays as well as the blue. I'm ready to learn more fun things that can be done with our simple tools.
Subscribe to:
Posts (Atom)