Closed GoogleCodeExporter closed 9 years ago
Does this line of the README.txt file answer your question?
CvMat randomR = CvMat.create(3, 3);
And please post your questions on the mailing list next time, thank you. This
is not an issue with JavaCV.
Original comment by samuel.a...@gmail.com
on 20 Oct 2011 at 7:07
Sorry Sir...Cant find the mailing list....Actually I have created the cvmat
object with the cvmat.create(1,4).......But the following code shows error....
bit=BitmapFactory.decodeFile(selectedImagePath);
srcwidth=bit.getWidth();
matsrc.put(0,1,srcwidth,0);
Original comment by vishakh...@gmail.com
on 20 Oct 2011 at 8:44
[deleted comment]
[deleted comment]
That call to CvMat.put() is ambiguous. If you are trying to put four double
values to fill your CvMat object, use double literals, e.g.:
matsrc.put(0.0,1.0,srcwidth,0.0);
You can find the address to the mailing list in the README.txt file, thank you.
Original comment by samuel.a...@gmail.com
on 21 Oct 2011 at 6:29
Original issue reported on code.google.com by
vishakh...@gmail.com
on 19 Oct 2011 at 9:26