-
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
2010-01-01 02:20:22 UTC by sf-robot
-
please correct one error in the
first code example on page "OpenCV 2.0 C++ Reference » Introduction":
please change the line
addWeighted(planes[0], constrast_gain, noise, 1, -128 + brightness_gain, planes[0]);
into
addWeighted(planes[0], contrast_gain, noise, 1, -128 + brightness_gain, planes[0]);
that's all! thanks a lot! Your work on version 2.0 is great!
2009-12-30 11:33:45 UTC by nobody
-
In the code example on doc page "OpenCV 2.0 C++ Reference » Introduction » Fast Element Access"
please change the line
individual element access operations
into
// individual element access operations.
2009-12-30 11:26:02 UTC by nobody
-
hi all,
I am trying to use opencv 1.0.0 on ARM architecture. I have a development board with ARM 9 processor. I tried to cross compile opencv with the toolchain i have. I was not successful with it.
Can some one please tell me of how to do the cross compilation for ARM 9 board.
Thank you all in advance
sravan.
2009-12-28 06:41:20 UTC by skyrulz
-
In cxdrawing.cpp(Ln 150) LineIterator constructor function:
I think when connecivity = 8, plusDelta should be (dx + dx) + (dy + dy),
while when connecivity = 4, plusDelta should be dx + dx;
And,when connectivity = 4 ,why initial value(err) is 0, I think it should be the same as connectiy = 0
if( connectivity == 8 )
{
assert( dx >= 0 && dy >= 0 );
err = dx -...
2009-12-26 04:17:32 UTC by wesky1984
-
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
2009-12-26 02:20:50 UTC by sf-robot
-
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
2009-12-26 02:20:49 UTC by sf-robot
-
The ordering of the features was incorrect. Please try the latest version from SVN, the bug is fixed there.
2009-12-25 16:35:02 UTC by vp153
-
Thanks! Your patch is applied in SVN r2487.
2009-12-25 16:33:08 UTC by vp153
-
On a fresh install of Snow Leopard, download xcode, cmake, follow the instructions on http://opencv.willowgarage.com/wiki/Mac_OS_X_OpenCV_Port, then
Python 2.6.1 (r261:67515, Jul 7 2009, 23:51:51)
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
import cv
>>> import cv
Traceback (most recent call last):
File...
2009-12-25 14:48:10 UTC by nobody