Java BufferedImage Operation nNeighbors(BufferedImage image, int i, int j)

Here you can find the source of nNeighbors(BufferedImage image, int i, int j)

Description

n Neighbors

License

Open Source License

Declaration

static int nNeighbors(BufferedImage image, int i, int j) 

Method Source Code

//package com.java2s;
/**//from  w  w  w. ja  v a 2 s .c  o  m
Copyright LITIS/EDA 2014
contact@docexplore.eu
    
This software is a computer program whose purpose is to manage and display interactive digital books.
    
This software is governed by the CeCILL license under French law and abiding by the rules of distribution of free software.  You can  use, modify and/ or redistribute the software under the terms of the CeCILL license as circulated by CEA, CNRS and INRIA at the following URL "http://www.cecill.info".
    
As a counterpart to the access to the source code and  rights to copy, modify and redistribute granted by the license, users are provided only with a limited warranty  and the software's author,  the holder of the economic rights,  and the successive licensors  have only  limited liability.
    
In this respect, the user's attention is drawn to the risks associated with loading,  using,  modifying and/or developing or reproducing the software by the user in light of its specific status of free software, that may mean  that it is complicated to manipulate,  and  that  also therefore means  that it is reserved for developers  and  experienced professionals having in-depth computer knowledge. Users are therefore encouraged to load and test the software's suitability as regards their requirements in conditions enabling the security of their systems and/or data to be ensured and,  more generally, to use and operate it in the same conditions as regards security.
    
The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms.
 */

import java.awt.image.BufferedImage;

public class Main {
    static int nNeighbors(BufferedImage image, int i, int j) {
        int res = 0;
        int col = image.getRGB(i, j);
        for (int di = -1; di <= 1; di++)
            for (int dj = -1; dj <= 1; dj++)
                if (di != 0 || dj != 0) {
                    int x = i + di, y = j + dj;
                    if (x < 0 || x >= image.getWidth() || y < 0 || y >= image.getHeight())
                        continue;
                    if (image.getRGB(x, y) == col)
                        res++;
                }
        return res;
    }
}

Related

  1. matBytesToBufferedImage(byte[] data, int cols, int rows, int type)
  2. matte(BufferedImage image, int top, int bottom, int left, int right, Color bg)
  3. mirror(final BufferedImage image, final boolean horizontal)
  4. newOptimizedImageLike(GraphicsConfiguration destination, BufferedImage img)
  5. newSubimage(BufferedImage src, int x, int y, int w, int h)
  6. nrChannels(BufferedImage img)
  7. numPixelsDifferent(BufferedImage imgA, BufferedImage imgB)
  8. offset(final BufferedImage image, final float[] scales, final float[] offsets)
  9. open(BufferedImage image)