Question: I need help fixing my code for FlipVerticalFilter.java public class FlipVerticalFilter implements Filter { /** * Flip the image vertically ( over the horizontal axis)

I need help fixing my code for FlipVerticalFilter.java

public class FlipVerticalFilter implements Filter { /** * Flip the image vertically ( over the horizontal axis) * * @param theImage The image to modify */ public void filter(PixelImage theImage) { // get the data from the image Pixel[][] data = theImage.getData(); //for each row, swap its contents from up to down for (int col = 0; col

it produces this instead of just flipping the image over the horizontal axis:

I need help fixing my code for FlipVerticalFilter.java public class FlipVerticalFilter implements

This is the FlipHorizontalFilter code I was given as an example:

public class FlipHorizontalFilter implements Filter { /** * Flip the image horizontally ( over the vertical axis) * * @param theImage The image to modify */ public void filter(PixelImage theImage) { // get the data from the image Pixel[][] data = theImage.getData(); //for each row, swap its contents from left to right for (int row = 0; row 2\SnapShop_starting_code>javac SnapShopConfiguration.java 2\SnapShop_starting_code>java SnapShopConfiguration CSC 143 - SnapShop Click to enter file name: C:\Users Flip Horizontal Flip Vertical

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!