Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

Commit

Permalink
Preparations for release 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarsouza committed Aug 15, 2015
1 parent 2a2b63a commit f82ac58
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Setup/CreateRelease.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@


:: Compile sources
cmd /c "Compile.cmd"

cd ..
cmd /c "Build.cmd"
cd Setup

:: Build compressed archive
cd Archiver
Expand Down
2 changes: 1 addition & 1 deletion Sources/Accord.Core/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

[assembly: AssemblyVersion("3.0.2")]
[assembly: AssemblyInformationalVersion("3.0.2")]
[assembly: AssemblyFileVersion("3.0.2.5282")]
[assembly: AssemblyFileVersion("3.0.2.5339")]
6 changes: 4 additions & 2 deletions Sources/Accord.Math/Matrix/Matrix.Conversions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,10 @@ public static T To<T>(this object value)
/// <param name="array">The vector or array to be converted.</param>
///
public static TOutput To<TOutput>(this Array array)
where TOutput : class, ICloneable, IList, ICollection, IEnumerable,
IStructuralComparable, IStructuralEquatable
where TOutput : class, ICloneable, IList, ICollection, IEnumerable
#if !NET35
, IStructuralComparable, IStructuralEquatable
#endif
{
var typeInput = array.GetType();
var typeOutput = typeof(TOutput);
Expand Down
2 changes: 1 addition & 1 deletion Unit Tests/Accord.Tests.Imaging/BagOfVisualWordsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void BagOfVisualWordsConstructorTest3()
public void GetFeatureVectorTest()
{
Accord.Math.Tools.SetupGenerator(0);
Bitmap image = images[0];
Bitmap image = (Bitmap)images[0].Clone();

// The Bag-of-Visual-Words model converts arbitrary-size images
// into fixed-length feature vectors. In this example, we will
Expand Down

0 comments on commit f82ac58

Please sign in to comment.