Random dot stereogram using rectangular black and white patches.
Based on Matlab code originally from Jenny Read, implemented in
Topographica by Tikesh Ramtohul (2006).
|
|
x = param.Number(precedence=-1)
X-coordinate location of pattern center.
|
|
|
y = param.Number(precedence=-1)
Y-coordinate location of pattern center.
|
|
|
size = param.Number(precedence=-1)
Determines the overall size of the pattern.
|
|
|
orientation = param.Number(precedence=-1)
Polar angle of pattern, i.e., the orientation in the Cartesian coordinate
system, with zero at 3 o'clock and increasing counterclockwise.
|
|
|
scale = param.Number(default= 0.5)
Multiplicative strength of input pattern, defaulting to 1.0
|
|
|
offset = param.Number(default= 0.5)
Additive offset to input pattern, defaulting to 0.0
|
|
|
xdisparity = param.Number(default= 0.0, bounds= (-1.0, 1.0), s...
Disparity in the horizontal direction.
|
|
|
ydisparity = param.Number(default= 0.0, bounds= (-1.0, 1.0), s...
Disparity in the vertical direction.
|
|
|
dotdensity = param.Number(default= 0.5, bounds= (0.0, None), s...
Number of dots per unit area; 0.5=50% coverage.
|
|
|
dotsize = param.Number(default= 0.1, bounds= (0.0, None), soft...
Edge length of each square dot.
|
|
|
random_seed = param.Integer(default= 500, bounds= (0, 1000), p...
Seed value for the random position of the dots.
|
|
Inherited from base.patterngenerator.PatternGenerator:
bounds,
mask,
mask_shape,
output_fn,
position,
xdensity,
ydensity
Inherited from param.parameterized.Parameterized:
name,
print_level
|