Re: [Opencvlibrary-svn] SF.net SVN: opencvlibrary:[1965] trunk/opencv/tests

View: New views
4 Messages — Rating Filter:   Alert me  

Parent Message unknown Re: [Opencvlibrary-svn] SF.net SVN: opencvlibrary:[1965] trunk/opencv/tests

by Mark Asbach :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Vadim,

> The only major (yet small) thing that I'm going to do is update the  
> version number. The plan was the following, if I remember correctly:
>
> name the current version as 1.1.1
> name the beta (to be released in a week or two) as 1.1.2
> name the gold 2.0 as 2.0.0
>
> so, I will change cvver.h and the root CMakeLists.txt to 1.1.1. I  
> will appreciate if you update the version in autotools scripts, if  
> it has not been done yet. I looked at configure.in and realized that  
> I completely forgot that strange libtool version numbering scheme :)
Hm. The autotools version already carries the version number 1.2.1. I  
update it from time to time whenever major API incompatibilities pop-
up to make sure everyone using the SVN version gets clean libtool  
linking results with the autotools version of OpenCV.

If it poses no problem, we could move change version numbers (CMake  
and autotools) to

        name the beta (to be released in a week or two) as 1.3.0
        name the gold 2.0 as 2.0.0

The libtool version number is unaffected by this. It should be updated  
to

        name the beta (to be released in a week or two) as 4:0:0
        name the gold 2.0 as
                4:1:0 in case no interfaces have been changed, added or removed  
since beta
                5:0:1 in case interfaces have been added but no interface has been  
changed or removed since beta
                5:0:0 in case interfaces have been changed or removed since beta

Best, Mark

--
Mark Asbach
Institut für Nachrichtentechnik, RWTH Aachen University
http://www.ient.rwth-aachen.de/cms/team/m_asbach



------------------------------------------------------------------------------

_______________________________________________
Opencvlibrary-devel mailing list
Opencvlibrary-devel@...
https://lists.sourceforge.net/lists/listinfo/opencvlibrary-devel

smime.p7s (5K) Download Attachment

Re: [Opencvlibrary-svn] SF.net SVN: opencvlibrary:[1965] trunk/opencv/tests

by neub :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hy,

I've created a patch with simple modification in the cvaux/vs/ part of OpenCV. This patch has been posted like two month ago. And didn't have any feedback.

https://sourceforge.net/tracker/?func=detail&aid=2797925&group_id=22870&atid=376679

I know that these modifications are not really important, but it could help me a lot in my code and improve a little bit the OpenCV library.

Moreover, I have notice that the vidsurv part of the library doesn't use any "const" argument which is sometime bothering when you want to use it in your code.

Regards,

--
Benoit RAT
www.neub.co.nr


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Opencvlibrary-devel mailing list
Opencvlibrary-devel@...
https://lists.sourceforge.net/lists/listinfo/opencvlibrary-devel

Re: [Opencvlibrary-svn] SF.net SVN: opencvlibrary:[1965] trunk/opencv/tests

by Vadim Pisarevsky :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,

Thank you very much for your work and sorry for delay. Your patch has been committed to OpenCV SVN trunk.

Regards,
Vadim

On Tue, Jul 28, 2009 at 3:23 PM, Benoit <benpaka.spam@...> wrote:
Hy,

I've created a patch with simple modification in the cvaux/vs/ part of OpenCV. This patch has been posted like two month ago. And didn't have any feedback.

https://sourceforge.net/tracker/?func=detail&aid=2797925&group_id=22870&atid=376679

I know that these modifications are not really important, but it could help me a lot in my code and improve a little bit the OpenCV library.

Moreover, I have notice that the vidsurv part of the library doesn't use any "const" argument which is sometime bothering when you want to use it in your code.

Regards,

--
Benoit RAT
www.neub.co.nr


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Opencvlibrary-devel mailing list
Opencvlibrary-devel@...
https://lists.sourceforge.net/lists/listinfo/opencvlibrary-devel



------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Opencvlibrary-devel mailing list
Opencvlibrary-devel@...
https://lists.sourceforge.net/lists/listinfo/opencvlibrary-devel

Re: [Opencvlibrary-svn] SF.net SVN: opencvlibrary:[1965] trunk/opencv/tests

by neub :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Vadim,

I'm still using a lot version number for code compatibility.
I just wanted to say that the SVN version of OpenCV after a relase should be increase of at least one subminor version.

1.0.0 = version 1 final
1.0.1 = version svn (between 1.0 final and 2.0 beta1)
1.1.0 = version 2.0 beta 1 (also called 1.1 pre A)
1.1.1 = version SVN between 2.0 beta1 and 2.0 beta2
1.2.0 = version 2.0 beta 2
1.2.1 = should be the actual version number in the trunk of the SVN.
2.0.0 = The gold one! I hope it will come soon ;)

Best, Benoit.

--
Benoit RAT
www.neub.co.nr


On Mon, Jul 27, 2009 at 5:27 PM, Mark Asbach <asbach@...> wrote:
Hi Vadim,

The only major (yet small) thing that I'm going to do is update the version number. The plan was the following, if I remember correctly:

name the current version as 1.1.1
name the beta (to be released in a week or two) as 1.1.2
name the gold 2.0 as 2.0.0

so, I will change cvver.h and the root CMakeLists.txt to 1.1.1. I will appreciate if you update the version in autotools scripts, if it has not been done yet. I looked at configure.in and realized that I completely forgot that strange libtool version numbering scheme :)

Hm. The autotools version already carries the version number 1.2.1. I update it from time to time whenever major API incompatibilities pop-up to make sure everyone using the SVN version gets clean libtool linking results with the autotools version of OpenCV.

If it poses no problem, we could move change version numbers (CMake and autotools) to

       name the beta (to be released in a week or two) as 1.3.0
       name the gold 2.0 as 2.0.0

The libtool version number is unaffected by this. It should be updated to

       name the beta (to be released in a week or two) as 4:0:0
       name the gold 2.0 as
               4:1:0 in case no interfaces have been changed, added or removed since beta
               5:0:1 in case interfaces have been added but no interface has been changed or removed since beta
               5:0:0 in case interfaces have been changed or removed since beta

Best, Mark

--
Mark Asbach
Institut für Nachrichtentechnik, RWTH Aachen University
http://www.ient.rwth-aachen.de/cms/team/m_asbach


------------------------------------------------------------------------------

_______________________________________________
Opencvlibrary-devel mailing list
Opencvlibrary-devel@...
https://lists.sourceforge.net/lists/listinfo/opencvlibrary-devel



------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
Opencvlibrary-devel mailing list
Opencvlibrary-devel@...
https://lists.sourceforge.net/lists/listinfo/opencvlibrary-devel