mirror of
https://github.com/peterbraden/node-opencv.git
synced 2025-12-08 19:45:55 +00:00
Added a moments method to the contour object and an example using resulting moments to display a cross at the "center of gravity" of a contour.
245 lines
6.7 KiB
C++
Executable File
245 lines
6.7 KiB
C++
Executable File
#include "Contours.h"
|
|
#include "OpenCV.h"
|
|
|
|
#include <iostream>
|
|
|
|
v8::Persistent<FunctionTemplate> Contour::constructor;
|
|
|
|
|
|
void
|
|
Contour::Init(Handle<Object> target) {
|
|
HandleScope scope;
|
|
|
|
//Class
|
|
v8::Local<v8::FunctionTemplate> m = v8::FunctionTemplate::New(New);
|
|
m->SetClassName(v8::String::NewSymbol("Contours"));
|
|
|
|
// Constructor
|
|
constructor = Persistent<FunctionTemplate>::New(m);
|
|
constructor->InstanceTemplate()->SetInternalFieldCount(1);
|
|
constructor->SetClassName(String::NewSymbol("Contours"));
|
|
|
|
// Prototype
|
|
//Local<ObjectTemplate> proto = constructor->PrototypeTemplate();
|
|
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "point", Point);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "size", Size);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "cornerCount", CornerCount);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "area", Area);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "arcLength", ArcLength);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "approxPolyDP", ApproxPolyDP);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "convexHull", ConvexHull);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "boundingRect", BoundingRect);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "minAreaRect", BoundingRect);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "isConvex", IsConvex);
|
|
NODE_SET_PROTOTYPE_METHOD(constructor, "moments", Moments);
|
|
target->Set(String::NewSymbol("Contours"), m->GetFunction());
|
|
};
|
|
|
|
|
|
Handle<Value>
|
|
Contour::New(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
if (args.This()->InternalFieldCount() == 0)
|
|
return v8::ThrowException(v8::Exception::TypeError(v8::String::New("Cannot instantiate without new")));
|
|
|
|
Contour *contours;
|
|
contours = new Contour;
|
|
|
|
contours->Wrap(args.Holder());
|
|
return scope.Close(args.Holder());
|
|
}
|
|
|
|
|
|
Contour::Contour(): ObjectWrap() {
|
|
}
|
|
|
|
|
|
Handle<Value>
|
|
Contour::Point(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
int pos = args[0]->NumberValue();
|
|
int index = args[1]->NumberValue();
|
|
|
|
cv::Point point = self->contours[pos][index];
|
|
|
|
Local<Object> data = Object::New();
|
|
data->Set(String::NewSymbol("x"), Number::New(point.x));
|
|
data->Set(String::NewSymbol("y"), Number::New(point.y));
|
|
|
|
return scope.Close(data);
|
|
}
|
|
|
|
// FIXME: this sould better be called "Length" as ``Contours`` is an Array like structure
|
|
// also, this would allow to use ``Size`` for the function returning the number of corners
|
|
// in the contour for better consistency with OpenCV.
|
|
Handle<Value>
|
|
Contour::Size(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
|
|
return scope.Close(Number::New(self->contours.size()));
|
|
}
|
|
|
|
Handle<Value>
|
|
Contour::CornerCount(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
int pos = args[0]->NumberValue();
|
|
|
|
return scope.Close(Number::New(self->contours[pos].size()));
|
|
}
|
|
|
|
Handle<Value>
|
|
Contour::Area(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
int pos = args[0]->NumberValue();
|
|
|
|
//return scope.Close(Number::New(contourArea(self->contours)));
|
|
return scope.Close(Number::New(contourArea(cv::Mat(self->contours[pos]))));
|
|
}
|
|
|
|
|
|
Handle<Value>
|
|
Contour::ArcLength(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
int pos = args[0]->NumberValue();
|
|
bool isClosed = args[1]->BooleanValue();
|
|
|
|
return scope.Close(Number::New(arcLength(cv::Mat(self->contours[pos]), isClosed)));
|
|
}
|
|
|
|
|
|
Handle<Value>
|
|
Contour::ApproxPolyDP(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
int pos = args[0]->NumberValue();
|
|
double epsilon = args[1]->NumberValue();
|
|
bool isClosed = args[2]->BooleanValue();
|
|
|
|
cv::Mat approxed;
|
|
approxPolyDP(cv::Mat(self->contours[pos]), approxed, epsilon, isClosed);
|
|
approxed.copyTo(self->contours[pos]);
|
|
|
|
return scope.Close(v8::Null());
|
|
}
|
|
|
|
|
|
Handle<Value>
|
|
Contour::ConvexHull(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
|
|
int pos = args[0]->NumberValue();
|
|
bool clockwise = args[1]->BooleanValue();
|
|
|
|
cv::Mat hull;
|
|
cv::convexHull(cv::Mat(self->contours[pos]), hull, clockwise);
|
|
hull.copyTo(self->contours[pos]);
|
|
|
|
return scope.Close(v8::Null());
|
|
}
|
|
|
|
|
|
Handle<Value>
|
|
Contour::BoundingRect(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
int pos = args[0]->NumberValue();
|
|
|
|
cv::Rect bounding = cv::boundingRect(cv::Mat(self->contours[pos]));
|
|
Local<Object> rect = Object::New();
|
|
|
|
rect->Set(String::NewSymbol("x"), Number::New(bounding.x));
|
|
rect->Set(String::NewSymbol("y"), Number::New(bounding.y));
|
|
rect->Set(String::NewSymbol("width"), Number::New(bounding.width));
|
|
rect->Set(String::NewSymbol("height"), Number::New(bounding.height));
|
|
|
|
return scope.Close(rect);
|
|
}
|
|
|
|
|
|
Handle<Value>
|
|
Contour::MinAreaRect(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
int pos = args[0]->NumberValue();
|
|
|
|
cv::RotatedRect minimum = cv::minAreaRect(cv::Mat(self->contours[pos]));
|
|
|
|
Local<Object> rect = Object::New();
|
|
rect->Set(String::NewSymbol("angle"), Number::New(minimum.angle));
|
|
|
|
Local<Object> size = Object::New();
|
|
size->Set(String::NewSymbol("height"), Number::New(minimum.size.height));
|
|
size->Set(String::NewSymbol("width"), Number::New(minimum.size.width));
|
|
rect->Set(String::NewSymbol("size"), size);
|
|
|
|
Local<Object> center = Object::New();
|
|
center->Set(String::NewSymbol("x"), Number::New(minimum.center.x));
|
|
center->Set(String::NewSymbol("y"), Number::New(minimum.center.y));
|
|
|
|
v8::Local<v8::Array> points = v8::Array::New(4);
|
|
|
|
cv::Point2f rect_points[4];
|
|
minimum.points(rect_points);
|
|
|
|
for (unsigned int i=0; i<4; i++){
|
|
Local<Object> point = Object::New();
|
|
point->Set(String::NewSymbol("x"), Number::New(rect_points[i].x));
|
|
point->Set(String::NewSymbol("y"), Number::New(rect_points[i].y));
|
|
points->Set(i, point);
|
|
}
|
|
|
|
rect->Set(String::NewSymbol("points"), points);
|
|
|
|
return scope.Close(rect);
|
|
}
|
|
|
|
|
|
Handle<Value>
|
|
Contour::IsConvex(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
int pos = args[0]->NumberValue();
|
|
|
|
return scope.Close(Boolean::New(isContourConvex(cv::Mat(self->contours[pos]))));
|
|
}
|
|
|
|
Handle<Value>
|
|
Contour::Moments(const Arguments &args) {
|
|
HandleScope scope;
|
|
|
|
Contour *self = ObjectWrap::Unwrap<Contour>(args.This());
|
|
int pos = args[0]->NumberValue();
|
|
|
|
/// Get the moments
|
|
cv::Moments mu = moments( self->contours[pos], false );
|
|
|
|
Local<Object> res = Object::New();
|
|
|
|
res->Set(String::NewSymbol("m00"), Number::New(mu.m00));
|
|
res->Set(String::NewSymbol("m10"), Number::New(mu.m10));
|
|
res->Set(String::NewSymbol("m01"), Number::New(mu.m01));
|
|
res->Set(String::NewSymbol("m11"), Number::New(mu.m11));
|
|
|
|
return scope.Close(res);
|
|
}
|
|
|