Files
BlenderSharp/BlendFile/DNA/MovieTrackingSettings.cs
2025-03-04 18:48:04 +01:00

129 lines
5.9 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(979, "MovieTrackingSettings", 64)]
public class MovieTrackingSettings {
[DNAFieldAttribute(2, "short", 0, "default_motion_model", "short", false, 0)]
public short default_motion_model;
[DNAFieldAttribute(2, "short", 1, "default_algorithm_flag", "short", false, 2)]
public short default_algorithm_flag;
[DNAFieldAttribute(4, "float", 2, "default_minimum_correlation", "float", false, 4)]
public float default_minimum_correlation;
[DNAFieldAttribute(2, "short", 3, "default_pattern_size", "short", false, 8)]
public short default_pattern_size;
[DNAFieldAttribute(2, "short", 4, "default_search_size", "short", false, 10)]
public short default_search_size;
[DNAFieldAttribute(2, "short", 5, "default_frames_limit", "short", false, 12)]
public short default_frames_limit;
[DNAFieldAttribute(2, "short", 6, "default_margin", "short", false, 14)]
public short default_margin;
[DNAFieldAttribute(2, "short", 7, "default_pattern_match", "short", false, 16)]
public short default_pattern_match;
[DNAFieldAttribute(2, "short", 8, "default_flag", "short", false, 18)]
public short default_flag;
[DNAFieldAttribute(4, "float", 9, "default_weight", "float", false, 20)]
public float default_weight;
[DNAFieldAttribute(2, "short", 10, "motion_flag", "short", false, 24)]
public short motion_flag;
[DNAFieldAttribute(2, "short", 11, "speed", "short", false, 26)]
public short speed;
[DNAFieldAttribute(4, "int", 12, "keyframe1", "int", false, 28)]
public int keyframe1;
[DNAFieldAttribute(4, "int", 13, "keyframe2", "int", false, 32)]
public int keyframe2;
[DNAFieldAttribute(4, "int", 14, "reconstruction_flag", "int", false, 36)]
public int reconstruction_flag;
[DNAFieldAttribute(4, "int", 15, "refine_camera_intrinsics", "int", false, 40)]
public int refine_camera_intrinsics;
[DNAFieldAttribute(4, "float", 16, "dist", "float", false, 44)]
public float dist;
[DNAFieldAttribute(4, "int", 17, "clean_frames", "int", false, 48)]
public int clean_frames;
[DNAFieldAttribute(4, "int", 18, "clean_action", "int", false, 52)]
public int clean_action;
[DNAFieldAttribute(4, "float", 19, "clean_error", "float", false, 56)]
public float clean_error;
[DNAFieldAttribute(4, "float", 20, "object_distance", "float", false, 60)]
public float object_distance;
public MovieTrackingSettings() {
this.default_motion_model = default;
this.default_algorithm_flag = default;
this.default_minimum_correlation = default;
this.default_pattern_size = default;
this.default_search_size = default;
this.default_frames_limit = default;
this.default_margin = default;
this.default_pattern_match = default;
this.default_flag = default;
this.default_weight = default;
this.motion_flag = default;
this.speed = default;
this.keyframe1 = default;
this.keyframe2 = default;
this.reconstruction_flag = default;
this.refine_camera_intrinsics = default;
this.dist = default;
this.clean_frames = default;
this.clean_action = default;
this.clean_error = default;
this.object_distance = default;
}
public MovieTrackingSettings(
short default_motion_model,
short default_algorithm_flag,
float default_minimum_correlation,
short default_pattern_size,
short default_search_size,
short default_frames_limit,
short default_margin,
short default_pattern_match,
short default_flag,
float default_weight,
short motion_flag,
short speed,
int keyframe1,
int keyframe2,
int reconstruction_flag,
int refine_camera_intrinsics,
float dist,
int clean_frames,
int clean_action,
float clean_error,
float object_distance) {
this.default_motion_model = default_motion_model;
this.default_algorithm_flag = default_algorithm_flag;
this.default_minimum_correlation = default_minimum_correlation;
this.default_pattern_size = default_pattern_size;
this.default_search_size = default_search_size;
this.default_frames_limit = default_frames_limit;
this.default_margin = default_margin;
this.default_pattern_match = default_pattern_match;
this.default_flag = default_flag;
this.default_weight = default_weight;
this.motion_flag = motion_flag;
this.speed = speed;
this.keyframe1 = keyframe1;
this.keyframe2 = keyframe2;
this.reconstruction_flag = reconstruction_flag;
this.refine_camera_intrinsics = refine_camera_intrinsics;
this.dist = dist;
this.clean_frames = clean_frames;
this.clean_action = clean_action;
this.clean_error = clean_error;
this.object_distance = object_distance;
}
}
}