~repos /gdx-studio
git clone https://pyrossh.dev/repos/gdx-studio.git
An IDE for creating Games using libgdx and Java supported on all platforms Android, iOS, Desktop
src_libs/com/github/axet/lookup/common/FeatureSet.java
package com.github.axet.lookup.common;
import java.util.ArrayList;import java.util.List;
public class FeatureSet extends ArrayList<Feature> { private static final long serialVersionUID = -9077324933940287714L;
public List<FeatureK> k(IntegralImage template) { List<FeatureK> list = new ArrayList<FeatureK>();
for (Feature f : this) { list.add(new FeatureK(f, template)); }
return list; }}