mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 05:29:54 +08:00
Merge pull request #5865 from Dikay900:fix_matcopy_shape
This commit is contained in:
commit
8c545c055d
@ -124,10 +124,8 @@ public:
|
||||
virtual void getImages(OutputArray _image1, OutputArray _image2) const
|
||||
{
|
||||
CV_Assert((!image1.empty()) && (!image2.empty()));
|
||||
_image1.create(image1.size(), image1.type());
|
||||
_image2.create(image2.size(), image2.type());
|
||||
_image1.getMat()=image1;
|
||||
_image2.getMat()=image2;
|
||||
image1.copyTo(_image1);
|
||||
image2.copyTo(_image2);
|
||||
}
|
||||
|
||||
virtual void setIterations(int _iterations) {CV_Assert(_iterations>0); iterations=_iterations;}
|
||||
|
Loading…
Reference in New Issue
Block a user