peilin.cpp 1.69 KB
Newer Older
1 2 3 4
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/ximgproc.hpp>

Vitaly Tuzov's avatar
Vitaly Tuzov committed
5 6 7 8 9 10 11 12 13
#include <iostream>

static void help()
{
    std::cout << "\nThis program demonstrates Pei&Lin Normalization\n"
                 "Usage:\n"
                 "./peilin [image1_name -- default is ../data/peilin_plane.png] [image2_name -- default is ../data/peilin_shape.png]\n" << std::endl;
}

14 15
static inline cv::Mat operator& ( const cv::Mat& lhs, const cv::Matx23d& rhs )
{
Vitaly Tuzov's avatar
Vitaly Tuzov committed
16 17 18
    cv::Mat ret;
    cv::warpAffine ( lhs, ret, rhs, lhs.size(), cv::INTER_LINEAR );
    return ret;
19 20 21 22
}

static inline cv::Mat operator& ( const cv::Matx23d& lhs, const cv::Mat& rhs )
{
Vitaly Tuzov's avatar
Vitaly Tuzov committed
23 24 25
    cv::Mat ret;
    cv::warpAffine ( rhs, ret, lhs, rhs.size(), cv::INTER_LINEAR | cv::WARP_INVERSE_MAP );
    return ret;
26 27
}

Vitaly Tuzov's avatar
Vitaly Tuzov committed
28
int main(int argc, char** argv)
29
{
Vitaly Tuzov's avatar
Vitaly Tuzov committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    cv::CommandLineParser parser(argc, argv, "{help h | | }{ @input1 | ../data/peilin_plane.png | }{ @input2 | ../data/peilin_plane.png | }");
    if (parser.has("help"))
    {
        help();
        return 0;
    }
    std::string filename1 = parser.get<std::string>("@input1");
    std::string filename2 = parser.get<std::string>("@input2");

    cv::Mat I = cv::imread(filename1, 0);
    if (I.empty())
    {
        std::cout << "Couldn't open image " << filename1 << std::endl;
        return 0;
    }
    cv::Mat J = cv::imread(filename2, 0);
    if (J.empty())
    {
        std::cout << "Couldn't open image " << filename2 << std::endl;
        return 0;
    }
    cv::Mat N = I & cv::PeiLinNormalization ( I );
    cv::Mat D = cv::PeiLinNormalization ( J ) & I;
    cv::imshow ( "I", I );
    cv::imshow ( "N", N );
    cv::imshow ( "J", J );
    cv::imshow ( "D", D );
    cv::waitKey();
    return 0;
59
}