Search in sources :

Example 11 with ConfigFastHessian

use of boofcv.abst.feature.detect.interest.ConfigFastHessian in project narchy by automenta.

the class RasterHierarchy method rasterizeImage.

// /**
// * Generate the raster hierarchy for a given image.
// *
// * @param input The image to rasterize
// * @return The rasterized image.
// */
// 
// public class Value {
// public int x;
// public int y;
// public float r, g, b;
// public float diff;
// 
// public Value() {
// }
// 
// public void set(float r, float g, float b, int xsize, int ysize, int x, int y) {
// this.x = x;
// this.y = y;
// 
// float dr = (r - (this.r));
// float dg = (g - (this.g));
// float db = (b - (this.b));
// float newDiff = (dr * dr + dg * dg + db * db) * xsize * ysize;
// if (this.diff < newDiff) {
// this.diff = newDiff;
// this.r = r;
// this.g = g;
// this.b = b;
// }
// }
// 
// @Override
// public String toString() {
// return x + "," + y + ":" + r + "=" + diff;
// }
// 
// public void fade() {
// diff *= 0.9f;
// }
// }
public synchronized BufferedImage rasterizeImage(BufferedImage input) {
    if (input == null)
        return null;
    // voter.clear();
    // vladimir
    boolean putin = false;
    cnt--;
    if (cnt == 0) {
        putin = true;
        cnt = updaterate;
    }
    long ntime = nar.time();
    float red, green, blue;
    int redSum, greenSum, blueSum;
    int x, y, startX, startY;
    float newX, newY;
    int width = input.getWidth();
    int height = input.getHeight();
    float fblockXSize = width / divisions;
    float fblockYSize = height / divisions;
    multiInputImg = ConvertBufferedImage.convertFromMulti(input, multiInputImg, true, ImageUInt8.class);
    final ImageUInt8 ib0 = multiInputImg.getBand(0);
    final ImageUInt8 ib1 = multiInputImg.getBand(1);
    final ImageUInt8 ib2 = multiInputImg.getBand(2);
    MultiSpectral<ImageUInt8> output = new MultiSpectral<>(ImageUInt8.class, width, height, 3);
    BufferedImage rasterizedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    // Set the initial raster region
    float regionWidth = width, regionHeight = height;
    newX = 0;
    newY = 0;
    startX = 0;
    startY = 0;
    for (int step = 1; step <= numberRasters; step++) {
        if (step > 1) {
            newX = startX + (regionWidth - regionWidth / scalingFactor) / scalingFactor;
            newY = startY + (regionHeight - regionHeight / scalingFactor) / scalingFactor;
            if (newX < 0) {
                newX = 0;
            }
            if (newY < 0) {
                newY = 0;
            }
            regionWidth = regionWidth / scalingFactor;
            regionHeight = regionHeight / scalingFactor;
            fblockXSize = fblockXSize / scalingFactor;
            fblockYSize = fblockYSize / scalingFactor;
            if (fblockXSize < 1) {
                fblockXSize = 1;
            }
            if (fblockYSize < 1) {
                fblockYSize = 1;
            }
        }
        // Set the starting point for the next step
        startX = Math.round(this.focusPoint.getX() - ((regionWidth) / 2));
        startY = Math.round(this.focusPoint.getY() - ((regionHeight) / 2));
        int blockXSize = Math.round(fblockXSize);
        int blockYSize = Math.round(fblockYSize);
        // Number of pixels per block
        float pixelCount = blockXSize * blockYSize;
        int h = 0, j = 0;
        // StringBuilder to hold the Narsese translation
        for (x = Math.round(newX); x < ((step == 1 ? 0 : startX) + regionWidth); x += blockXSize) {
            h++;
            for (y = Math.round(newY); y < ((step == 1 ? 0 : startY) + regionHeight); y += blockYSize) {
                j++;
                redSum = 0;
                greenSum = 0;
                blueSum = 0;
                for (int pixelX = 0; (pixelX < blockXSize) && (x + pixelX < width); pixelX++) {
                    for (int pixelY = 0; (pixelY < blockYSize) && (y + pixelY < height); pixelY++) {
                        redSum += ib0.get(x + pixelX, y + pixelY);
                        greenSum += ib1.get(x + pixelX, y + pixelY);
                        blueSum += ib2.get(x + pixelX, y + pixelY);
                    }
                }
                red = redSum / pixelCount;
                green = greenSum / pixelCount;
                blue = blueSum / pixelCount;
                float fred = red / 256.0f;
                // was: red / 255f
                float fgreen = green / 256.0f;
                // was: blue/255f
                float fblue = blue / 256.0f;
                // manage move heuristic
                // maybe not needed
                float brightness = (red + green + blue) / 3;
                // int key=step+10*x+10000*y;
                // int key = (step * (int)pixelCount) + y * frameWidth + x;
                int key = /*(step * (int)pixelCount) +*/
                y * frameWidth + x;
                if (putin) {
                // Value value = voter.get(key);
                // 
                // if (value == null) {
                // value = new Value();
                // voter.put(key, value);
                // }
                // 
                // value.set(fred, fgreen, fblue, blockXSize, blockYSize,
                // x + blockXSize / 2,
                // y + blockYSize / 2
                // );
                }
                if (putin && /* && step == numberRasters)*/
                (ntime != lastInputTime)) {
                    // input Narsese translation, one statement for each band.
                    // ArrayList<String> nalStrings = new ArrayList<String>();
                    // nalStrings.add("<(*,r"+ String.valueOf(step)+","+String.valueOf(h)+","+String.valueOf(j)+") --> RED>. :|: %"+String.valueOf(fred)+System.getProperty("line.separator"));
                    // nalStrings.add("<(*,r" + String.valueOf(step) + "," + String.valueOf(h) + "," + String.valueOf(j) + ") --> GREEN>. :|: %" + String.valueOf(fgreen) + System.getProperty("line.separator"));
                    // nalStrings.add("<(*,r"+ String.valueOf(step)+","+String.valueOf(h)+","+String.valueOf(j)+") --> BLUE>. :|: %"+String.valueOf(fblue)+System.getProperty("line.separator"));
                    /* Here we use the gamma corrected, grayscale version of the image.  Use CCIR 601 weights to convert.
                         * If it is desirable to use only one sentence (vs RGB for example) then use this.
                         *  see: https://en.wikipedia.org/wiki/Luma_%28video%29 or http://cadik.posvete.cz/color_to_gray_evaluation */
                    float dgray = 0.2989f * red + 0.5870f * green + 0.1140f * blue;
                    dgray /= 256.0f;
                    // TODO create the Term / Task programmaticaly
                    // nar.input("<(*,r" + String.valueOf(step) + "," + String.valueOf(h) + "," + String.valueOf(j) + ") --> GRAY>. :|: %" + String.valueOf(dgray) + System.getProperty("line.separator"));
                    input(h, j, fblockXSize, fblockYSize, dgray);
                }
                ImageMiscOps.fillRectangle(output.getBand(0), Math.round(red), x, y, blockXSize, blockYSize);
                ImageMiscOps.fillRectangle(output.getBand(1), Math.round(green), x, y, blockXSize, blockYSize);
                ImageMiscOps.fillRectangle(output.getBand(2), Math.round(blue), x, y, blockXSize, blockYSize);
            }
        }
    }
    // //search for maximum vote to move heuristic
    // if (putin) {
    // final Value[] maxvalue = {null};
    // float threshold = 0.05f;
    // voter.forEachKeyValue((key, value) -> {
    // if (maxvalue[0] == null || value.diff > maxvalue[0].diff) {
    // if (value.diff > threshold)
    // maxvalue[0] = value;
    // }
    // value.fade();
    // });
    // 
    // 
    // Value maxValue = maxvalue[0];
    // if (maxValue != null && maxValue.x != 0 && maxValue.y != 0) {
    // this.setFocus(maxValue.x, maxValue.y);
    // }
    // 
    // }
    lastInputTime = ntime;
    ConvertBufferedImage.convertTo(output, rasterizedImage, true);
    // Create a Fast Hessian detector from the SURF paper.
    // Other detectors can be used in this example too.
    InterestPointDetector detector = FactoryInterestPoint.fastHessian(new ConfigFastHessian(4, 2, 8, 2, 9, 3, 8));
    // find interest points in the image
    detector.detect(ib0);
    displayResults(rasterizedImage, detector, Color.RED);
    // find interest points in the image
    detector.detect(ib1);
    displayResults(rasterizedImage, detector, Color.BLUE);
    // find interest points in the image
    detector.detect(ib2);
    displayResults(rasterizedImage, detector, Color.GREEN);
    return rasterizedImage;
}
Also used : ImageUInt8(boofcv.struct.image.ImageUInt8) MultiSpectral(boofcv.struct.image.MultiSpectral) ConfigFastHessian(boofcv.abst.feature.detect.interest.ConfigFastHessian) InterestPointDetector(boofcv.abst.feature.detect.interest.InterestPointDetector) FactoryInterestPoint(boofcv.factory.feature.detect.interest.FactoryInterestPoint) BufferedImage(java.awt.image.BufferedImage) ConvertBufferedImage(boofcv.core.image.ConvertBufferedImage)

Aggregations

ConfigFastHessian (boofcv.abst.feature.detect.interest.ConfigFastHessian)11 DetectDescribePoint (boofcv.abst.feature.detdesc.DetectDescribePoint)4 BrightFeature (boofcv.struct.feature.BrightFeature)4 GrayF32 (boofcv.struct.image.GrayF32)4 AssociatedPair (boofcv.struct.geo.AssociatedPair)3 BufferedImage (java.awt.image.BufferedImage)3 FactoryInterestPoint (boofcv.factory.feature.detect.interest.FactoryInterestPoint)2 ConvertBufferedImage (boofcv.io.image.ConvertBufferedImage)2 AssociatedIndex (boofcv.struct.feature.AssociatedIndex)2 AssociateDescription (boofcv.abst.feature.associate.AssociateDescription)1 ScoreAssociation (boofcv.abst.feature.associate.ScoreAssociation)1 DescribeRegionPoint (boofcv.abst.feature.describe.DescribeRegionPoint)1 DescribeRegionPointConvert (boofcv.abst.feature.describe.DescribeRegionPointConvert)1 ConfigExtract (boofcv.abst.feature.detect.extract.ConfigExtract)1 NonMaxSuppression (boofcv.abst.feature.detect.extract.NonMaxSuppression)1 InterestPointDetector (boofcv.abst.feature.detect.interest.InterestPointDetector)1 ConvertBufferedImage (boofcv.core.image.ConvertBufferedImage)1 ExampleAssociatePoints (boofcv.examples.features.ExampleAssociatePoints)1 FactoryDescribeRegionPoint (boofcv.factory.feature.describe.FactoryDescribeRegionPoint)1 ConfigRansac (boofcv.factory.geo.ConfigRansac)1