Skip to content

Commit

Permalink
Added FaceDetection sample
Browse files Browse the repository at this point in the history
  • Loading branch information
shimat committed Apr 5, 2014
1 parent d21b486 commit dc00391
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions nuget/OpenCvSharp-x64.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>OpenCvSharp-x64</id>
<version>2.4.8.20140331</version>
<version>2.4.8.20140405</version>
<title>OpenCvSharp x64</title>
<authors>shimat</authors>
<licenseUrl>http://www.gnu.org/licenses/lgpl-3.0.en.html</licenseUrl>
<projectUrl>https://github.com/shimat/opencvsharp</projectUrl>
<iconUrl>http://opencvsharp.googlecode.com/files/Lenna.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>OpenCV wrapper for .NET Framework</description>
<releaseNotes>Added C++ highgui, features2d and calib3d methods.

BitmapConverter is moved to OpenCvSharp.Extensions.</releaseNotes>
<releaseNotes>Added C++ objdetect methods.</releaseNotes>
<copyright>Copyright 2008-2014</copyright>
<tags>Image Processing OpenCV Wrapper FFI</tags>
<frameworkAssemblies>
Expand Down
6 changes: 2 additions & 4 deletions nuget/OpenCvSharp-x86.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>OpenCvSharp-x86</id>
<version>2.4.8.20140331</version>
<version>2.4.8.20140405</version>
<title>OpenCvSharp x86</title>
<authors>shimat</authors>
<licenseUrl>http://www.gnu.org/licenses/lgpl-3.0.en.html</licenseUrl>
<projectUrl>https://github.com/shimat/opencvsharp</projectUrl>
<iconUrl>http://opencvsharp.googlecode.com/files/Lenna.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>OpenCV wrapper for .NET Framework</description>
<releaseNotes>Added C++ highgui, features2d and calib3d methods.

BitmapConverter is moved to OpenCvSharp.Extensions.</releaseNotes>
<releaseNotes>Added C++ objdetect methods.</releaseNotes>
<copyright>Copyright 2008-2014</copyright>
<tags>Image Processing OpenCV Wrapper FFI</tags>
<frameworkAssemblies>
Expand Down
2 changes: 1 addition & 1 deletion src/OpenCvSharpExtern/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ CVAPI(void) core_circle(cv::Mat *img, CvPoint center, int radius,

CVAPI(void) core_ellipse1(cv::Mat *img, CvPoint center, CvSize axes,
double angle, double startAngle, double endAngle,
CvScalar& color, int thickness, int lineType, int shift)
CvScalar color, int thickness, int lineType, int shift)
{
cv::ellipse(*img, center, axes, angle, startAngle, endAngle, color, thickness, lineType, shift);
}
Expand Down

0 comments on commit dc00391

Please sign in to comment.