|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--Algorithme.Algorithme
The class implementing the algorithme for the retinal vision.
| Field Summary | |
protected int |
height
This is the height of the image. |
protected int[] |
input
This is the input stimuli |
protected int[] |
output1
This is the first output stimuli |
protected int[] |
output2
This is the second output stimuli |
protected int |
width
This is the width of the image. |
| Constructor Summary | |
Algorithme(int[] input,
int width,
int height)
Our constructor. |
|
| Method Summary | |
void |
init()
This method initialize the different parameters in order to use the algorithme. |
int[] |
input()
The input stimuli. |
int[] |
output1()
The output stimuli after the first low pass filter. |
int |
output1(int index)
We acceed at one component of our output stimuli after the first pass filter. |
int[] |
output2()
The output sitmuli after the second low pass filter. |
int |
output2(int index)
We acceed at one component of our output stimuli after the second pass filter. |
int[] |
RCFilter(int[] input,
int[] output,
float deltaT,
float synapticResistance,
float jonctionResistance,
float membranarResistance,
float membranarCapacity)
Our algorithme. |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
| Field Detail |
protected int[] input
protected int[] output1
protected int[] output2
protected int width
protected int height
| Constructor Detail |
public Algorithme(int[] input,
int width,
int height)
input - The input stimuli.width - The width of our input image.height - The height of our input image.| Method Detail |
public void init()
public int[] RCFilter(int[] input,
int[] output,
float deltaT,
float synapticResistance,
float jonctionResistance,
float membranarResistance,
float membranarCapacity)
throws AlgorithmeError
input - The input of our filter.output - The response of our filter.deltaT - The time derivative discretisation.synapticResistance - The synaptic resistance.jonctionResistance - The jonction resistance.membranarResistance - The resistance which refine our neural membran caracteristic.membranarCapacity - The capacity of our neural membran.public int[] input()
public int[] output1()
public int output1(int index)
throws AlgorithmeError
index - The index we want to acceed.public int[] output2()
public int output2(int index)
throws AlgorithmeError
index - The index we want to acceed.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||