cnn_sphereview.cpp 9.47 KB
Newer Older
Wangyida's avatar
Wangyida committed
1 2 3 4
#include "precomp.hpp"
using namespace cv;
using namespace std;

Wangyida's avatar
Wangyida committed
5 6 7 8
namespace cv
{
namespace cnn_3dobj
{
9
    icoSphere::icoSphere(float radius_in, int depth_in)
10 11 12 13 14 15 16 17 18 19 20 21
    {
        X = 0.5f;
        Z = 0.5f;
        float vdata[12][3] = { { -X, 0.0f, Z }, { X, 0.0f, Z },
          { -X, 0.0f, -Z }, { X, 0.0f, -Z }, { 0.0f, Z, X }, { 0.0f, Z, -X },
          { 0.0f, -Z, X }, { 0.0f, -Z, -X }, { Z, X, 0.0f }, { -Z, X, 0.0f },
          { Z, -X, 0.0f }, { -Z, -X, 0.0f } };
        int tindices[20][3] = { { 0, 4, 1 }, { 0, 9, 4 }, { 9, 5, 4 },
          { 4, 5, 8 }, { 4, 8, 1 }, { 8, 10, 1 }, { 8, 3, 10 }, { 5, 3, 8 },
          { 5, 2, 3 }, { 2, 7, 3 }, { 7, 10, 3 }, { 7, 6, 10 }, { 7, 11, 6 },
          { 11, 0, 6 }, { 0, 1, 6 }, { 6, 1, 10 }, { 9, 0, 11 },
          { 9, 11, 2 }, { 9, 2, 5 }, { 7, 2, 11 } };
22 23 24
        diff = 0.00000001;
        X *= (int)radius_in;
        Z *= (int)radius_in;
25

26 27 28 29 30 31 32
        // Iterate over points
        for (int i = 0; i < 20; ++i)
        {
            subdivide(vdata[tindices[i][0]], vdata[tindices[i][1]],
              vdata[tindices[i][2]], depth_in);
        }
        CameraPos_temp.push_back(CameraPos[0]);
33
        for (unsigned int j = 1; j < CameraPos.size(); ++j)
34
        {
35
            for (unsigned int k = 0; k < j; ++k)
36
            {
37 38 39 40 41
                float dist_x, dist_y, dist_z;
                dist_x = (CameraPos.at(k).x-CameraPos.at(j).x) * (CameraPos.at(k).x-CameraPos.at(j).x);
                dist_y = (CameraPos.at(k).y-CameraPos.at(j).y) * (CameraPos.at(k).y-CameraPos.at(j).y);
                dist_z = (CameraPos.at(k).z-CameraPos.at(j).z) * (CameraPos.at(k).z-CameraPos.at(j).z);
                if (dist_x < diff && dist_y < diff && dist_z < diff)
42
                    break;
43
                else if (k == j-1)
44 45 46 47 48 49
                    CameraPos_temp.push_back(CameraPos[j]);
            }
        }
        CameraPos = CameraPos_temp;
        cout << "View points in total: " << CameraPos.size() << endl;
        cout << "The coordinate of view point: " << endl;
50
        for(unsigned int i = 0; i < CameraPos.size(); i++)
51 52 53 54
        {
            cout << CameraPos.at(i).x <<' '<< CameraPos.at(i).y << ' ' << CameraPos.at(i).z << endl;
        }
    };
55
    void icoSphere::norm(float v[])
56
    {
57 58 59 60 61 62 63 64 65 66 67
        float len = 0;
        for (int i = 0; i < 3; ++i)
        {
            len += v[i] * v[i];
        }
        len = sqrt(len);
        for (int i = 0; i < 3; ++i)
        {
            v[i] /= ((float)len);
        }
    };
68

69
    void icoSphere::add(float v[])
70
    {
71 72 73 74 75 76 77 78 79
        Point3f temp_Campos;
        std::vector<float>* temp = new std::vector<float>;
        for (int k = 0; k < 3; ++k)
        {
            temp->push_back(v[k]);
        }
        temp_Campos.x = temp->at(0);temp_Campos.y = temp->at(1);temp_Campos.z = temp->at(2);
        CameraPos.push_back(temp_Campos);
    };
80

81
    void icoSphere::subdivide(float v1[], float v2[], float v3[], int depth)
82
    {
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
        norm(v1);
        norm(v2);
        norm(v3);
        if (depth == 0)
        {
            add(v1);
            add(v2);
            add(v3);
            return;
        }
        float* v12 = new float[3];
        float* v23 = new float[3];
        float* v31 = new float[3];
        for (int i = 0; i < 3; ++i)
        {
            v12[i] = (v1[i] + v2[i]) / 2;
            v23[i] = (v2[i] + v3[i]) / 2;
            v31[i] = (v3[i] + v1[i]) / 2;
        }
        norm(v12);
        norm(v23);
        norm(v31);
        subdivide(v1, v12, v31, depth - 1);
        subdivide(v2, v23, v12, depth - 1);
        subdivide(v3, v31, v23, depth - 1);
        subdivide(v12, v23, v31, depth - 1);
    };
110

111
    int icoSphere::swapEndian(int val)
112
    {
113 114 115
        val = ((val << 8) & 0xFF00FF00) | ((val >> 8) & 0xFF00FF);
        return (val << 16) | (val >> 16);
    };
116

117
    cv::Point3d icoSphere::getCenter(cv::Mat cloud)
118
    {
119 120 121 122 123 124 125 126 127 128 129 130 131
        Point3f* data = cloud.ptr<cv::Point3f>();
        Point3d dataout;
        for(int i = 0; i < cloud.cols; ++i)
        {
            dataout.x += data[i].x;
            dataout.y += data[i].y;
            dataout.z += data[i].z;
        }
        dataout.x = dataout.x/cloud.cols;
        dataout.y = dataout.y/cloud.cols;
        dataout.z = dataout.z/cloud.cols;
        return dataout;
    };
132

133
    float icoSphere::getRadius(cv::Mat cloud, cv::Point3d center)
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
    {
        float radiusCam = 0;
        Point3f* data = cloud.ptr<cv::Point3f>();
        Point3d datatemp;
        for(int i = 0; i < cloud.cols; ++i)
        {
            datatemp.x = data[i].x - (float)center.x;
            datatemp.y = data[i].y - (float)center.y;
            datatemp.z = data[i].z - (float)center.z;
            float Radius = sqrt(pow(datatemp.x,2)+pow(datatemp.y,2)+pow(datatemp.z,2));
            if(Radius > radiusCam)
            {
                radiusCam = Radius;
            }
        }
        return radiusCam;
    };
151

152
    void icoSphere::createHeader(int num_item, int rows, int cols, const char* headerPath)
153
    {
154 155 156 157 158 159 160 161 162 163 164 165 166 167
        char* a0 = (char*)malloc(1024);
        strcpy(a0, headerPath);
        char a1[] = "image";
        char a2[] = "label";
        char* headerPathimg = (char*)malloc(1024);
        strcpy(headerPathimg, a0);
        strcat(headerPathimg, a1);
        char* headerPathlab = (char*)malloc(1024);
        strcpy(headerPathlab, a0);
        strcat(headerPathlab, a2);
        std::ofstream headerImg(headerPathimg, ios::out|ios::binary);
        std::ofstream headerLabel(headerPathlab, ios::out|ios::binary);
        int headerimg[4] = {2051,num_item,rows,cols};
        for (int i=0; i<4; i++)
168
            headerimg[i] = swapEndian(headerimg[i]);
169 170
        int headerlabel[2] = {2050,num_item};
        for (int i=0; i<2; i++)
171
            headerlabel[i] = swapEndian(headerlabel[i]);
172 173 174 175 176 177
        headerImg.write(reinterpret_cast<const char*>(headerimg), sizeof(int)*4);
        headerImg.close();
        headerLabel.write(reinterpret_cast<const char*>(headerlabel), sizeof(int)*2);
        headerLabel.close();
    };

178
    void icoSphere::writeBinaryfile(String filenameImg, const char* binaryPath, const char* headerPath, int num_item, int label_class, int x, int y, int z, int isrgb)
179
    {
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
        cv::Mat ImgforBin = cv::imread(filenameImg, isrgb);
        char* A0 = (char*)malloc(1024);
        strcpy(A0, binaryPath);
        char A1[] = "image";
        char A2[] = "label";
        char* binPathimg = (char*)malloc(1024);
        strcpy(binPathimg, A0);
        strcat(binPathimg, A1);
        char* binPathlab = (char*)malloc(1024);
        strcpy(binPathlab, A0);
        strcat(binPathlab, A2);
        fstream img_file, lab_file;
        img_file.open(binPathimg,ios::in);
        lab_file.open(binPathlab,ios::in);
        if(!img_file)
        {
            cout << "Creating the training data at: " << binaryPath << ". " << endl;
            char* a0 = (char*)malloc(1024);
            strcpy(a0, headerPath);
            char a1[] = "image";
            char a2[] = "label";
            char* headerPathimg = (char*)malloc(1024);
            strcpy(headerPathimg, a0);
            strcat(headerPathimg,a1);
            char* headerPathlab = (char*)malloc(1024);
            strcpy(headerPathlab, a0);
            strcat(headerPathlab,a2);
            createHeader(num_item, 64, 64, binaryPath);
            img_file.open(binPathimg,ios::out|ios::binary|ios::app);
            lab_file.open(binPathlab,ios::out|ios::binary|ios::app);
210
            if (isrgb == 0)
211
            {
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
                for (int r = 0; r < ImgforBin.rows; r++)
                {
                    img_file.write(reinterpret_cast<const char*>(ImgforBin.ptr(r)), ImgforBin.cols*ImgforBin.elemSize());
                }
            }
            else
            {
                std::vector<cv::Mat> Img3forBin;
                cv::split(ImgforBin,Img3forBin);
                for (unsigned int i = 0; i < Img3forBin.size(); i++)
                {
                    for (int r = 0; r < Img3forBin[i].rows; r++)
                    {
                        img_file.write(reinterpret_cast<const char*>(Img3forBin[i].ptr(r)), Img3forBin[i].cols*Img3forBin[i].elemSize());
                    }
                }
228 229 230 231 232 233 234 235 236 237 238
            }
            signed char templab = (signed char)label_class;
            lab_file << templab << (signed char)x << (signed char)y << (signed char)z;
        }
        else
        {
            img_file.close();
            lab_file.close();
            img_file.open(binPathimg,ios::out|ios::binary|ios::app);
            lab_file.open(binPathlab,ios::out|ios::binary|ios::app);
            cout <<"Concatenating the training data at: " << binaryPath << ". " << endl;
239 240 241 242 243 244 245 246
            if (isrgb == 0)
            {
                for (int r = 0; r < ImgforBin.rows; r++)
                {
                    img_file.write(reinterpret_cast<const char*>(ImgforBin.ptr(r)), ImgforBin.cols*ImgforBin.elemSize());
                }
            }
            else
247
            {
248 249 250 251 252 253 254 255 256
                std::vector<cv::Mat> Img3forBin;
                cv::split(ImgforBin,Img3forBin);
                for (unsigned int i = 0; i < Img3forBin.size(); i++)
                {
                    for (int r = 0; r < Img3forBin[i].rows; r++)
                    {
                        img_file.write(reinterpret_cast<const char*>(Img3forBin[i].ptr(r)), Img3forBin[i].cols*Img3forBin[i].elemSize());
                    }
                }
257 258 259 260 261 262 263
            }
            signed char templab = (signed char)label_class;
            lab_file << templab << (signed char)x << (signed char)y << (signed char)z;
        }
        img_file.close();
        lab_file.close();
    };
264 265
} /* namespace cnn_3dobj */
} /* namespace cv */