insert Iplimage in Iplimage (C)
I have a problem , how do I get a small Iplimage and putting the same over a greater area Iplimage ? In C
Iplimage small
Iplimage big
Iplimage result
I have a problem , how do I get a small Iplimage and putting the same over a greater area Iplimage ? In C
Iplimage small
Iplimage big
Iplimage result
Asked: 2015-06-30 20:03:36 -0600
Seen: 281 times
Last updated: Jun 30 '15
IMREAD_GRAYSCALE error in facerec_demo.py
image processing software that can identify object in an image and isolate it from the background
How to display fullscreen in Python on Linux? (setWindowProperty doesn't work)
numpy.array setting an array element with a sequence
need help with load and display image with opencv
404 Not Found from bug reporting site
Using a video (videocapture) with Qt and opencv on windows 7 don`t open.
the old c-api is no more maintained, and covers only ~20% of opencv's current functionality, you must use c++, and cv::Mat nowadays, not IplImages.
in c++, it would be as easy as:
smallImg.copyTo(bigImg(Rect(x,y,smallImg.cols,smallImg.rows)));