Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1. private BufferedImage RemoveRequiredMinimalSeamsFromImage() {
  2.         // Fill matrix with energy values - Noy
  3.         // Calculate matrix minimal seam path values - Yoni
  4.  
  5.         for(int i = 0; i < numOfSeams; i++) {
  6.             // var minimalSeamPath = FindMinimalSeamPath(matrix) - Noy
  7.             // RemoveSeamAndUpdateMatrix(minimalSeamPath, matrix) - Yoni
  8.         }
  9.  
  10.         var outputImage = imageProcessor.newEmptyOutputSizedImage();
  11.  
  12.         // TODO: Update outputImage RGB values according to the reduced image values
  13.  
  14.         return outputImage;
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement