private Dictionary <string, RbnnResult> ComputeRbnn(string filepath)
        {
            filepath = new RbnnDriver().ExecuteTxt(filepath, GConfig.rbnn_augmentation_result_prefix, GConfig.AUGMENTATION_RBNN_R_SPAN);

            // retrieve results
            RbnnResultParser parser = new RbnnResultParser();
            Dictionary <string, RbnnResult> results = parser.ParseResults(filepath);

            File.Delete(filepath);

            return(results);
        }
 private void ExecuteRbnnFromPcdFile()
 {
     string rbnn_result_filepath = new RbnnDriver().Execute(pcd_path, GConfig.rbnn_core_result_prefix, radius_values);
 }