Module 5 Grading Guideline Note: If there is no file named PictureManipulator2.java submitted, award 0 points total for this assignment. The testing of these submissions should be done by simply creating an instance of the PictureManipulator2 in the Interactions pane and then creating an instance of a Picture. Pass the picture to the appropriate methods and ensure results. If the methods use the getPixels() method that returns an array and the students process the array and do not use the nested loop structure, then the student should earn no credit for the methods. Point breakdown: (Partial credit only where indicated.) [20 points] decreaseGreen45 method (5) Method takes in parameter of Picture (5) Method accesses pixels in picture and decreases their green values by 0.45 (5) Method reassigns pixels this new value (5) After completion, picture opens in explorer to allow for the viewing of the results. [20 points] increaseBlue60 method (5) Method takes in parameter of Picture (5) Method accesses pixels in picture and decreases their green values by 1.60 (5) Method reassigns pixels this new value (5) After completion, picture opens in explorer to allow for the viewing of the results. [20 points] modifyRed method (2.5) Method takes in parameter of Picture (2.5) Method takes in parameter of type double for modification (5) Method accesses pixels in picture and increases or decreases the amount of red in them by the parameter. The method by which this is done can vary by student, so please look at the code before calling method. (5) Method reassigns pixels this new value (5) After completion, picture opens in explorer to allow for the viewing of the results. [20 points] darkenPicture method (5) Method takes in parameter of Picture (5) Method accesses pixels in picture and calls the method darker on the color in each (5) Method reassigns pixels this new color value (5) After completion, picture opens in explorer to allow for the viewing of the results. [20 points] greenOnly method (5) Method takes in parameter of Picture (5) Method accesses pixels in picture and sets red component to be zero. (5) Method accesses pixels in picture and sets blue component to be zero. (5) After completion, picture opens in explorer to allow for the viewing of the results.