本文整理汇总了Java中ij.process.ByteProcessor.getPixel方法的典型用法代码示例。如果您正苦于以下问题:Java ByteProcessor.getPixel方法的具体用法?Java ByteProcessor.getPixel怎么用?Java ByteProcessor.getPixel使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ij.process.ByteProcessor
的用法示例。
在下文中一共展示了ByteProcessor.getPixel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: fillHoles
import ij.process.ByteProcessor; //导入方法依赖的package包/类
/**
* Fill holes in a binary image.
*
* Assumes 255 is foreground, 0 is background.
*
* Based on code in ImageJ's Binary class.
*
* @param bp
* @return
*/
public static void fillHoles(ByteProcessor bp) {
int w = bp.getWidth();
int h = bp.getHeight();
FloodFiller ff = new FloodFiller(bp);
bp.setValue(127);
for (int x = 0; x < w; x++) {
if (bp.getPixel(x, 0) == 0)
ff.fill8(x, 0);
if (bp.getPixel(x, h-1) == 0)
ff.fill8(x, h-1);
}
for (int y = 0; y < h; y++) {
if (bp.getPixel(0, y) == 0)
ff.fill8(0, y);
if (bp.getPixel(w-1, y) == 0)
ff.fill8(w-1, y);
}
for (int i = 0; i < w*h; i++) {
if (bp.get(i) == 127)
bp.set(i, 0);
else
bp.set(i, 255);
}
}