How to save detected edges in dwg/dxf formats [closed]
After edges has been detected using Open CV-Visual Studio is it possible to save in dwg/dxf format?
After edges has been detected using Open CV-Visual Studio is it possible to save in dwg/dxf format?
Asked: 2016-01-28 00:54:30 -0600
Seen: 899 times
Last updated: Jan 28 '16
Weird result while finding angle
OpenCV Tutorial 1 - Add OpenCV on API 8
Understand the memory managment while using imread() on allocated Mat
High-level implementation of Canny
Source code to Closing Holes Leaf Image
Real-Time Video Zoom & Sharpening
OpenCV4Android: Extracting a MatOfPoint from a Canny image for input into convexHull
none of those (proprietary) formats are supported from opencv
So How can I make a vectorization for detected edges in Open CV?
you probably did not even realize yet, that Canny or such alone won't give you any vectors.
you need findContours to get those.
I think there is some misunderstanding between us, what I need exactly is how to vectorizing generated contours? if possible
again, findContours will give you a list of points for each contour found, just try the tutorial