#[repr(C)]pub struct aom_partition_features_before_none {
pub f: [f32; 17],
pub f_part2: [f32; 25],
}Expand description
Features pass to the external model to make partition decisions. Specifically, features collected before NONE partition. Features “f” are used to determine: partition_none_allowed, partition_horz_allowed, partition_vert_allowed, do_rectangular_split, do_square_split Features “f_part2” are used to determine: prune_horz, prune_vert.
Fields§
§f: [f32; 17]features to determine whether skip partition none and do split directly
f_part2: [f32; 25]features to determine whether to prune rectangular partition
Trait Implementations§
source§impl Clone for aom_partition_features_before_none
impl Clone for aom_partition_features_before_none
source§fn clone(&self) -> aom_partition_features_before_none
fn clone(&self) -> aom_partition_features_before_none
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more