adishavit / party_parrot

OpenCV for the web!

Home Page:http://videocortex.io/party_parrot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I can't use a compiled file to draw a circle through OpenCV。

tangtao007 opened this issue · comments

hi I downloaded the code and wrote a simple code through Ubuntu to draw a circle, but I don't know why I can't display it successfully on the page plz help me thanks.

this is my code:
int EMSCRIPTEN_KEEPALIVE draw_cicle() {
Point center = Point(255,255);
int r = 100;
Mat picture(500,500,CV_8UC3,Scalar(255,255,255));
circle(picture,center,r,Scalar(0,0,0));
imshow("imag",picture);
}

@adishavit I'm really glad to see your reply. I have been waiting for your reply. If I want to draw a circle to display in the HTML, could you give me some hints? Thanks.

@adishavit Ok, I'm going to close this problem and I'm going to share if I solve it. I have another problem with compilation. I will open another one about dnn. Thank you