
boofcv.abst.feature.dense.DescribeImageDenseHoG Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feature Show documentation
Show all versions of feature Show documentation
BoofCV is an open source Java library for real-time computer vision and robotics applications.
The newest version!
/*
* Copyright (c) 2011-2016, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package boofcv.abst.feature.dense;
import boofcv.alg.feature.dense.DescribeDenseHogAlg;
import boofcv.struct.feature.TupleDesc_F64;
import boofcv.struct.image.ImageBase;
import boofcv.struct.image.ImageType;
import georegression.struct.point.Point2D_I32;
import org.ddogleg.struct.FastQueue;
import java.util.List;
/**
* Implementation of {@link DescribeImageDense} for {@link DescribeDenseHogAlg}. This adds the capability to scale
* the
*
* @author Peter Abeles
*/
public class DescribeImageDenseHoG implements DescribeImageDense {
DescribeDenseHogAlg hog;
public DescribeImageDenseHoG(DescribeDenseHogAlg hog) {
this.hog = hog;
}
@Override
public void process(T input) {
hog.setInput(input);
hog.process();
// center region locations to make it compliant with this interface
FastQueue locations = hog.getLocations();
int r = hog.getRegionWidthPixel()/2;
for (int i = 0; i < locations.size(); i++) {
Point2D_I32 p = locations.get(i);
p.x += r;
p.y += r;
}
}
@Override
public List getDescriptions() {
return hog.getDescriptions().toList();
}
@Override
public List getLocations() {
return hog.getLocations().toList();
}
@Override
public ImageType getImageType() {
return hog.getImageType();
}
@Override
public TupleDesc_F64 createDescription() {
return hog.createDescription();
}
@Override
public Class getDescriptionType() {
return TupleDesc_F64.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy