Ask Your Question

buyi1128's profile - activity

2016-11-27 17:47:32 -0600 received badge  Enthusiast
2016-11-26 00:44:19 -0600 asked a question How to use the functions of convertTo, applyColorMap,imshow to get the result I want?

Here is the code in Matlab and the result picture I get using Matlab. For some purposes, I need to convert Matlab code into C++. I have done the conversion of data structure in c++, and then I need to deal with the part of showing picture. I decide to use Opencv library to replace the image procesing in Matlab. I have found that some functions like convertTo, applyColorMap and imshow in Opencv can replace the function imagesc in Matlab. So, I imitate the code online I searched. But it doesn't work.Maybe there are some grammer mistakes in my questions, sorry about that. Here is my code in C++

for (cutNumber = 1; cutNumber <= 9; cutNumber++)
{
    momentString = "dBT";
    DataSelect* BaseData_Select = select(theObj,cutNumber,momentString);
    int ncols = BaseData_Select->allLength / BaseData_Select->dataLength;
   //对应matlab auto.m第138行。下面是绘制dBZ的B显图
    Mat mydata(BaseData_Select->dataLength, ncols, CV_32F);
    for (int i = 0; i < BaseData_Select->dataLength; i++)
     {
        for (int j = 0; j < ncols; j++)
        {
            int temmmp = i*ncols+ j;
            mydata.at<float>(i, j) = BaseData_Select->data[i*ncols + j];
        }
     }
    double Amin = *min_element(mydata.begin<float>(), mydata.end<float>());  //Amin is -19
    double Amax = *max_element(mydata.begin<float>(), mydata.end<float>());  //Amax is 64
    cv::minMaxIdx(mydata, &Amin, &Amax);
    cv::Mat adjMap;
    float scale = 255 / (Amax - Amin);
    mydata.convertTo(adjMap, CV_8UC1, scale, -Amin*scale);
    cv::Mat resultMap;
    applyColorMap(adjMap, resultMap, cv::COLORMAP_AUTUMN);
    cv::imshow("Out", resultMap);
    cv::imwrite("output.bmp", resultMap);
}

Here is the code dealing with images in Matlab.

 figure(H_figure_ZDR);
            subplot(3,3,Cut_Number);
            imagesc(ZDR.Data);
            colormap(radarcolor_CJJ(40,1));   %产生40种颜色
            caxis([ -2 6]);
            ylim([Sphere_Distance_Cell-Sphere_Distance_Cell_Extend Sphere_Distance_Cell+Sphere_Distance_Cell_Extend])
            xlim([Sphere_Center_Ray-Sphere_Azimuth_Cell_Extend Sphere_Center_Ray+Sphere_Azimuth_Cell_Extend])
            xlabel('径向数目');
            ylabel('距离库');

The result picture running on Matlab which is I want to get using Opencv functions. image description

And my result picture in C++ is the following picture which is the wrong picture absolutely. I am a new learner for opencv, but time is limited. Could any one help me to solve this problem? image description

2016-11-25 00:21:48 -0600 received badge  Scholar (source)
2016-11-25 00:21:33 -0600 received badge  Editor (source)
2016-11-12 20:06:02 -0600 commented answer which functions should I use to convert matlab into opencv code?

Thank you for your answer. I also want to know which function could replace the function of imagesc. This function is important for conversion. And my parameter of imagesc is a [1933x362 double] matrix.

2016-11-12 08:19:04 -0600 asked a question which functions should I use to convert matlab into opencv code?

Hi, I need to convert matlab code into c++ code. I decide to use opencv to deal with the functionality of imagine processing. In my matlab code, I use the functions below to draw images.

           figure();
            subplot();
            imagesc();
            colormap()); 
            caxis();
            ylim
            xlim
            xlabel
            ylabel

Could anyone tell me which functions in opencv I should learn or use? thank you.

The first picture is what I get in Matlab, and I want get the similar result using opencv. All the data structures have been done. And the second picture is the code of using opencv to replace function imagesc, but I couldn't get result. I am a new learner to opencv, Could anyone help me solve this problem? Thank you. image description image description