Ask Your Question

Sarala's profile - activity

2020-01-04 02:43:53 -0600 received badge  Famous Question (source)
2018-08-25 21:37:37 -0600 received badge  Notable Question (source)
2017-12-15 06:47:17 -0600 received badge  Popular Question (source)
2016-09-06 12:11:33 -0600 asked a question What does the ValueError : could not broadcast from input array(1) to input array(2) mean?
import numpy as np
import cv2
from matplotlib import pyplot as plt
while(1):
    img=cv2.imread('D:\IMG_0590_1.jpg')    
    ball = img[278:104, 330:158]
    img[181:355, 100:274] = ball

    cv2.imshow('img',img)

    if cv2.waitKey(10) & 0xFF == ord('q'):
            break
cv2.destroyAllWindows()

This is my code but it is giving the error mentioned in the question. What is the problem?

2016-06-14 05:43:25 -0600 commented question Is there any range of values for the exposure flag?

Hello, Due to some reasons i had to install anaconda python with opencv. And now it says "module has no attribute "cv2.CV_CAP_PROP_EXPOSURE". I want to change the exposure time of my camera what to do?

2016-06-10 09:52:19 -0600 commented question Is there any range of values for the exposure flag?

So, if i want my exposure time to be 15 sec, then how to do that?

2016-06-10 09:23:11 -0600 asked a question Is there any range of values for the exposure flag?

What is the unit of exposure value? seconds? . Also, is there any range of value?