// 所属国認識
        static 所属国 recognizeNationality(CvMat image)
        {
            // 2値画像の輝点数を基に判別する
            // ces: 25
            // geb: 52
            // hor: 99
            // http://twitpic.com/az9oy2
            int count = image.CountNonZero();
            if ( count > 80 )
                return 所属国.ホルデイン;

            if ( count > 45 )
                return 所属国.ゲブランド;

            if ( count > 15 )
                return 所属国.カセドリア;

            return 所属国.不明;
        }