Class NeRFResult<T>
Result from DreamFusion generation.
public class NeRFResult<T>
Type Parameters
TThe numeric type.
- Inheritance
-
NeRFResult<T>
- Inherited Members
Properties
Network
Reference to the trained NeRF network.
public NeRFNetwork<T>? Network { get; set; }
Property Value
- NeRFNetwork<T>
Parameters
The optimized NeRF parameters.
public Vector<T> Parameters { get; set; }
Property Value
- Vector<T>
Prompt
The text prompt used for generation.
public string Prompt { get; set; }