Exemplo n.º 1
0
        public static void TestAggregateWithParameterValidateObjectCountingResult()
        {
            //string guid = "58a85bc8-4fb9-4672-8719-38cf62352fbc"; // KITTI all 7481
            //string guid = "3b6b1625-a8ef-47dd-9fb6-27e0248f8283"; // first 100 img
            //string guid = "8c9990e5-52bf-4cc7-b39d-a47bed7c0e68"; // KITTI all with dontcare boxes
            string guid = "94979929-4315-4c81-9782-55c8955222a8"; // CARPK NTU 20161029


            //ObjectCountingValidation.ValidateSatyamKITTIObjectCountingAggregationResultByGUID(guid);
            ObjectCountingValidation.AggregateWithParameterAndValidateObjectCountingResultByGUID(guid);

        }
Exemplo n.º 2
0
        public static void TestParamSweep()
        {
            //string guid = "58a85bc8-4fb9-4672-8719-38cf62352fbc"; // KITTI all 7481
            //string guid = "3b6b1625-a8ef-47dd-9fb6-27e0248f8283"; // first 100 img
            //string guid = "8c9990e5-52bf-4cc7-b39d-a47bed7c0e68"; // KITTI all with dontcare boxes
            string guid = "94979929-4315-4c81-9782-55c8955222a8"; // CARPK NTU 20161029


            // paramsweep
            for (int min = 2; min <= 10; min++)
            {
                for (double majority = 0.5; majority <= 0.9; majority += 0.1)
                {
                    for (double DeviationFraction = 0.05; DeviationFraction < 0.25; DeviationFraction += 0.05)
                    {
                        ObjectCountingValidation.AggregateWithParameterAndValidateObjectCountingResultByGUID(guid, false, null,
                        25, 1, 0.3, min, 20, 1.5, DeviationFraction, majority);
                    }

                }
            }
        }