这是indexloc提供的服务,不要输入任何密码
Skip to content

window adaptive pca #13

@github-actions

Description

@github-actions

Adaptive, // TODO: window adaptive pca

    },
};

use bevy_burn_dino::{
    platform::camera::{
        receive_image,
        self,
    },
    process_frame,
};


#[derive(
    Debug,
    Default,
    Clone,
    PartialEq,
    Serialize,
    Deserialize,
    Reflect,
    ValueEnum,
)]
pub enum PcaType {
    Adaptive,  // TODO: window adaptive pca
    #[default]
    Face,
    Person,
}

impl PcaType {
    #[allow(dead_code)]
    const fn pca_weights_mpk(&self) -> &'static str {
        match self {
            PcaType::Adaptive => "adaptive_pca.mpk",
            PcaType::Face => "face_pca.mpk",
            PcaType::Person => "person_pca.mpk",
        }
    }
}


#[derive(

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions