| Modifier and Type | Class and Description |
|---|---|
class |
BlurFilter
Represent blur filtration.
|
class |
GaussBlurFilter
Represents Gauss blur filtration.
|
class |
MedianFilter
Represents median filtration.
|
class |
RemoveNoiseFilter
Represents remove noise filtration.
|
| Modifier and Type | Method and Description |
|---|---|
Filter |
CorrectionFilters.get(int index)
Returns the element at the specified position in this list.
|
Filter |
CorrectionFilters.remove(int index)
Removes the element at the specified position in this list (optional
operation).
|
Filter |
CorrectionFilters.set(int index,
Filter element)
Replaces the element at the specified position in this list with the
specified element (optional operation).
|
| Modifier and Type | Method and Description |
|---|---|
Iterator<Filter> |
CorrectionFilters.iterator()
Returns an iterator over the elements in this list in proper sequence.
|
ListIterator<Filter> |
CorrectionFilters.listIterator()
Returns a list iterator over the elements in this list (in proper
sequence).
|
ListIterator<Filter> |
CorrectionFilters.listIterator(int index)
Returns a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the list.
|
List<Filter> |
CorrectionFilters.subList(int fromIndex,
int toIndex)
Returns a view of the portion of this list between the specified
fromIndex, inclusive, and toIndex, exclusive.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
CorrectionFilters.add(Filter filter)
Appends the specified element to the end of this list (optional
operation).
|
void |
CorrectionFilters.add(int index,
Filter element)
Inserts the specified element at the specified position in this list
(optional operation).
|
Filter |
CorrectionFilters.set(int index,
Filter element)
Replaces the element at the specified position in this list with the
specified element (optional operation).
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
CorrectionFilters.addAll(Collection<? extends Filter> c)
Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the specified
collection's iterator (optional operation).
|
boolean |
CorrectionFilters.addAll(int index,
Collection<? extends Filter> c)
Inserts all of the elements in the specified collection into this
list at the specified position (optional operation).
|
Copyright © 2014. All rights reserved.