Package boofcv.struct
Class QueueCorner
- All Implemented Interfaces:
Serializable
A list that allows fast access to a queue of points that represents corners in an image.
All the points are predeclared and recycled.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.ddogleg.struct.DogArray
DogArray.Set<S extends Object,
D extends Object> Nested classes/interfaces inherited from class org.ddogleg.struct.FastAccess
FastAccess.FunctionEach<T extends Object>, FastAccess.FunctionEachIdx<T extends Object>, FastAccess.FunctionMatches<T extends Object>
-
Field Summary
Fields inherited from class org.ddogleg.struct.FastAccess
data, size, type
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal void
append
(int x, int y) final void
append
(Point2D_I16 pt) final void
appendAll
(FastAccess<Point2D_I16> list) Adds a copy of each element in 'list' which is owned by 'this' queueMethods inherited from class org.ddogleg.struct.DogArray
copyAll, copyIntoList, createInstance, getData, getFactory, getInitialize, getReset, getSize, getType, grow, init, isDeclare, isUnused, remove, remove, remove, removeSwap, removeTail, reserve, reserveIncrease, reset, resetResize, resetResize, resize, resize, resize, setData, setInitialize, setReset, setSize, shuffle, shuffle, toList
-
Constructor Details
-
QueueCorner
public QueueCorner(int max) -
QueueCorner
public QueueCorner()
-
-
Method Details
-
append
public final void append(int x, int y) -
append
-
appendAll
Adds a copy of each element in 'list' which is owned by 'this' queue- Parameters:
list
- The list that is to added and copied
-