Giter Site home page Giter Site logo

imagemorphing's Introduction

ImageMorphing

A function for image morphing using OpenCV It requires OpenCV 2.3 or later.

Just copy the whole functions in Morph.cpp to your code or write header file for the function ImageMorphing().

In order to use ImageMorphing(), you need to prepare two input images and corresponding points on the both images.

//! Image Morphing /*! \param[in] src_img1 Input image 1 \param[in] src_points1 Points on the image 1 \param[in] src_img2 Input image 2 \param[in] src_points2 Points on the image 2, which must be corresponded to src_point1 \param[out] dst_img Morphed output image \param[out] dst_points Morphed points on the output image \param[in] shape_ratio blending ratio (0.0 - 1.0) of shape between image 1 and 2. If it is 0.0, output shape is same as src_img1. \param[in] color_ratio blending ratio (0.0 - 1.0) of color between image 1 and 2. If it is 0.0, output color is same as src_img1. If it is negative, it is set to shape_ratio. */ void ImageMorphing(const cv::Mat& src_img1, const std::vectorcv::Point2f& src_points1, const cv::Mat& src_img2, const std::vectorcv::Point2f& src_points2, cv::Mat& dst_img, std::vectorcv::Point2f& dst_points, float shape_ratio = 0.5, float color_ratio = -1)

imagemorphing's People

Contributors

takmin avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.