| Safe Haskell | Safe-Inferred |
|---|---|
| Language | GHC2021 |
RiskWeaver.DSL.BDD
Documentation
data BoundingBoxGT Source #
Constructors
| BoundingBoxGT | |
Instances
Constructors
| Background | |
| Pedestrian | |
| Rider | |
| Car | |
| Truck | |
| Bus | |
| Train | |
| Motorcycle | |
| Bicycle |
Instances
| Generic Class Source # | |
| Show Class Source # | |
| NFData Class Source # | |
Defined in RiskWeaver.DSL.BDD | |
| Eq Class Source # | |
| Ord Class Source # | |
| type Rep Class Source # | |
Defined in RiskWeaver.DSL.BDD type Rep Class = D1 ('MetaData "Class" "RiskWeaver.DSL.BDD" "risk-weaver-0.1.0.2-Lj68RG1URWb3Ifr21OvKbb" 'False) (((C1 ('MetaCons "Background" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Pedestrian" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Rider" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Car" 'PrefixI 'False) (U1 :: Type -> Type))) :+: ((C1 ('MetaCons "Truck" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Bus" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Train" 'PrefixI 'False) (U1 :: Type -> Type) :+: (C1 ('MetaCons "Motorcycle" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Bicycle" 'PrefixI 'False) (U1 :: Type -> Type))))) | |
data SubErrorType Source #
Constructors
| Boundary | |
| LowScore | |
| MissClass | |
| Occulusion |
Instances
type BoundingBoxDT = Detection BoundingBoxGT Source #
type BddRisk = Risk BoundingBoxGT Source #
cocoCategoryToClass :: CocoMap -> CategoryId -> Class Source #
cocoResultToVector :: CocoMap -> ImageId -> (Vector BoundingBoxGT, Vector BoundingBoxDT) Source #
data BddContext Source #
Constructors
| BddContext | |
Instances
| Show BddContext Source # | |
Defined in RiskWeaver.DSL.BDD Methods showsPrec :: Int -> BddContext -> ShowS # show :: BddContext -> String # showList :: [BddContext] -> ShowS # | |
| Eq BddContext Source # | |
Defined in RiskWeaver.DSL.BDD | |
| World BddContext BoundingBoxGT Source # | |
Defined in RiskWeaver.DSL.BDD Methods envs :: BddContext -> [Env BoundingBoxGT] Source # toEnv :: BddContext -> ImgIdx BoundingBoxGT -> Env BoundingBoxGT Source # toImageIds :: BddContext -> [ImgIdx BoundingBoxGT] Source # mAP :: BddContext -> Double Source # ap :: BddContext -> Map (ClassG BoundingBoxGT) Double Source # mF1 :: BddContext -> Double Source # f1 :: BddContext -> Map (ClassG BoundingBoxGT) Double Source # risk :: BddContext -> [Risk BoundingBoxGT] Source # confusionMatrixRecall :: BddContext -> Map (ClassG BoundingBoxGT, ClassD BoundingBoxGT) [Risk BoundingBoxGT] Source # confusionMatrixPrecision :: BddContext -> Map (ClassD BoundingBoxGT, ClassG BoundingBoxGT) [Risk BoundingBoxGT] Source # | |