Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6057763
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:31:28+00:00 2026-05-23T08:31:28+00:00

From the OpenCV documentation, it appears that copying a matrix is done using a

  • 0

From the OpenCV documentation, it appears that copying a matrix is done using a shallow copy, but when changing one of the copies, a copy is done.

The exact reference is:

Mat& Mat::operator = (const Mat& m)

Mat& Mat::operator = (const MatExpr_Base& expr)

Mat& operator = (const Scalar& s)

Matrix assignment operators

Parameters:

m – The assigned, right-hand-side
matrix. Matrix assignment is O(1)
operation, that is, no data is copied.
Instead, the data is shared and the
reference counter, if any, is
incremented. Before assigning new
data, the old data is dereferenced via
Mat::release
.

expr – The assigned matrix expression
object. As opposite to the first form
of assignment operation, the second
form can reuse already allocated
matrix if it has the right size and
type to fit the matrix expression
result. It is automatically handled by
the real function that the matrix
expressions is expanded to. For
example, C=A+B is expanded to
cv::add(A, B, C) , and add() will take
care of automatic C reallocation.

s – The scalar, assigned to each
matrix element. The matrix size or
type is not changed.

However, this appears not to work

Mat_<float> a(5,5),b(5,5);
a =1;
b = a;
a = 2;

now b == 2, intead of 1

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T08:31:29+00:00Added an answer on May 23, 2026 at 8:31 am

    It seems you misunderstood. “Before assigning new data, the old data is dereferenced via Mat::release” does not mean that when you write on a or b then a copy occurs. It means that when you type b=a, you lose the data that was in b.

    Long story short : copy on write is not supported.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I subtract one image from another using openCV? Ps.: I coudn't use
I want to copy some functions from OpenCV library to my embedded application. Rewriting
In my C/C++ program, I'm using OpenCV to capture images from my webcam. The
Im using Xcode and c++ I have copied the HoughCircles code from the OpenCV
I'm using OpenCV 2.3.2 library downloaded from OpenCV trunk. I want to use setOpenGlDrawCallback
I am trying to grab consecutive frames from android using opencv VideoCapture class. Actually
In openCv when we change the type of the matrix from CV_8U to CV_64F
I'm working on a C++ application that uses OpenCV/ffmpeg to capture video frames from
The Documentation of OpenCV mentions that the returned image (by cvRetrieveFrame) should not be
I am having issue with opencv's Sobel edge detector. From its documentation it seems

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.