COS 426:
|
|
COS 426 General | Assignment 0
In this assignment you will create a simple paint program. To achieve that, you will implement fill and brush functions. The purpose of this assignment is to get you familiar with the interactive GUI that you will see in the following assignments.
The JavaScript based image processing program has two modes: (1) an interactive mode where you can enable/disable various filters, adjust parameters to these filters, and see the result right away; and (2) a batch mode where all the filters and parameters are fixed. Each version runs in a web page, and for the batch mode the filters and parameters are specified in the URL.
To get started, download this zip file and unzip it on your computer. Change to the subdirectory
cos426-assign0
and run the commandpython -m SimpleHTTPServer
in the terminal. (That command is for python 2.7. In python 3 it should bepython3 -m http.server
. There are also many other ways to start a web server, for example usingphp -S localhost:8000
or by installing WAMP or MAMP or Node. Various other options are discussed here.) A web server will be launched locally on your computer, rooted at this directory. Note that our assignments will not work if you simply open the html file in the browser directly usingfile://...
due to the same-origin security policy. Therefore we run a local web server.Once you have started the local web server, direct your browser to
http://localhost:8000
(8000 is the default port used by the python web server). You should see the web page for Assignment 0 showing a picture of a flower. On the right hand side of the web page, you can find two control menus. The left one is the feature menu which contains the features/operations you will need to implement in this assignment and the right one is the history menu which keeps track of the history operations. In the feature menu, you can expand the folders and see all the features. By clicking "Fill", a new operation will be pushed to the bottom of the history menu, and now you can change the color using the color picker. If you want to add another image, simply click "Push Image" and an new image will be pushed to the image stack.A warning box will pop up if you click on unimplemented features. You will need to comment out the warning box code after you implement the features. All the operations you apply will appear in sequence in the history menu and you can delete the past operations if you want. For the "Push Image" operation, by clicking "Delete Below", all the operations below it will be removed as well because those operations are associated with the image being removed. For other operations, by clicking "Delete", only the selected operation will be removed. Also note that all the history operations are encoded in the URL, so feel free to refresh the webpage and everything will still be there. This allows you to change your code and then get back to the same place. It also allows you to change the values directly in the URL rather than in the GUI.
We recommend Google Chrome for development. In most cases, refreshing the webpage will make your edited scripts take effect. However, the browser sometimes caches old scripts. To disable caching, in Chrome's Developer Tools, select the "Network" tab and check "Disable cache".
To make debugging friendly, a "Batch Mode" button is given. Once you are satisfied with the parameters in the interactive GUI, click "Batch Mode" and the batch mode will be loaded in a new tab with all the parameters fixed. Then you can simply refresh when you make changes to your code. For some filters which are slow to process, the batch mode will say "Processing" instead of showing the result immediately.
Use your favorite text/code editor to edit the file
js/student.js
and fill in
your name and NetID. Reload the web page in your browser, and
now your information should appear above the image.
The assignment is worth 5 points. The following is a list of features that you may implement (listed roughly from easiest to hardest). The number in front of the feature corresponds to how many points the feature is worth for the full implementation. Partial or partially-correct solutions will receive partial credit. The features in bold face are required. The other ones are optional. Refer to the examples web page for example output images as well as some implementation hints.
- (1.0) Fill: Fill the whole image with a given color.
- (2.0) Brush: Implement a color brush which takes color, mouse coordinates and brush radius as inputs.
- (2.0) Soft Brush: Implement a soft color brush with opacity decreasing from center to the edge.
You are encouraged to used the implemented features or the custom filter to create an art piece to participate in the art contest (which yields one point for participation and two for winning). Your final score will be calculated by adding:
- your score on the required features (up to 5 points)
- your participation in the art contest (up to 2 points). (You can make use of
customFilter()
)
To implement the image processing features listed above, you only need to edit the filejs/filters.js
. Before starting on that, we recommend you take a quick look at the filejs/image.js
because it has some important helper code relating to images and pixels. You are welcome to look at any of the other files, but it should not be necessary and some of them have some pretty byzantine javascript magic.
You should submit your solution via CS dropbox here. The submitted zip file should preserve the directory structure of the skeleton code we provided in the zip file above. CS dropbox requires that the size of a single file is below 50MB. You can put few largest files in your own web space / google drive / dropbox and include a link to that in the write-up to save space.
The
writeup.html
file should be an HTML document demonstrating the effects of the features you have implemented and would like scored. For the features you would like to demonstrate, make sure that you include the required results by replacingplaceholder.png(s)
with you results. You are encouraged to include more representative results, but extra results only affect your score when your implementation is partially correct. You don't have to show the input images for the required results.You should start from the the example
writeup.html
provided. At the top of that file are a list of features that you might implement, linking to the section where you talk about them. Please remove any features that you do not implement from the list as well as the corresponding sections, but otherwise leave this header section in tact. When you include an extra result, also include a link to thebatch.html
command that creates that image, as illustrated in the "Brightness" example.To save space, please submit images in
png
format. You may include one or a fewgif
files as well to show animations, but these files can be large so please try not to include lots of large gifs.Note that you are expected to use good programming style at all times, including meaningful variable names, a comment or three describing what the code is doing, etc. Partial credit may not be assigned for code without comments. We have mostly tried to conform to the idiomatic JS style conventions.
A few hints:
- Look at the example page.
- Post a message to Piazza if you have questions.
- Take note of the late policy and the collaboration policy.
Here are some answers to frequently asked questions. Check back here occasionally, as we may add FAQs to this list:
- How do I add my own images or .json files?
The file lists are hardcoded injs/guiConfig.js
because javascript does not have access to the filesystem. Please modify this file when needed.