use of boofcv.abst.feature.detect.extract.NonMaxLimiter in project BoofCV by lessthanoptimal.
the class FactoryDetectDescribe method sift.
/**
* Creates a new SIFT feature detector and describer.
*
* @see CompleteSift
*
* @param config Configuration for the SIFT detector and descriptor.
* @return SIFT
*/
public static <T extends ImageGray<T>> DetectDescribePoint<T, BrightFeature> sift(@Nullable ConfigCompleteSift config) {
if (config == null)
config = new ConfigCompleteSift();
ConfigSiftScaleSpace configSS = config.scaleSpace;
ConfigSiftDetector configDetector = config.detector;
ConfigSiftOrientation configOri = config.orientation;
ConfigSiftDescribe configDesc = config.describe;
SiftScaleSpace scaleSpace = new SiftScaleSpace(configSS.firstOctave, configSS.lastOctave, configSS.numScales, configSS.sigma0);
OrientationHistogramSift<GrayF32> orientation = new OrientationHistogramSift<>(configOri.histogramSize, configOri.sigmaEnlarge, GrayF32.class);
DescribePointSift<GrayF32> describe = new DescribePointSift<>(configDesc.widthSubregion, configDesc.widthGrid, configDesc.numHistogramBins, configDesc.sigmaToPixels, configDesc.weightingSigmaFraction, configDesc.maxDescriptorElementValue, GrayF32.class);
NonMaxSuppression nns = FactoryFeatureExtractor.nonmax(configDetector.extract);
NonMaxLimiter nonMax = new NonMaxLimiter(nns, configDetector.maxFeaturesPerScale);
CompleteSift dds = new CompleteSift(scaleSpace, configDetector.edgeR, nonMax, orientation, describe);
return new DetectDescribe_CompleteSift<>(dds);
}
use of boofcv.abst.feature.detect.extract.NonMaxLimiter in project BoofCV by lessthanoptimal.
the class FactoryInterestPointAlgs method sift.
/**
* Creates a SIFT detector
*/
public static SiftDetector sift(@Nullable ConfigSiftScaleSpace configSS, @Nullable ConfigSiftDetector configDetector) {
if (configSS == null)
configSS = new ConfigSiftScaleSpace();
if (configDetector == null)
configDetector = new ConfigSiftDetector();
NonMaxLimiter nonmax = FactoryFeatureExtractor.nonmaxLimiter(configDetector.extract, configDetector.maxFeaturesPerScale);
SiftScaleSpace ss = new SiftScaleSpace(configSS.firstOctave, configSS.lastOctave, configSS.numScales, configSS.sigma0);
return new SiftDetector(ss, configDetector.edgeR, nonmax);
}
use of boofcv.abst.feature.detect.extract.NonMaxLimiter in project BoofCV by lessthanoptimal.
the class DebugSiftDetectorApp method main.
public static void main(String[] args) {
BufferedImage input = UtilImageIO.loadImage(UtilIO.pathExample("sunflowers.jpg"));
// BufferedImage input = UtilImageIO.loadImage(UtilIO.pathExample("shapes/shapes01.png");
GrayF32 gray = ConvertBufferedImage.convertFromSingle(input, null, GrayF32.class);
NonMaxSuppression nonmax = FactoryFeatureExtractor.nonmax(new ConfigExtract(3, 1, 1, true, true, true));
NonMaxLimiter extractor = new NonMaxLimiter(nonmax, 400);
SiftScaleSpace imageSS = new SiftScaleSpace(-1, 5, 3, 2.75);
SiftDetector alg = new SiftDetector(imageSS, 10, extractor);
alg.process(gray);
System.out.println("total features found: " + alg.getDetections().size());
VisualizeFeatures.drawScalePoints(input.createGraphics(), alg.getDetections().toList(), 1);
// ListDisplayPanel dog = new ListDisplayPanel();
// for( int i = 0; i < alg.getScaleSpace().getDog().length; i++ ) {
// int scale = i % (alg.getScaleSpace().getNumScales()-1);
// int octave = i / (alg.getScaleSpace().getNumScales()-1);
//
// BufferedImage img = VisualizeImageData.colorizeSign(alg.getScaleSpace().getDog()[i],null,-1);
// dog.addImage(img,octave+" "+scale);
// }
//
// ListDisplayPanel ss = new ListDisplayPanel();
// for( int i = 0; i < alg.getScaleSpace().getScale().length; i++ ) {
// int scale = i % alg.getScaleSpace().getNumScales();
// int octave = i / alg.getScaleSpace().getNumScales();
//
// BufferedImage img = VisualizeImageData.grayMagnitude(alg.getScaleSpace().getScale()[i],null,255);
// ss.addImage(img,octave+" "+scale);
// }
// ShowImages.showWindow(dog, "Octave DOG");
// ShowImages.showWindow(ss, "Octave Scales");
ShowImages.showWindow(input, "Found Features", true);
System.out.println("Done");
}
use of boofcv.abst.feature.detect.extract.NonMaxLimiter in project BoofCV by lessthanoptimal.
the class TestCompleteSift method createAlg.
private CompleteSift createAlg() {
SiftScaleSpace ss = new SiftScaleSpace(-1, 4, 3, 1.6);
NonMaxSuppression nonmax = FactoryFeatureExtractor.nonmax(new ConfigExtract(1, 0, 1, true, true, true));
NonMaxLimiter limiter = new NonMaxLimiter(nonmax, 300);
OrientationHistogramSift<GrayF32> ori = new OrientationHistogramSift<>(36, 1.5, GrayF32.class);
DescribePointSift<GrayF32> describe = new DescribePointSift<>(4, 4, 8, 1.5, 0.5, 0.2, GrayF32.class);
return new CompleteSift(ss, 10, limiter, ori, describe);
}
use of boofcv.abst.feature.detect.extract.NonMaxLimiter in project BoofCV by lessthanoptimal.
the class FactoryInterestPoint method sift.
public static <T extends ImageGray<T>> InterestPointDetector<T> sift(ConfigSiftScaleSpace configSS, ConfigSiftDetector configDet, Class<T> imageType) {
if (configSS == null)
configSS = new ConfigSiftScaleSpace();
if (configDet == null)
configDet = new ConfigSiftDetector();
SiftScaleSpace scaleSpace = new SiftScaleSpace(configSS.firstOctave, configSS.lastOctave, configSS.numScales, configSS.sigma0);
NonMaxSuppression nonmax = FactoryFeatureExtractor.nonmax(configDet.extract);
NonMaxLimiter limiter = new NonMaxLimiter(nonmax, configDet.maxFeaturesPerScale);
SiftDetector detector = new SiftDetector(scaleSpace, configDet.edgeR, limiter);
return new WrapSiftDetector<>(detector, imageType);
}
Aggregations