BoundedAperture¶
- class dnois.optics.rt.BoundedAperture(*args, **kwargs)¶
A base class for bounded apertures, but the bounds may be infinite here.
For various sampling methods, the points outside the aperture will be discarded. So the number of points they returned may be less than the requested number.
- abstract evaluate(x: Tensor, y: Tensor) BoolTensor ¶
Returns a boolean tensor representing whether each point \((x,y)\) is inside the aperture. To jointly represent 2D coordinates,
x
andy
must be broadcastable.- Parameters:
x (Tensor) – x coordinates of the points.
y (Tensor) – y coordinates of the points.
- Returns:
See description above. The shape of returned tensor is the broadcast result of
x
andy
.- Return type:
Tensor
- forward(ray: BatchedRay) BatchedRay ¶
Similar to
evaluate()
, but operates on rays.- Parameters:
ray (BatchedRay) – Incident rays.
- Returns:
New rays among which those outside the aperture are marked as invalid.
- Return type:
- classmethod from_dict(d: dict)¶
Constructs an instance of
cls
from adict
.- Parameters:
d (dict) – A
dict
typically returned byto_dict()
.- Returns:
An instance of
cls
.
- classmethod load_json(file, **kwargs) Self ¶
Constructs an instance of
cls
through loading JSON from a file, converting it to adict
and then callingfrom_dict()
.- Parameters:
file (str or
pathlib.Path
or file-like object) – The JSON file to load. Either its path (str
orpathlib.Path
) or a file-like object.kwargs – Keyword arguments passed to
json.load()
.
- Returns:
An instance of
cls
.
- max_height() Tensor ¶
- Returns:
Height of a maximum rectangle centered at origin to cover the aperture.
- Return type:
0D tensor
- abstract max_radius() Tensor ¶
- Returns:
Radius of a max circle centered at origin to cover the aperture.
- Return type:
0D tensor
- abstract max_width() Tensor ¶
- Returns:
Width of a maximum rectangle centered at origin to cover the aperture.
- Return type:
0D tensor
- pass_ray(ray: BatchedRay) BoolTensor ¶
Similar to
evaluate()
, but operates on rays.- Parameters:
ray (BatchedRay) – Incident rays.
- Returns:
A mask tensor indicating whether corresponding rays can pass the aperture.
- Return type:
torch.BoolTensor
- register_latent_parameter(name: str, param: Parameter | None, transform: Transform)¶
Similar to
register_parameter()
, but takes as input the latent value rather than nominal value. In this way, the inverse transformation need not be provided since the initial latent value is known.If
name
corresponds to a vanilla parameter (i.e. not transformed parameter) it will be converted to a transformed one.- Parameters:
name (str) – Name of the parameter.
param (Parameter) – Latent
torch.nn.Parameter
instance to be registered.transform (Transform) – Transformation object.
- register_parameter(name: str, param: Parameter | None, transform: Transform = None) None ¶
Similar to
torch.nn.Module.register_parameter()
, but allows you to register a transformed parameter as long astransform
is given.If
name
corresponds to a vanilla parameter (i.e. not transformed parameter) buttransform
is given, it will be converted to a transformed one.- Parameters:
name (str) – Name of the parameter.
param (Parameter) – Nominal
torch.nn.Parameter
instance to be registered.transform (Transform) – Transformation object.
- remove_transform(name: str)¶
Remove transformation for parameter
name
.- Parameters:
name (str) – Name of the parameter.
- sample(mode: str, *args, **kwargs) tuple[Tensor, Tensor] ¶
Samples points on this aperture, i.e. baseline plane of associated surface. Specific distribution depends on
mode
.- Parameters:
mode (str) – Sampling mode. Calling object of this method should possess a
sample_{mode}
method.- Returns:
Two 1D tensors of representing x and y coordinates of the points.
- Return type:
tuple[Tensor, Tensor]
- sample_center() tuple[Tensor, Tensor] ¶
Return the central point of the aperture.
- Returns:
Two
[0.]
tensors.- Return type:
tuple[Tensor, Tensor]
- sample_diameter(n: int = 64, theta: float = 0.0) tuple[Tensor, Tensor] ¶
Samples points on diameter line segments of this aperture. Polar angle of the line is given by
theta
.- Parameters:
n (int) – Number of points.
theta (float) – Polar angle of the line.
- Returns:
Two 1D tensors representing x and y coordinates of the points.
- Return type:
tuple[Tensor, Tensor]
- sample_random(n: int) tuple[Tensor, Tensor] ¶
Returns at most
n
points randomly sampled on this aperture.- Parameters:
n (int) – Maximum number of points.
- Returns:
Two 1D tensors of length less than
n
, representing x and y coordinates of the points.- Return type:
tuple[Tensor, Tensor]
- sample_rect(n: int | tuple[int, int]) tuple[Tensor, Tensor] ¶
Samples points on this aperture in an evenly spaced rectangular grid, where number of points in vertical and horizontal directions \((H, W)\) are given by
n
. Note that the points outside the aperture are dropped so total number of returned points is less than \(HW\).- Parameters:
n (int | tuple[int, int]) – A pair of int representing \((H, W)\).
- Returns:
Two 1D tensors of representing x and y coordinates of the points.
- Return type:
tuple[Tensor, Tensor]
- sample_unipolar(n_radius: int = 6, n_angle: int = 6) tuple[Tensor, Tensor] ¶
Samples points on this aperture in a unipolar manner. Specifically, the aperture is divided into \(N_r\) rings with equal widths and points are sampled on the outer edge of each ring. The first ring contains \(N_\theta\) points, the second contains \(2N_\theta\) points … and so on, plus a point at center. Thus, there are totally \(N_\theta N_r(N_r+1)/2+1\) points at most.
- Parameters:
n_radius (int) – Number of rings \(N_r\). Default: 6.
n_angle (int) – Level of points increase per ring \(N_\theta\). Default: 6.
- Returns:
Two 1D tensors of representing x and y coordinates of the points.
- Return type:
tuple[Tensor, Tensor]
- sampler(mode: str, *args, **kwargs) Callable[[], tuple[Tensor, Tensor]] ¶
Returns a callable object that can be used to sample points on this aperture. When it is called, it will call
sample()
with given arguments and return its return value. Seesample()
for more details.- Returns:
A callable object that can be used to sample points on this aperture.
- Return type:
Callable
- save_json(file, **kwargs)¶
Save
self
into a JSON filefile
.- Parameters:
file – The JSON file to save. Either its path (
str
orpathlib.Path
) or a file-like object.kwargs – Keyword arguments passed to
json.dump()
.
- set_transform(name: str, transform: Transform)¶
Set transformation for parameter
name
.If
name
corresponds to a vanilla parameter (i.e. not transformed parameter) it will be converted to a transformed one.- Parameters:
name (str) – Name of the parameter.
transform (Transform) – Transformation object.
- to_dict(keep_tensor=True) dict[str, Any] ¶
Converts
self
into adict
which recursively contains only primitive Python objects.- Return type:
dict
- to_json(**kwargs) str ¶
Converts
self
into a JSON string.- Parameters:
kwargs – Keyword arguments passed to
json.dumps()
.- Return type:
str
- property device: device¶
Device of this object.
- Type:
torch.device
- property dtype: dtype¶
Data type of this object.
- Type:
torch.dtype
- property nominal_values: dict[str, Tensor]¶
A
dict
whose keys are names of all parameters of this module and values are their values. The values are nominal ones for transformed parameters.- Type:
dict[str, Tensor]
- property transformed_parameters: dict[str, tuple[Parameter, Transform]]¶
A
dict
whose keys are names of all transformed parameters of this module. The value corresponding to each key is a tuple containing:The latent value, a
torch.nn.Parameter
instance;Corresponding transformation object.
- Type:
dict[str, tuple[Parameter, Transform]]